diff --git a/.github/workflows/winget.yml b/.github/workflows/winget.yml index 7cf49762..2df09e72 100644 --- a/.github/workflows/winget.yml +++ b/.github/workflows/winget.yml @@ -10,7 +10,7 @@ jobs: - uses: vedantmgoyal2009/winget-releaser@v2 with: identifier: taers232c.GAMADV-XTD3 - release-tag: v7.00.21 + release-tag: v7.00.22 max-versions-to-keep: 1 # keep only latest versions installers-regex: '\.msi$' token: ${{ secrets.WINGET_TOKEN }} \ No newline at end of file diff --git a/.travis.yml b/.travis.yml index 244e04c9..87961381 100644 --- a/.travis.yml +++ b/.travis.yml @@ -95,10 +95,10 @@ script: before_deploy: # Comment out for Linux Xenial and Trusty -#- yes | gem update --system --force -#- gem install bundler -#- gem install uri -#- gem install logger +- yes | gem update --system --force +- gem install bundler +- gem install uri +- gem install logger - export TRAVIS_TAG="preview" - unset LD_LIBRARY_PATH @@ -111,10 +111,10 @@ deploy: skip_cleanup: true draft: true # Linux 64-Bit Bionic and Linux ARM64 Focal and Linux ARM64 Bionic and Linux ARM64 Xenial -# edge: true + edge: true # Linux Xenial and Trusty - edge: - branch: v2.0.3-beta.4 +# edge: +# branch: v2.0.3-beta.4 # branch: v2.0.5-beta.1 on: repo: taers232c/GAMADV-XTD3 diff --git a/src/GamUpdate.txt b/src/GamUpdate.txt index dcc9f3fb..2879358e 100644 --- a/src/GamUpdate.txt +++ b/src/GamUpdate.txt @@ -1,3 +1,7 @@ +7.00.22 + +Fixed bug in `gam create vaultmatter ... showdetails` that caused a trap. + 7.00.21 Added `csv_output_header_order` variable to `gam.cfg` that is a list of `` diff --git a/src/gam/__init__.py b/src/gam/__init__.py index 917b167f..af71201f 100755 --- a/src/gam/__init__.py +++ b/src/gam/__init__.py @@ -25,7 +25,7 @@ """ __author__ = 'Ross Scroggs ' -__version__ = '7.00.21' +__version__ = '7.00.22' __license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)' #pylint: disable=wrong-import-position @@ -41154,7 +41154,7 @@ def doCreateVaultMatter(): break Ind.Decrement() if showDetails: - _showVaultMatter(None, matter, cd, None) + _showVaultMatter(matter, cd, None) VAULT_MATTER_ACTIONS = { 'close': Act.CLOSE,