From 33e19e194e8b00b94973396113851927f0632550 Mon Sep 17 00:00:00 2001 From: Alessandro Attard Barbini <11708634+aleab@users.noreply.github.com> Date: Thu, 14 Feb 2019 16:14:24 +0100 Subject: [PATCH] v1.11.0* --- InstallationScript/Install.nsi | 4 ++-- update-version.ps1 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/InstallationScript/Install.nsi b/InstallationScript/Install.nsi index f8aeeab..ce347fb 100644 --- a/InstallationScript/Install.nsi +++ b/InstallationScript/Install.nsi @@ -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" @@ -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" ;-------------------------------- diff --git a/update-version.ps1 b/update-version.ps1 index a97cfb6..ebf24f6 100644 --- a/update-version.ps1 +++ b/update-version.ps1 @@ -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