Skip to content

Commit

Permalink
Fixed bug in gam <UserTypeEntity> create meetspace
Browse files Browse the repository at this point in the history
  • Loading branch information
taers232c committed Sep 13, 2024
1 parent 12789b4 commit 6a47782
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/winget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: vedantmgoyal2009/winget-releaser@v2
with:
identifier: taers232c.GAMADV-XTD3
release-tag: v6.81.00
release-tag: v6.81.01
max-versions-to-keep: 1 # keep only latest versions
installers-regex: '\.msi$'
token: ${{ secrets.WINGET_TOKEN }}
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,10 @@ deploy:
file: gamadv-xtd3-$GAMVERSION-*
skip_cleanup: true
draft: true
# edge: true
edge: true
# Linux Xenial and Trusty
edge:
branch: v2.0.3-beta.4
# edge:
# branch: v2.0.3-beta.4
on:
repo: taers232c/GAMADV-XTD3

5 changes: 5 additions & 0 deletions src/GamUpdate.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
6.81.01

Fixed bug in `gam <UserTypeEntity> create meetspace` that caused errors
due to Developer Preview options being included.

6.81.00

Added support for groups when defining Chrome policies.
Expand Down
8 changes: 4 additions & 4 deletions src/gam/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"""

__author__ = 'Ross Scroggs <[email protected]>'
__version__ = '6.81.00'
__version__ = '6.81.01'
__license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)'

#pylint: disable=wrong-import-position
Expand Down Expand Up @@ -27143,9 +27143,9 @@ def createMeetSpace(users):
FJQC = FormatJSONQuoteChar()
body = {'config': {'accessType': 'TRUSTED',
'entryPointAccess': 'ALL',
'moderation': 'OFF',
'moderationRestrictions': {},
'firstJoinerType': 'ANYONE',
# 'moderation': 'OFF',
# 'moderationRestrictions': {},
# 'firstJoinerType': 'ANYONE',
}}
returnIdOnly = False
updateMask = []
Expand Down

0 comments on commit 6a47782

Please sign in to comment.