File tree Expand file tree Collapse file tree 6 files changed +18
-11
lines changed
Expand file tree Collapse file tree 6 files changed +18
-11
lines changed Original file line number Diff line number Diff line change 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
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)
Original file line number Diff line number Diff line change 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
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)
Original file line number Diff line number Diff line change 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 )
Original file line number Diff line number Diff line change 1- 5117ab55af18637e526c380ef601a3e274e673c2e53556513faae50b8f603a72
1+ b155c980d5da9810aecb87a9c82c7fd2d4b9cff036a8d84dd65ed588807113ae
Original file line number Diff line number Diff line change 11# Set the user files and options
2- __version__ = '2.3.6 '
2+ __version__ = '2.3.7 '
33CLONE_LIST_METADATA_DOWNLOAD_LOCATION : str = (
44 'https://raw.githubusercontent.com/unexpectedpanda/retool-clonelists-metadata/main'
55)
Original file line number Diff line number Diff 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 = ''
You can’t perform that action at this time.
0 commit comments