Skip to content

Commit

Permalink
steamguard option on by default for new installs
Browse files Browse the repository at this point in the history
  • Loading branch information
shadoxxhd committed Feb 27, 2024
1 parent 75cd88c commit 559fc93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Binary file modified dist/downloader.exe
Binary file not shown.
3 changes: 2 additions & 1 deletion downloader.pyw
Expand Up @@ -183,7 +183,7 @@ def main():
cfg.read('downloader.ini')
# validate ini
if 'general' not in cfg:
cfg['general']={'theme': 'default', 'steampath': 'steamcmd', 'batchsize': '50', 'showConsole': 'no', 'defaultpath': 'mods'}
cfg['general']={'theme': 'default', 'steampath': 'steamcmd', 'batchsize': '50', 'showConsole': 'no', 'defaultpath': 'mods', 'steamguard': 'yes'}
else:
if 'theme' not in cfg['general']:
cfg['general']['theme'] = 'default'
Expand All @@ -210,6 +210,7 @@ def main():
steamguard = cfg.getboolean('general','steamguard')
else:
cfg['general']['steamguard'] = "no"
steamguard = False

showConsole = cfg.getboolean('general','showConsole')
padx = 7
Expand Down

0 comments on commit 559fc93

Please sign in to comment.