Skip to content

Commit 6d7d718

Browse files
v2.00.1
1 parent a94f47c commit 6d7d718

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

docs/includes/file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[retool-2.00.0-win-x86-64.zip](https://unexpectedpanda.github.io/files/retool-2.00.0-win-x86-64.zip)
1+
[retool-2.00.1-win-x86-64.zip](https://unexpectedpanda.github.io/files/retool-2.00.1-win-x86-64.zip)

docs/includes/sha256.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9848f744e29f856217e1614b04e83c770b3eec5610cb5b7101473b64085fd7d6
1+
02cc29c979982723289ab89d406820aed24686dc81fcbf7b6304937991898161

modules/chooseparent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1893,7 +1893,7 @@ def choose_parent_process(config: Config, potential_parents: dict[str, set[DatNo
18931893
for video_standard in video_order:
18941894
parent_titles = ParentTools.choose_video_standard(video_standard.lower(), parent_titles, config, report_on_match)
18951895

1896-
if report_on_match: TraceTools.trace_title('REF0009', [group_name], parent_titles, keep_remove=False)
1896+
if report_on_match: TraceTools.trace_title('REF0096', [group_name], parent_titles, keep_remove=False)
18971897

18981898
# 11) Second language pass -- required to allow versions/revisions to be correctly selected
18991899
if len(parent_titles) > 1: parent_titles = ParentTools.choose_language(parent_titles, config, report_on_match, first_time=False)

modules/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Set the user files and options
22
VERSION_MAJOR: str = '2.00'
3-
VERSION_MINOR: str = '0'
3+
VERSION_MINOR: str = '1'
44
CLONE_LIST_METADATA_DOWNLOAD_LOCATION: str = 'https://raw.githubusercontent.com/unexpectedpanda/retool-clonelists-metadata/main'
55
CLONE_LIST_METADATA_DOWNLOAD_LOCATION_KEY: str = 'cloneListMetadataUrl'
66
PROGRAM_DOWNLOAD_LOCATION: str = 'https://raw.githubusercontent.com/unexpectedpanda/retool/main'

modules/titletools.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,7 @@ def __init__(self, LANGUAGES: str) -> None:
688688
)
689689

690690
self.demos: tuple[Pattern[str], ...] = (
691-
re.compile('\\((?:\\w[-.]?\\s*)*Demo(?:\\s[\\w0-9\.]*)*\\)', flags=re.I),
691+
re.compile('\\((?:\\w[-.]?\\s*)*Demo(?:,?\\s[\\w0-9\.]*)*\\)', flags=re.I),
692692
re.compile('Taikenban', flags=re.I),
693693
re.compile('\\(@barai\\)', flags=re.I),
694694
re.compile('\\(GameCube Preview\\)', flags=re.I),
@@ -1294,7 +1294,7 @@ def trace_title(trace_reference: str, variable: list[str] = [], title_set: set[D
12941294
if trace_reference == 'REF0006': message = f'{Font.bold}[{variable[0]}]{Font.end} Group after handling special editions:'
12951295
if trace_reference == 'REF0007': message = f'{Font.bold}[{variable[0]}]{Font.end} Group after handling versions and revisions:'
12961296
if trace_reference == 'REF0008': message = f'{Font.bold}[{variable[0]}]{Font.end} Group after handling modern title rips:'
1297-
if trace_reference == 'REF0009': message = f'{Font.bold}[{variable[0]}]{Font.end} Group after choosing video standard:'
1297+
if trace_reference == 'REF0009': message = f'{Font.bold}[{variable[0]}]{Font.end} Group after choosing dates:'
12981298
if trace_reference == 'REF0010': message = f'{Font.bold}[{variable[0]}]{Font.end} Group after choosing good, original versions over alternatives:'
12991299
if trace_reference == 'REF0011': message = f'{Font.bold}[{variable[0]}]{Font.end} Group after handling promotions and demotions:'
13001300
if trace_reference == 'REF0012': message = f'{Font.bold}[{variable[0]}]{Font.end} Group after handling "Made in" titles:'
@@ -1381,6 +1381,7 @@ def trace_title(trace_reference: str, variable: list[str] = [], title_set: set[D
13811381
if trace_reference == 'REF0093': message = 'ACTION: Tie breaker, remove the compilation title:'
13821382
if trace_reference == 'REF0094': message = 'ACTION: Favor primary region higher up user region order (individual title vs compilation):'
13831383
if trace_reference == 'REF0095': message = 'ACTION: Favor primary region higher up user region order (individual title vs compilation):'
1384+
if trace_reference == 'REF0096': message = f'{Font.bold}[{variable[0]}]{Font.end} Group after choosing video standard:'
13841385

13851386
if trace_reference:
13861387
eprint(f'\n{Font.bold}{Font.underline}{trace_reference}{Font.end}: {message}{Font.end}\n')

0 commit comments

Comments
 (0)