Updated dependencies. Changed version. Fixed small file manager archive format issue

This commit is contained in:
2025-09-06 18:42:28 +02:00
parent 51aeb67ad6
commit 8573fffaa2
6 changed files with 21 additions and 29 deletions

View File

@@ -97,21 +97,11 @@ public class SystemFsAccess : IFsAccess, ICombineAccess, IArchiveAccess, IDownlo
);
}
public ArchiveFormat[] ArchiveFormats { get; } = new[]
{
new ArchiveFormat()
{
DisplayName = "Zip Archive",
Extensions = ["zip"],
Identifier = "zip"
},
new ArchiveFormat()
{
DisplayName = "Tar.gz Archive",
Extensions = ["tar.gz"],
Identifier = "tar.gz"
}
};
public ArchiveFormat[] ArchiveFormats { get; } =
[
new("zip", ["zip"], "Zip Archive"),
new("tar.gz", ["tar.gz"], "Tar.gz Archive")
];
public async Task Archive(
string destination,