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

Commit 3e5bf62

Browse files
committed
v1.11.0
1 parent 094d7ca commit 3e5bf62

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

InstallationScript/Install.nsi

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
!define DESCRIPTION "Toastify adds global hotkeys and toast notifications to Spotify"
44
!define VERSIONMAJOR 1
55
!define VERSIONMINOR 10
6-
!define VERSIONBUILD 14
6+
!define VERSIONBUILD 0
77
!define HELPURL "https://github.com/aleab/toastify/issues"
88
!define UPDATEURL "https://github.com/aleab/toastify/releases"
99
!define ABOUTURL "https://aleab.github.io/toastify/"
@@ -42,7 +42,7 @@ VIAddVersionKey "ProductVersion" "${VERSIONMAJOR}.${VERSIONMINOR}.${VERSIONBUILD
4242
VIAddVersionKey "FileVersion" "${VERSIONMAJOR}.${VERSIONMINOR}.${VERSIONBUILD}"
4343
VIAddVersionKey "ProductName" "${APPNAME}"
4444
VIAddVersionKey "FileDescription" "${APPNAME} Installer"
45-
VIAddVersionKey "LegalCopyright" "© 2018 Alessandro Attard Barbini"
45+
VIAddVersionKey "LegalCopyright" "© 2018 Alessandro Attard Barbini"
4646

4747

4848
;--------------------------------

Toastify/Toastify.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="MSBuild.Sdk.Extras/1.6.55" ToolsVersion="15.0">
33
<!-- Project Info -->
44
<PropertyGroup>
@@ -22,7 +22,7 @@
2222
<TimeOfDayTotalSeconds>$([MSBuild]::Divide($([System.DateTime]::get_Now().get_TimeOfDay().get_TotalSeconds()), 2).ToString('F0'))</TimeOfDayTotalSeconds>
2323
<Revision>$(TimeOfDayTotalSeconds)</Revision>
2424
<Revision Condition="'$(Configuration)' != 'Windows (Release)'">0</Revision>
25-
<Version>1.10.14</Version>
25+
<Version>1.11.0</Version>
2626
<AssemblyVersion>$(Version)</AssemblyVersion>
2727
<FileVersion>$(Version).$(Revision)</FileVersion>
2828
<AssemblyName>Toastify</AssemblyName>

Toastify/version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.10.14
1+
1.11.0

ToastifyAPI/Properties/AssemblyInfo.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("1.10.14.*")]
34+
[assembly: AssemblyVersion("1.11.0.*")]
3535
#pragma warning disable CS7035 // The specified version string does not conform to the recommended format - major.minor.build.revision
3636
#if DEBUG
37-
[assembly: AssemblyFileVersion("1.10.14 [DEBUG BUILD]")]
37+
[assembly: AssemblyFileVersion("1.11.0 [DEBUG BUILD]")]
3838
#elif TEST_RELEASE
39-
[assembly: AssemblyFileVersion("1.10.14 [TEST BUILD]")]
39+
[assembly: AssemblyFileVersion("1.11.0 [TEST BUILD]")]
4040
#endif
4141
#pragma warning restore CS7035 // The specified version string does not conform to the recommended format - major.minor.build.revision

0 commit comments

Comments
 (0)