Skip to content

Commit

Permalink
v2.00.1
Browse files Browse the repository at this point in the history
  • Loading branch information
unexpectedpanda committed Apr 24, 2023
1 parent a94f47c commit 6d7d718
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/includes/file.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
[retool-2.00.0-win-x86-64.zip](https://unexpectedpanda.github.io/files/retool-2.00.0-win-x86-64.zip)
[retool-2.00.1-win-x86-64.zip](https://unexpectedpanda.github.io/files/retool-2.00.1-win-x86-64.zip)
2 changes: 1 addition & 1 deletion docs/includes/sha256.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9848f744e29f856217e1614b04e83c770b3eec5610cb5b7101473b64085fd7d6
02cc29c979982723289ab89d406820aed24686dc81fcbf7b6304937991898161
2 changes: 1 addition & 1 deletion modules/chooseparent.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion modules/constants.py
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
5 changes: 3 additions & 2 deletions modules/titletools.py
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down Expand Up @@ -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:'
Expand Down Expand Up @@ -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')
Expand Down

0 comments on commit 6d7d718

Please sign in to comment.