Skip to content

Commit

Permalink
1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Pyrix25633 committed Mar 1, 2023
1 parent ef79124 commit 13f9996
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.RECIPEPREFIX=>
VERSION=1.6.0
VERSION=1.6.1

default:
> clear
Expand Down
4 changes: 2 additions & 2 deletions Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public class Program {
private static EnumerationOptions enumOptions = new EnumerationOptions();
static async Task Main(string[] args) {
// Version
string version = "1.6.0";
string version = "1.6.1";
// Lists and dictionaries
string[] sourceList = new string[0], destinationList = new string[0], extensionList = new string[0];
Dictionary<string, DirectoryEntry> sourceInfoDictionary = new Dictionary<string, DirectoryEntry>();
Expand Down Expand Up @@ -330,7 +330,7 @@ static async Task Main(string[] args) {
Logger.Info("Creating compressed backup: " + backupFileName);
backupFileName = backupFolder + Path.DirectorySeparatorChar + backupFileName;
try {
ZipFile.CreateFromDirectory(arguments.destination, backupFileName);
ZipFile.CreateFromDirectory(arguments.source, backupFileName);
Logger.Success("Created compressed backup (" + Logger.HumanReadableSize((UInt64)new FileInfo(backupFileName).Length) + ")");
}
catch(Exception e) {
Expand Down
7 changes: 6 additions & 1 deletion github-updater.backup-utility-cs.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
{
"latest": "1.6.0",
"latest": "1.6.1",
"keep": [],
"releases": [
{
"tag": "1.6.1",
"linux": "backup-utility-1.6.1-linux-x64.tar.gz",
"win": "backup-utility-1.6.1-win-x64.zip"
},
{
"tag": "1.6.0",
"linux": "backup-utility-1.6.0-linux-x64.tar.gz",
Expand Down
2 changes: 1 addition & 1 deletion transfer/local/options.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
VERSION=1.6.0
VERSION=1.6.1
DEBUG=0
RELEASE=1

0 comments on commit 13f9996

Please sign in to comment.