Skip to content

Commit

Permalink
Changed backup period default from 1 hour to 10 minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
SparrowBrain committed Feb 12, 2021
1 parent 54829e4 commit 33871c9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion BackMeUp/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
ResourceDictionaryLocation.None,
ResourceDictionaryLocation.SourceAssembly
)]
[assembly: AssemblyVersion("0.3.6")]
[assembly: AssemblyVersion("0.3.7")]
2 changes: 1 addition & 1 deletion BackMeUp/config.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"BackupDirectory" : "C:\\Ubisoft_savegame_Backups",
"BackupPeriod" : "01:00:00"
"BackupPeriod" : "00:10:00"
}
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,16 @@ Don't forget to run `startup-remove.bat` before deleting/moving the tool folder
### `config.json` ###
Main configuration file.
* **BackupDirectory** - place to copy save files to. If configured directory does not exist, it will be created. Take notice of double backslash (`\\`) when specifying a path. *Default is "C:\Ubisoft_savegame_Backups"*.
* **BackupPeriod** - how often backups should be created. The format is `HH:mm:ss` as in `hours:minutes:seconds`. *Default is 1 hour*.
* **BackupPeriod** - how often backups should be created. The format is `HH:mm:ss` as in `hours:minutes:seconds`. *Default is 10 minutes*.

Example:
```
{
"BackupDirectory" : "E:\\My_Ubisoft_Backups",
"BackupPeriod" : "00:10:00"
"BackupPeriod" : "01:00:00"
}
```
This configuration will create backups in `E:\My_Ubisoft_Backups` and run every 10 minutes.
This configuration will create backups in `E:\My_Ubisoft_Backups` and run every hour.

### `games.json` ###
A list that maps Ubisoft game id to a given game. The format is:
Expand Down

0 comments on commit 33871c9

Please sign in to comment.