Skip to content

Commit 3af8dcb

Browse files
v2.3.7
1 parent e3c0ed9 commit 3af8dcb

File tree

6 files changed

+18
-11
lines changed

6 files changed

+18
-11
lines changed

changelog.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Retool changelog
22

33

4+
## 2.3.7 (2024-04-28)
5+
6+
- **_Fix_**: Fixed clone list and `internal-config.json` minimum version detection.
7+
8+
49
## 2.3.6 (2024-04-27)
510

611
- **_Feature_**: You can now choose to prefer the oldest production version of a title
@@ -13,7 +18,7 @@
1318
oldest version feature properly.
1419

1520
- **_Fix_**: Fixed the flags in the output DAT file filename to reflect system settings
16-
when system settings were in use, instead of reflecting global settings.
21+
when system settings are in use, instead of reflecting global settings.
1722

1823

1924
## 2.3.5 (2024-04-27)

docs/changelog.md

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

88

9+
## 2.3.7 (2024-04-28)
10+
11+
- **_Fix_**: Fixed clone list and `internal-config.json` minimum version detection.
12+
13+
914
## 2.3.6 (2024-04-27)
1015

1116
- **_Feature_**: You can now choose to prefer the oldest production version of a title
@@ -18,7 +23,7 @@ hide:
1823
oldest version feature properly.
1924

2025
- **_Fix_**: Fixed the flags in the output DAT file filename to reflect system settings
21-
when system settings were in use, instead of reflecting global settings.
26+
when system settings are in use, instead of reflecting global settings.
2227

2328

2429
## 2.3.5 (2024-04-27)

docs/includes/file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[retool-2.3.6-win-x86-64.zip](https://unexpectedpanda.github.io/files/retool-2.3.6-win-x86-64.zip)
1+
[retool-2.3.7-win-x86-64.zip](https://unexpectedpanda.github.io/files/retool-2.3.7-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-
5117ab55af18637e526c380ef601a3e274e673c2e53556513faae50b8f603a72
1+
b155c980d5da9810aecb87a9c82c7fd2d4b9cff036a8d84dd65ed588807113ae

modules/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Set the user files and options
2-
__version__ = '2.3.6'
2+
__version__ = '2.3.7'
33
CLONE_LIST_METADATA_DOWNLOAD_LOCATION: str = (
44
'https://raw.githubusercontent.com/unexpectedpanda/retool-clonelists-metadata/main'
55
)

modules/utils.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -368,12 +368,9 @@ def minimum_version(
368368
elif input_file_version_major == retool_version_major:
369369
if input_file_version_minor > retool_version_minor:
370370
out_of_date = True
371-
elif (
372-
input_file_version_major == retool_version_major
373-
and input_file_version_minor == retool_version_minor
374-
):
375-
if input_file_version_patch > retool_version_patch:
376-
out_of_date = True
371+
elif input_file_version_minor == retool_version_minor:
372+
if input_file_version_patch > retool_version_patch:
373+
out_of_date = True
377374

378375
if out_of_date:
379376
out_of_date_response: str = ''

0 commit comments

Comments
 (0)