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

Commit 33e19e1

Browse files
committed
v1.11.0*
1 parent 3e5bf62 commit 33e19e1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

InstallationScript/Install.nsi

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
!define PUBLISHER "Jesper Palm, Oren Nachman, Alessandro Attard Barbini"
33
!define DESCRIPTION "Toastify adds global hotkeys and toast notifications to Spotify"
44
!define VERSIONMAJOR 1
5-
!define VERSIONMINOR 10
5+
!define VERSIONMINOR 11
66
!define VERSIONBUILD 0
77
!define HELPURL "https://github.com/aleab/toastify/issues"
88
!define UPDATEURL "https://github.com/aleab/toastify/releases"
@@ -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" "(C) 2018 Alessandro Attard Barbini"
4646

4747

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

update-version.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ Write-Host
1414
Write-Host "Update: InstallationScript\Install.nsi"
1515
$FilePath = [System.IO.Path]::GetFullPath((Join-Path (pwd) "InstallationScript\Install.nsi"))
1616
$Lines = (Get-Content 'InstallationScript\Install.nsi') -replace '(VERSIONMAJOR) .*', "`$1 $vMajor"
17-
$Lines = (Get-Content 'InstallationScript\Install.nsi') -replace '(VERSIONMINOR) .*', "`$1 $vMinor"
18-
$Lines = (Get-Content 'InstallationScript\Install.nsi') -replace '(VERSIONBUILD) .*', "`$1 $vBuild"
17+
$Lines = ($Lines) -replace '(VERSIONMINOR) .*', "`$1 $vMinor"
18+
$Lines = ($Lines) -replace '(VERSIONBUILD) .*', "`$1 $vBuild"
1919
[System.IO.File]::WriteAllLines($FilePath, $Lines)
2020

2121
# Toastify\version

0 commit comments

Comments
 (0)