diff --git a/games/pbrave/base_files/config.json b/games/pbrave/base_files/config.json index a30fc48a1..9deee90af 100644 --- a/games/pbrave/base_files/config.json +++ b/games/pbrave/base_files/config.json @@ -61,5 +61,5 @@ "name": "Pocket Bravery", "smashgg_game_id": 44108, "stage_to_codename": {}, - "version": "24.11.21.80846" + "version": "24.11.21.81008" } \ No newline at end of file diff --git a/games/pbrave/base_files/icon/config.json b/games/pbrave/base_files/icon/config.json index add337d8e..a4e013d4f 100644 --- a/games/pbrave/base_files/icon/config.json +++ b/games/pbrave/base_files/icon/config.json @@ -4,7 +4,7 @@ "type": [ "icon" ], - "version": "24.11.21.80846", + "version": "24.11.21.81008", "rescaling_factor": { "Arshavin": { "0": 4.0 diff --git a/games/pbrave/full/config.json b/games/pbrave/full/config.json index 04fca2538..884f37564 100644 --- a/games/pbrave/full/config.json +++ b/games/pbrave/full/config.json @@ -7,7 +7,7 @@ "full" ], "credits": "", - "version": "24.11.21.80846", + "version": "24.11.21.81008", "eyesights": { "Arshavin": { "0": { diff --git a/games/roa2/base_files/config.json b/games/roa2/base_files/config.json index 7945ac68f..284bf5273 100644 --- a/games/roa2/base_files/config.json +++ b/games/roa2/base_files/config.json @@ -50,7 +50,7 @@ "description": "Base config to use this game.", "name": "Rivals of Aether II", "smashgg_game_id": 53945, - "version": "24.11.21.80846", + "version": "24.11.21.81008", "stage_to_codename": { "Aetherian Forest": { "codename": "AetherianForest" diff --git a/scripts/update_calver.py b/scripts/update_calver.py index 2c951df74..258bd1180 100644 --- a/scripts/update_calver.py +++ b/scripts/update_calver.py @@ -39,7 +39,7 @@ def run_linux_command(command: str): LATEST_TAG = None with open(f"{FILE_DIR}/last_tag.txt", "r", encoding="utf-8") as f: LATEST_TAG = f.read().strip() -_, LIST_CHANGED_FILES, _ = run_linux_command(f"git diff --name-only {LATEST_TAG} {CURRENT_TAG}") +_, LIST_CHANGED_FILES, _ = run_linux_command(f"git diff-tree --name-only {LATEST_TAG} {CURRENT_TAG} -r") # _, LIST_CHANGED_FILES, _ = run_linux_command(f"git diff --name-only {LATEST_TAG} head") print(LIST_CHANGED_FILES)