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

Commit

Permalink
v1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aleab committed Feb 14, 2019
1 parent 094d7ca commit 3e5bf62
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions InstallationScript/Install.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
!define DESCRIPTION "Toastify adds global hotkeys and toast notifications to Spotify"
!define VERSIONMAJOR 1
!define VERSIONMINOR 10

This comment has been minimized.

Copy link
@dracco1993

dracco1993 Feb 14, 2019

Seems like this should have been bumped up to 11 as well, yes? 🙂

This comment has been minimized.

Copy link
@aleab

aleab Feb 14, 2019

Author Owner

Fuuuuuuuuck!! Thank you! 😩

This comment has been minimized.

Copy link
@dracco1993

dracco1993 Feb 14, 2019

No problem! Thanks for all of your work!

!define VERSIONBUILD 14
!define VERSIONBUILD 0
!define HELPURL "https://github.com/aleab/toastify/issues"
!define UPDATEURL "https://github.com/aleab/toastify/releases"
!define ABOUTURL "https://aleab.github.io/toastify/"
Expand Down Expand Up @@ -42,7 +42,7 @@ VIAddVersionKey "ProductVersion" "${VERSIONMAJOR}.${VERSIONMINOR}.${VERSIONBUILD
VIAddVersionKey "FileVersion" "${VERSIONMAJOR}.${VERSIONMINOR}.${VERSIONBUILD}"
VIAddVersionKey "ProductName" "${APPNAME}"
VIAddVersionKey "FileDescription" "${APPNAME} Installer"
VIAddVersionKey "LegalCopyright" "© 2018 Alessandro Attard Barbini"
VIAddVersionKey "LegalCopyright" "© 2018 Alessandro Attard Barbini"


;--------------------------------
Expand Down
4 changes: 2 additions & 2 deletions Toastify/Toastify.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="MSBuild.Sdk.Extras/1.6.55" ToolsVersion="15.0">
<!-- Project Info -->
<PropertyGroup>
Expand All @@ -22,7 +22,7 @@
<TimeOfDayTotalSeconds>$([MSBuild]::Divide($([System.DateTime]::get_Now().get_TimeOfDay().get_TotalSeconds()), 2).ToString('F0'))</TimeOfDayTotalSeconds>
<Revision>$(TimeOfDayTotalSeconds)</Revision>
<Revision Condition="'$(Configuration)' != 'Windows (Release)'">0</Revision>
<Version>1.10.14</Version>
<Version>1.11.0</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version).$(Revision)</FileVersion>
<AssemblyName>Toastify</AssemblyName>
Expand Down
2 changes: 1 addition & 1 deletion Toastify/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.10.14
1.11.0
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.14.*")]
[assembly: AssemblyVersion("1.11.0.*")]
#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.14 [DEBUG BUILD]")]
[assembly: AssemblyFileVersion("1.11.0 [DEBUG BUILD]")]
#elif TEST_RELEASE
[assembly: AssemblyFileVersion("1.10.14 [TEST BUILD]")]
[assembly: AssemblyFileVersion("1.11.0 [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 3e5bf62

Please sign in to comment.