diff --git a/NEWS.asciidoc b/NEWS.asciidoc index ae3c599e4..3c6b32b14 100644 --- a/NEWS.asciidoc +++ b/NEWS.asciidoc @@ -1,5 +1,12 @@ [[news]] === News +* _19 October, 2024:_ There is a new stable release +https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-3.1.0/[PySolFC +v3.1.0]. New in this release: +** Ten new games. +** Cleanup of duplicate images to reduce package size. +** Some extra cardset/table tile filter options. +** Many enhancements, bugfixes, etc. * _31 March, 2024:_ There is a new stable release https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-3.0.0/[PySolFC v3.0.0] - the biggest release in over 15 years. Additionally, there is a new Cardsets release diff --git a/html-src/news.html b/html-src/news.html index 0d701907d..64c74f69e 100644 --- a/html-src/news.html +++ b/html-src/news.html @@ -1,6 +1,33 @@
19 October, 2024: There is a new stable release +PySolFC +v3.1.0. New in this release:
++Ten new games. +
++Cleanup of duplicate images to reduce package size. +
++Some extra cardset/table tile filter options. +
++Many enhancements, bugfixes, etc. +
+31 March, 2024: There is a new stable release PySolFC v3.0.0 - the biggest release in over 15 years. Additionally, there is a new Cardsets release diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index 92b492e42..1eb75a893 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -594,7 +594,7 @@ def _callback(gi, gt=game_type): tuple(range(13168, 13170)) + tuple(range(18000, 18005)) + tuple(range(19000, 19012)) + tuple(range(22303, 22311)) + tuple(range(22353, 22361))), - ('dev', tuple(range(961, 971))), + ('fc-3.1', tuple(range(961, 971))), ) # deprecated - the correct way is to or a GI.GT_XXX flag diff --git a/pysollib/settings.py b/pysollib/settings.py index 2dd916da1..454df9163 100644 --- a/pysollib/settings.py +++ b/pysollib/settings.py @@ -32,7 +32,7 @@ def n_(x): # for gettext TITLE = 'PySol' PACKAGE_URL = 'http://pysolfc.sourceforge.io/' -VERSION_TUPLE = (3, 0, 0) +VERSION_TUPLE = (3, 1, 0) VERSION = '.'.join(map(str, VERSION_TUPLE)) # Tk windowing system (auto set up in init.py)