diff --git a/docs/GamUpdates.md b/docs/GamUpdates.md index 1d5301a9..5cc5a857 100644 --- a/docs/GamUpdates.md +++ b/docs/GamUpdates.md @@ -10,6 +10,10 @@ Add the `-s` option to the end of the above commands to suppress creating the `g See [Downloads-Installs-GAM7](https://github.com/taers232c/GAMADV-XTD3/wiki/Downloads-Installs) for Windows or other options, including manual installation +### 7.00.13 + +Version bump in order to confirm MSI installs are operating properly + ### 7.00.12 Updated option `showlastmodification` to `gam print|show filecounts` to handle @@ -18,6 +22,9 @@ will show the user's display name as the API doesn't return the user's email add Updated support for `Folders with limited access`; this is a work in progress. +Windows builds now use PyInstaller's onedir config for improved performance. You may notice a lib +folder now exists underneath the GAM install path. GAM commands should start significantly faster. + ### 7.00.11 Updated to Python 3.12.7 where possible. diff --git a/docs/How-to-Upgrade-from-Legacy-GAM.md b/docs/How-to-Upgrade-from-Legacy-GAM.md index bee9b7c8..87672fb6 100644 --- a/docs/How-to-Upgrade-from-Legacy-GAM.md +++ b/docs/How-to-Upgrade-from-Legacy-GAM.md @@ -923,7 +923,7 @@ writes the credentials into the file oauth2.txt. C:\>del C:\GAMConfig\oauth2.txt C:\>gam version WARNING: Config File: C:\GAMConfig\gam.cfg, Section: DEFAULT, Item: oauth2_txt, Value: C:\GAMConfig\oauth2.txt, Not Found -GAM7 7.00.12 - https://github.com/taers232c/GAM7 - pythonsource +GAM7 7.00.12 - https://github.com/GAM-team/GAM - pythonsource GAM Team Python 3.12.6 64-bit final Windows-10-10.0.17134 AMD64 diff --git a/docs/Version-and-Help.md b/docs/Version-and-Help.md index c164892f..ec273dd5 100644 --- a/docs/Version-and-Help.md +++ b/docs/Version-and-Help.md @@ -3,11 +3,11 @@ Print the current version of Gam with details ``` gam version -GAM 7.00.12 - https://github.com/GAM-team/GAM - pyinstaller +GAM 7.00.13 - https://github.com/GAM-team/GAM - pyinstaller GAM Team Python 3.12.7 64-bit final MacOS Sonoma 14.5 x86_64 -Path: /Users/Admin/bin/gamadv-xtd3 +Path: /Users/Admin/bin/gam7 Config File: /Users/admin/GAMConfig/gam.cfg, Section: DEFAULT, customer_id: my_customer, domain: domain.com Time: 2023-06-02T21:10:00-07:00 ``` @@ -15,11 +15,11 @@ Time: 2023-06-02T21:10:00-07:00 Print the current version of Gam with details and time offset information ``` gam version timeoffset -GAM 7.00.12 - https://github.com/GAM-team/GAM - pyinstaller +GAM 7.00.13 - https://github.com/GAM-team/GAM - pyinstaller GAM Team Python 3.12.7 64-bit final MacOS Sonoma 14.5 x86_64 -Path: /Users/Admin/bin/gamadv-xtd3 +Path: /Users/Admin/bin/gam7 Config File: /Users/admin/GAMConfig/gam.cfg, Section: DEFAULT, customer_id: my_customer, domain: domain.com Your system time differs from www.googleapis.com by less than 1 second ``` @@ -27,11 +27,11 @@ Your system time differs from www.googleapis.com by less than 1 second Print the current version of Gam with extended details and SSL information ``` gam version extended -GAM 7.00.12 - https://github.com/GAM-team/GAM - pyinstaller +GAM 7.00.13 - https://github.com/GAM-team/GAM - pyinstaller GAM Team Python 3.12.7 64-bit final MacOS Sonoma 14.5 x86_64 -Path: /Users/Admin/bin/gamadv-xtd3 +Path: /Users/Admin/bin/gam7 Config File: /Users/admin/GAMConfig/gam.cfg, Section: DEFAULT, customer_id: my_customer, domain: domain.com Time: 2023-06-02T21:10:00-07:00 Your system time differs from admin.googleapis.com by less than 1 second @@ -72,7 +72,7 @@ echo $? Print the current version number without details ``` gam version simple -7.00.12 +7.00.13 ``` In Linux/MacOS you can do: ``` @@ -82,11 +82,11 @@ echo $VER Print the current version of Gam and address of this Wiki ``` gam help -GAM 7.00.12 - https://github.com/taers232c/GAMADV-XTD3 +GAM 7.00.13 - https://github.com/GAM-team/GAM GAM Team Python 3.12.7 64-bit final MacOS Sonoma 14.5 x86_64 -Path: /Users/Admin/bin/gamadv-xtd3 +Path: /Users/Admin/bin/gam7 Config File: /Users/admin/GAMConfig/gam.cfg, Section: DEFAULT, customer_id: my_customer, domain: domain.com Time: 2023-06-02T21:10:00-07:00 Help: Syntax in file /Users/Admin/bin/gamadv-xtd3/GamCommands.txt diff --git a/src/GamUpdate.txt b/src/GamUpdate.txt index d7594d09..160b4f13 100644 --- a/src/GamUpdate.txt +++ b/src/GamUpdate.txt @@ -1,3 +1,7 @@ +7.00.13 + +Version bump in order to confirm MSI installs are operating properly + 7.00.12 Updated option `showlastmodification` to `gam print|show filecounts` to handle @@ -6,6 +10,9 @@ will show the user's display name as the API doesn't return the user's email add Updated support for `Folders with limited access`; this is a work in progress. +Windows builds now use PyInstaller's onedir config for improved performance. You may notice a lib +folder now exists underneath the GAM install path. GAM commands should start significantly faster. + 7.00.11 Updated to Python 3.12.7 where possible. diff --git a/src/gam/__init__.py b/src/gam/__init__.py index f8d38516..b27a525a 100755 --- a/src/gam/__init__.py +++ b/src/gam/__init__.py @@ -25,7 +25,7 @@ https://github.com/GAM-team/GAM/wiki """ __author__ = 'GAM Team ' -__version__ = '7.00.12' +__version__ = '7.00.13' __license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)' #pylint: disable=wrong-import-position