Skip to content

Commit

Permalink
Patch release [v1.0.1.0]
Browse files Browse the repository at this point in the history
- Fixed bug with auto update not working
  • Loading branch information
o7q committed Jul 27, 2023
1 parent a06257d commit d2c9084
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
~ v1.0.1.0
- Fixed bug with auto update not working
2 changes: 1 addition & 1 deletion src/Scribe/Scribe/Includes/Data/Storage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
{
public static class Constants
{
public const string VERSION = "v1.0.0";
public const string VERSION = "v1.0.1";
}
}
3 changes: 3 additions & 0 deletions src/Scribe/Scribe/MainMenu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,9 @@ private void ProcessMedia()
log += $"\nTOTAL TIME: {actualDays:D2}:{actualHours:D2}:{actualMinutes:D2}:{actualSeconds:D2}";

File.WriteAllText("Scribe\\latest.log", log);

if (config.PROCESS_AUTO_UPDATE)
UpdateMediaRefreshTimer(60);
}

private void UpdateSearch()
Expand Down

0 comments on commit d2c9084

Please sign in to comment.