diff --git a/docs/includes/file.md b/docs/includes/file.md index 074bf70..327bf4c 100644 --- a/docs/includes/file.md +++ b/docs/includes/file.md @@ -1 +1 @@ -[retool-2.00.0-win-x86-64.zip](https://unexpectedpanda.github.io/files/retool-2.00.0-win-x86-64.zip) \ No newline at end of file +[retool-2.00.1-win-x86-64.zip](https://unexpectedpanda.github.io/files/retool-2.00.1-win-x86-64.zip) \ No newline at end of file diff --git a/docs/includes/sha256.md b/docs/includes/sha256.md index 3316e76..d627472 100644 --- a/docs/includes/sha256.md +++ b/docs/includes/sha256.md @@ -1 +1 @@ -9848f744e29f856217e1614b04e83c770b3eec5610cb5b7101473b64085fd7d6 \ No newline at end of file +02cc29c979982723289ab89d406820aed24686dc81fcbf7b6304937991898161 \ No newline at end of file diff --git a/modules/chooseparent.py b/modules/chooseparent.py index 47ff502..bef7bde 100644 --- a/modules/chooseparent.py +++ b/modules/chooseparent.py @@ -1893,7 +1893,7 @@ def choose_parent_process(config: Config, potential_parents: dict[str, set[DatNo for video_standard in video_order: parent_titles = ParentTools.choose_video_standard(video_standard.lower(), parent_titles, config, report_on_match) - if report_on_match: TraceTools.trace_title('REF0009', [group_name], parent_titles, keep_remove=False) + if report_on_match: TraceTools.trace_title('REF0096', [group_name], parent_titles, keep_remove=False) # 11) Second language pass -- required to allow versions/revisions to be correctly selected if len(parent_titles) > 1: parent_titles = ParentTools.choose_language(parent_titles, config, report_on_match, first_time=False) diff --git a/modules/constants.py b/modules/constants.py index ce22101..c320060 100644 --- a/modules/constants.py +++ b/modules/constants.py @@ -1,6 +1,6 @@ # Set the user files and options VERSION_MAJOR: str = '2.00' -VERSION_MINOR: str = '0' +VERSION_MINOR: str = '1' CLONE_LIST_METADATA_DOWNLOAD_LOCATION: str = 'https://raw.githubusercontent.com/unexpectedpanda/retool-clonelists-metadata/main' CLONE_LIST_METADATA_DOWNLOAD_LOCATION_KEY: str = 'cloneListMetadataUrl' PROGRAM_DOWNLOAD_LOCATION: str = 'https://raw.githubusercontent.com/unexpectedpanda/retool/main' diff --git a/modules/titletools.py b/modules/titletools.py index b89cc1d..bd94240 100644 --- a/modules/titletools.py +++ b/modules/titletools.py @@ -688,7 +688,7 @@ def __init__(self, LANGUAGES: str) -> None: ) self.demos: tuple[Pattern[str], ...] = ( - re.compile('\\((?:\\w[-.]?\\s*)*Demo(?:\\s[\\w0-9\.]*)*\\)', flags=re.I), + re.compile('\\((?:\\w[-.]?\\s*)*Demo(?:,?\\s[\\w0-9\.]*)*\\)', flags=re.I), re.compile('Taikenban', flags=re.I), re.compile('\\(@barai\\)', flags=re.I), re.compile('\\(GameCube Preview\\)', flags=re.I), @@ -1294,7 +1294,7 @@ def trace_title(trace_reference: str, variable: list[str] = [], title_set: set[D if trace_reference == 'REF0006': message = f'{Font.bold}[{variable[0]}]{Font.end} Group after handling special editions:' if trace_reference == 'REF0007': message = f'{Font.bold}[{variable[0]}]{Font.end} Group after handling versions and revisions:' if trace_reference == 'REF0008': message = f'{Font.bold}[{variable[0]}]{Font.end} Group after handling modern title rips:' - if trace_reference == 'REF0009': message = f'{Font.bold}[{variable[0]}]{Font.end} Group after choosing video standard:' + if trace_reference == 'REF0009': message = f'{Font.bold}[{variable[0]}]{Font.end} Group after choosing dates:' if trace_reference == 'REF0010': message = f'{Font.bold}[{variable[0]}]{Font.end} Group after choosing good, original versions over alternatives:' if trace_reference == 'REF0011': message = f'{Font.bold}[{variable[0]}]{Font.end} Group after handling promotions and demotions:' 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 if trace_reference == 'REF0093': message = 'ACTION: Tie breaker, remove the compilation title:' if trace_reference == 'REF0094': message = 'ACTION: Favor primary region higher up user region order (individual title vs compilation):' if trace_reference == 'REF0095': message = 'ACTION: Favor primary region higher up user region order (individual title vs compilation):' + if trace_reference == 'REF0096': message = f'{Font.bold}[{variable[0]}]{Font.end} Group after choosing video standard:' if trace_reference: eprint(f'\n{Font.bold}{Font.underline}{trace_reference}{Font.end}: {message}{Font.end}\n')