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 3e5bf62 commit 33e19e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions InstallationScript/Install.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
!define PUBLISHER "Jesper Palm, Oren Nachman, Alessandro Attard Barbini"
!define DESCRIPTION "Toastify adds global hotkeys and toast notifications to Spotify"
!define VERSIONMAJOR 1
!define VERSIONMINOR 10
!define VERSIONMINOR 11
!define VERSIONBUILD 0
!define HELPURL "https://github.com/aleab/toastify/issues"
!define UPDATEURL "https://github.com/aleab/toastify/releases"
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" "(C) 2018 Alessandro Attard Barbini"


;--------------------------------
Expand Down
4 changes: 2 additions & 2 deletions update-version.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ Write-Host
Write-Host "Update: InstallationScript\Install.nsi"
$FilePath = [System.IO.Path]::GetFullPath((Join-Path (pwd) "InstallationScript\Install.nsi"))
$Lines = (Get-Content 'InstallationScript\Install.nsi') -replace '(VERSIONMAJOR) .*', "`$1 $vMajor"
$Lines = (Get-Content 'InstallationScript\Install.nsi') -replace '(VERSIONMINOR) .*', "`$1 $vMinor"
$Lines = (Get-Content 'InstallationScript\Install.nsi') -replace '(VERSIONBUILD) .*', "`$1 $vBuild"
$Lines = ($Lines) -replace '(VERSIONMINOR) .*', "`$1 $vMinor"
$Lines = ($Lines) -replace '(VERSIONBUILD) .*', "`$1 $vBuild"
[System.IO.File]::WriteAllLines($FilePath, $Lines)

# Toastify\version
Expand Down

0 comments on commit 33e19e1

Please sign in to comment.