Skip to content
This repository has been archived by the owner on Feb 2, 2023. It is now read-only.

Commit

Permalink
v1.10.6
Browse files Browse the repository at this point in the history
  • Loading branch information
aleab committed Mar 31, 2018
1 parent c66be3e commit 1fa5392
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 17 deletions.
4 changes: 2 additions & 2 deletions InstallationScript/Install.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ Section "Toastify (required)"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Toastify" "UninstallString" '"$INSTDIR\uninstall.exe"'
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Toastify" "DisplayIcon" "$INSTDIR\Toastify.exe,0"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Toastify" "Publisher" "Jesper Palm, Oren Nachman, Alessandro Attard Barbini"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Toastify" "Version" "1.10.5"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Toastify" "DisplayVersion" "1.10.5"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Toastify" "Version" "1.10.6"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Toastify" "DisplayVersion" "1.10.6"
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Toastify" "NoModify" 1
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Toastify" "NoRepair" 1
WriteUninstaller "uninstall.exe"
Expand Down
6 changes: 3 additions & 3 deletions Toastify/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.10.5.*")]
[assembly: AssemblyVersion("1.10.6.*")]
#pragma warning disable CS7035 // The specified version string does not conform to the recommended format - major.minor.build.revision
#if DEBUG
[assembly: AssemblyFileVersion("1.10.5 [DEBUG BUILD]")]
[assembly: AssemblyFileVersion("1.10.6 [DEBUG BUILD]")]
#elif TEST_RELEASE
[assembly: AssemblyFileVersion("1.10.5 [TEST BUILD]")]
[assembly: AssemblyFileVersion("1.10.6 [TEST BUILD]")]
#endif
#pragma warning restore CS7035 // The specified version string does not conform to the recommended format - major.minor.build.revision
8 changes: 0 additions & 8 deletions Toastify/src/Services/AutoUpdater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,6 @@ public static AutoUpdater Instance
protected AutoUpdater()
{
VersionChecker.Instance.CheckVersionComplete += this.VersionChecker_CheckVersionComplete;

this.VersionChecker_CheckVersionComplete(this, new CheckVersionCompleteEventArgs
{
GitHubReleaseDownloadUrl = "https://github.com/aleab/toastify/releases/download/v1.10.5/ToastifyInstaller.exe",
Version = "v1.10.5",
GitHubReleaseUrl = "https://github.com/aleab/toastify/releases/tag/v1.10.5",
IsNew = true
});
}

private static bool ShouldDownload(UpdateDeliveryMode updateDeliveryMode)
Expand Down
2 changes: 1 addition & 1 deletion Toastify/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.10.5
1.10.6
6 changes: 3 additions & 3 deletions ToastifyAPI/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.10.5.*")]
[assembly: AssemblyVersion("1.10.6.*")]
#pragma warning disable CS7035 // The specified version string does not conform to the recommended format - major.minor.build.revision
#if DEBUG
[assembly: AssemblyFileVersion("1.10.5 [DEBUG BUILD]")]
[assembly: AssemblyFileVersion("1.10.6 [DEBUG BUILD]")]
#elif TEST_RELEASE
[assembly: AssemblyFileVersion("1.10.5 [TEST BUILD]")]
[assembly: AssemblyFileVersion("1.10.6 [TEST BUILD]")]
#endif
#pragma warning restore CS7035 // The specified version string does not conform to the recommended format - major.minor.build.revision

0 comments on commit 1fa5392

Please sign in to comment.