From 7e595ce1d989f4e490e846e1b5bdfca6abb52d20 Mon Sep 17 00:00:00 2001 From: otavepto <153766569+otavepto@users.noreply.github.com> Date: Thu, 25 Jan 2024 23:32:54 +0200 Subject: [PATCH] updated changelog --- CHANGELOG.md | 1 + tools/generate_emu_config/generate_emu_config.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f93ea0f..9b4e9c9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ +* **[Detanup01]** added a new command line option for the tool `generate_emu_config` to disable the generation of `disable_xxx.txt` files * added new options to the overlay to allow copying a friend's ID, plus current player ID, suggested by **[Vlxst]** * added a new option to the overlay to invite all friends playing the same game, suggested by **[Vlxst]** * added new `auto_accept_invite.txt` setting to automatically accept game/lobby invites from this list, each SteamID64 on a separate line diff --git a/tools/generate_emu_config/generate_emu_config.py b/tools/generate_emu_config/generate_emu_config.py index c6b6fe07..ce933aa8 100644 --- a/tools/generate_emu_config/generate_emu_config.py +++ b/tools/generate_emu_config/generate_emu_config.py @@ -495,6 +495,7 @@ def help(): exe_name = os.path.basename(sys.argv[0]) print(f"\nUsage: {exe_name} [-shots] [-thumbs] [-vid] [-imgs] [-name] [-cdx] [-aw] [-clean] appid appid appid ... ") print(f" Example: {exe_name} 421050 420 480") + print(f" Example: {exe_name} -shots -thumbs -vid -imgs -name -cdx -aw -clean -nd 421050") print(f" Example: {exe_name} -shots -thumbs -vid -imgs -name -cdx -aw -clean 421050") print("\nSwitches:") print(" -shots: download screenshots for each app if they're available") @@ -505,7 +506,7 @@ def help(): print(" -cdx: generate .ini file for CODEX Steam emu for each app") print(" -aw: generate schemas of all possible languages for Achievement Watcher") print(" -clean: delete any folder/file with the same name as the output before generating any data") - print(" -anon: login as with an anonymous account, these have very limited access and cannot get all app details") + print(" -anon: login as an anonymous account, these have very limited access and cannot get all app details") print(" -nd: not making predeterminated disable files") print("\nAll switches are optional except app id, at least 1 app id must be provided\n")