This repository was archived by the owner on Feb 2, 2023. It is now read-only.
File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2
2
!define PUBLISHER " Jesper Palm, Oren Nachman, Alessandro Attard Barbini"
3
3
!define DESCRIPTION " Toastify adds global hotkeys and toast notifications to Spotify"
4
4
!define VERSIONMAJOR 1
5
- !define VERSIONMINOR 10
5
+ !define VERSIONMINOR 11
6
6
!define VERSIONBUILD 0
7
7
!define HELPURL " https://github.com/aleab/toastify/issues"
8
8
!define UPDATEURL " https://github.com/aleab/toastify/releases"
@@ -42,7 +42,7 @@ VIAddVersionKey "ProductVersion" "${VERSIONMAJOR}.${VERSIONMINOR}.${VERSIONBUILD
42
42
VIAddVersionKey " FileVersion" " ${VERSIONMAJOR}.${VERSIONMINOR}.${VERSIONBUILD}"
43
43
VIAddVersionKey " ProductName" " ${APPNAME}"
44
44
VIAddVersionKey " FileDescription" " ${APPNAME} Installer"
45
- VIAddVersionKey " LegalCopyright" " © 2018 Alessandro Attard Barbini"
45
+ VIAddVersionKey " LegalCopyright" " (C) 2018 Alessandro Attard Barbini"
46
46
47
47
48
48
; --------------------------------
Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ Write-Host
14
14
Write-Host " Update: InstallationScript\Install.nsi"
15
15
$FilePath = [System.IO.Path ]::GetFullPath((Join-Path (pwd) " InstallationScript\Install.nsi" ))
16
16
$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 "
19
19
[System.IO.File ]::WriteAllLines($FilePath , $Lines )
20
20
21
21
# Toastify\version
You can’t perform that action at this time.
0 commit comments