Skip to content

Commit 509a019

Browse files
v2 beta 9
1 parent 83de3bb commit 509a019

File tree

6 files changed

+16
-6
lines changed

6 files changed

+16
-6
lines changed

changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 2.00.0 Beta 9
2+
3+
* Fixed conditional override priorities not working.
4+
5+
16
# 2.00.0 Beta 8
27

38
* You can now drag and drop DAT files into the file list.
@@ -34,6 +39,7 @@
3439
interpreted properly.
3540
* Polished up some rough areas of code, made some minor GUI tweaks.
3641

42+
3743
# 2.00.0 Beta 7
3844

3945
* System languages are now filtering correctly again.

docs/changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ hide:
66
# Changelog
77

88

9+
# 2.00.0 Beta 9
10+
11+
* Fixed conditional override priorities not working.
12+
13+
914
## 2.00.0 Beta 8
1015

1116
* You can now drag and drop DAT files into the file list.

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-beta-8-win-x86-64.zip](https://unexpectedpanda.github.io/files/retool-2.00.0-beta-8-win-x86-64.zip)
1+
[retool-2.00.0-beta-9-win-x86-64.zip](https://unexpectedpanda.github.io/files/retool-2.00.0-beta-9-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-
bb71fc1fb1277d35e0566dee044f8b81edd15242437c95162298c3cc1325bbdc
1+
3da9506dcc2225593dc36dfbb2a746a1642e1ed3a080ae0b1e216cd6be80cf08

modules/clonelists.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1080,9 +1080,8 @@ def process_variants(variant_titles: list[dict[str, Any]], variant_type: str, re
10801080
new_title: DatNode = copy.deepcopy(title)
10811081

10821082
if 'priority' in variant_title:
1083-
new_title.clonelist_priority = variant_title['priority']
1084-
else:
1085-
new_title.clonelist_priority = 1
1083+
if new_title.clonelist_priority == 1:
1084+
new_title.clonelist_priority = variant_title['priority']
10861085

10871086
if variant_type == 'superset':
10881087
new_title.is_superset = True

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 Beta 8'
3+
VERSION_MINOR: str = '0 Beta 9'
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'

0 commit comments

Comments
 (0)