Skip to content
This repository has been archived by the owner on Sep 24, 2024. It is now read-only.
/ ModManager Public archive

Commit

Permalink
version 4.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
MatuxGG committed Nov 6, 2021
1 parent 9d18fc8 commit 9f712dd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion MakeExecutableFile.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "ModManager"
#define MyAppVersion "4.1.5"
#define MyAppVersion "4.1.6"
#define MyAppPublisher "Matux"
#define MyAppURL "https://matux.fr"
#define MyAppExeName "ModManager4.exe"
Expand Down
2 changes: 1 addition & 1 deletion ModManager4/Class/Refresher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public async void backgroundWorker_DoWork(object sender, DoWorkEventArgs e)

while (true)
{
System.Threading.Thread.Sleep(5 * 60 * 1000); // Each 5 minute
System.Threading.Thread.Sleep(60 * 60 * 1000); // Each 60 minute

while (this.modManager.actionLock == true)
{
Expand Down
2 changes: 1 addition & 1 deletion ModManager4/Class/Updater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public async void backgroundWorker_DoWork(object sender, DoWorkEventArgs e)

while (this.latestVersion <= this.modManager.version)
{
System.Threading.Thread.Sleep(60 * 1000); // Each minute
System.Threading.Thread.Sleep(60 * 60 * 1000); // Each 60 minute
await this.GetGithubVersion();
}

Expand Down
4 changes: 2 additions & 2 deletions ModManager4/ModManager4.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<TargetFramework>net5.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>modmanager.ico</ApplicationIcon>
<AssemblyVersion>4.1.5.0</AssemblyVersion>
<FileVersion>4.1.5.0</FileVersion>
<AssemblyVersion>4.1.6.0</AssemblyVersion>
<FileVersion>4.1.6.0</FileVersion>
<Authors>Matux</Authors>
<PackageProjectUrl>https://github.com/MatuxGG/ModManager</PackageProjectUrl>
<PackageIcon>modmanager.ico</PackageIcon>
Expand Down

0 comments on commit 9f712dd

Please sign in to comment.