Skip to content

Commit 1c0f21e

Browse files
v2.00.2
1 parent 78d99a0 commit 1c0f21e

File tree

6 files changed

+19
-4
lines changed

6 files changed

+19
-4
lines changed

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 2.00.2
2+
3+
* Expanded support for some newer No-Intro DATs.
4+
5+
16
# 2.00.1
27

38
* Expanded the demo regex to incorporate a set of Genesis demos.

docs/changelog.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ hide:
55

66
# Changelog
77

8+
# 2.00.2
9+
10+
* Expanded support for some newer No-Intro DATs.
11+
12+
13+
# 2.00.1
14+
15+
* Expanded the demo regex to incorporate a set of Genesis demos.
16+
17+
818
# 2.00.0
919

1020
* Fixed grouping of titles with oddly-named video standards in the filename.

docs/includes/file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[retool-2.00.1-win-x86-64.zip](https://unexpectedpanda.github.io/files/retool-2.00.1-win-x86-64.zip)
1+
[retool-2.00.2-win-x86-64.zip](https://unexpectedpanda.github.io/files/retool-2.00.2-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-
02cc29c979982723289ab89d406820aed24686dc81fcbf7b6304937991898161
1+
ff56f5d742c1f80c57f8085cd6931997d3f67c1c68008a1ad82522e54251fe5e

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 = '1'
3+
VERSION_MINOR: str = '2'
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/dats.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -713,7 +713,7 @@ def format_system_name(original_name: str, url: str = '', homepage: str = '', co
713713
`str`: The formatted system name.
714714
"""
715715

716-
remove_string: str = ' \\((Parent-Clone|BETA|Combined|J64|ROM|Decrypted|Encrypted|BigEndian|ByteSwapped|Deprecated|Headered|Headerless)\\)'
716+
remove_string: str = ' \\((Parent-Clone|BETA|Combined|J64|ROM|Decrypted|Encrypted|BigEndian|ByteSwapped|Deprecated|Headered|Headerless|Private)\\)'
717717
search_name: str = ''
718718

719719
if re.search(remove_string, original_name) != None:

0 commit comments

Comments
 (0)