From 101f6fc103e459f02a20861f6ed610f296938aba Mon Sep 17 00:00:00 2001 From: Akshay Joshi Date: Fri, 17 Nov 2023 17:52:56 +0530 Subject: [PATCH] 1) Remove the version folder from the Windows Default Installation path. 2) Rename the release note to 8.0 3) Update the version for release v8.0 --- docs/en_US/release_notes.rst | 2 +- docs/en_US/{release_notes_7_9.rst => release_notes_8_0.rst} | 2 +- pkg/win32/installer.iss.in | 2 +- web/config.py | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) rename docs/en_US/{release_notes_7_9.rst => release_notes_8_0.rst} (99%) diff --git a/docs/en_US/release_notes.rst b/docs/en_US/release_notes.rst index 53d77e10b..7b9f4c763 100644 --- a/docs/en_US/release_notes.rst +++ b/docs/en_US/release_notes.rst @@ -11,7 +11,7 @@ notes for it. .. toctree:: :maxdepth: 1 - release_notes_7_9 + release_notes_8_0 release_notes_7_8 release_notes_7_7 release_notes_7_6 diff --git a/docs/en_US/release_notes_7_9.rst b/docs/en_US/release_notes_8_0.rst similarity index 99% rename from docs/en_US/release_notes_7_9.rst rename to docs/en_US/release_notes_8_0.rst index da75d71d8..3871269d2 100644 --- a/docs/en_US/release_notes_7_9.rst +++ b/docs/en_US/release_notes_8_0.rst @@ -1,5 +1,5 @@ *********** -Version 7.9 +Version 8.0 *********** Release date: 2023-11-23 diff --git a/pkg/win32/installer.iss.in b/pkg/win32/installer.iss.in index a0decbf88..5031fec6b 100644 --- a/pkg/win32/installer.iss.in +++ b/pkg/win32/installer.iss.in @@ -20,7 +20,7 @@ AppPublisher={#MyAppPublisher} AppPublisherURL={#MyAppURL} AppSupportURL={#MyAppURL} AppUpdatesURL={#MyAppURL} -DefaultDirName={autopf}\{#MyAppName}\{#MyAppVersion} +DefaultDirName={autopf}\{#MyAppName} DefaultGroupName={#MyAppName} DisableWelcomePage=no DisableProgramGroupPage=auto diff --git a/web/config.py b/web/config.py index c9cd447a8..d20ad5cbc 100644 --- a/web/config.py +++ b/web/config.py @@ -49,8 +49,8 @@ APP_ICON = 'pg-icon' # # Application version number components -APP_RELEASE = 7 -APP_REVISION = 8 +APP_RELEASE = 8 +APP_REVISION = 0 # Application version suffix, e.g. 'beta1', 'dev'. Usually an empty string # for GA releases. @@ -59,7 +59,7 @@ APP_SUFFIX = '' # Numeric application version for upgrade checks. Should be in the format: # [X]XYYZZ, where X is the release version, Y is the revision, with a leading # zero if needed, and Z represents the suffix, with a leading zero if needed -APP_VERSION_INT = 70800 +APP_VERSION_INT = 80000 # DO NOT CHANGE! # The application version string, constructed from the components