From fdaefe64c1fdeba53bda3227c61885c62fb1637c Mon Sep 17 00:00:00 2001 From: Nicholas Gautier Date: Sun, 5 Feb 2023 13:13:12 -0600 Subject: [PATCH] Changed the date of release --- Installer/Scripts/Project Information.iss | 2 +- Scripts/Initializations.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Installer/Scripts/Project Information.iss b/Installer/Scripts/Project Information.iss index 8152a671..3064ce5e 100644 --- a/Installer/Scripts/Project Information.iss +++ b/Installer/Scripts/Project Information.iss @@ -32,7 +32,7 @@ #define public _PRODUCT_NAME_SHORT_ "PSCAT" #define public _PRODUCT_VERSION_ "1.1.0" #define public _PRODUCT_VERSION_CODENAME_ "Cordis" -#define public _PRODUCT_VERSION_DATE_ "15.01.2023" +#define public _PRODUCT_VERSION_DATE_ "05.02.2023" #define public _PRODUCT_WEBSITE_HOMEPAGE_ "https://github.com/SibTiger/PowerShell-Compact-Archive-Tool" #define public _PRODUCT_WEBSITE_SUPPORT_ "https://github.com/SibTiger/PowerShell-Compact-Archive-Tool/wiki" #define public _PRODUCT_WEBSITE_UPDATES_ "https://github.com/SibTiger/PowerShell-Compact-Archive-Tool/releases" diff --git a/Scripts/Initializations.ps1 b/Scripts/Initializations.ps1 index 4a06e678..45d576e4 100644 --- a/Scripts/Initializations.ps1 +++ b/Scripts/Initializations.ps1 @@ -87,7 +87,7 @@ function InitializationProgramIdentity() # Release Date # Date Format: DD.MM.YYYY with leading zeros - Set-Variable -Name "_RELEASEDATE_" -Value "15.01.2023" ` + Set-Variable -Name "_RELEASEDATE_" -Value "05.02.2023" ` -Option ReadOnly -Scope Global -ErrorAction SilentlyContinue ` -Visibility Public ` -Description "The date in which the version of the application was released.";