diff --git a/NEWS.asciidoc b/NEWS.asciidoc index 6391cb30..f7f0e281 100644 --- a/NEWS.asciidoc +++ b/NEWS.asciidoc @@ -1,5 +1,14 @@ [[news]] === News +* _26 February, 2023:_ There is a new stable release +https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-2.20.0/[PySolFC +v2.20.0]. Additionally, there is a new Cardsets release +https://sourceforge.net/projects/pysolfc/files/PySolFC-Cardsets/PySolFC-Cardsets-2.2/[PySolFC-Cardsets v.2.2]. New in this release: +** Over 40 new games, bringing the total to 1,200! +** Memory games can now use any type of cardset, including new Matching type cardsets. +** New options in the Solitaire Wizard. +** Additional documentation for a number of PySol's features. +** Bugfixes and other enhancements. * _11 October, 2022:_ Linux users, PySolFC is now available https://flathub.org/apps/details/io.sourceforge.pysolfc.PySolFC[on Flathub]. * _9 October, 2022:_ There is a new stable release https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-2.18.0/[PySolFC diff --git a/html-src/news.html b/html-src/news.html index 60afe182..3d89200a 100644 --- a/html-src/news.html +++ b/html-src/news.html @@ -1,6 +1,40 @@
26 February, 2023: There is a new stable release +PySolFC +v2.20.0. Additionally, there is a new Cardsets release +PySolFC-Cardsets v.2.2. +New in this release:
++Over 40 new games, bringing the total to 1,200! +
++Memory games can now use any type of cardset, including new Matching type cardsets. +
++New options in the Solitaire Wizard. +
++Additional documentation for a number of PySol's features. +
++Bugfixes and other enhancements. +
+11 October, 2022: Linux users, PySolFC is now available on Flathub.
diff --git a/html-src/report_bug.html b/html-src/report_bug.html index cf5cefa6..87e23d62 100644 --- a/html-src/report_bug.html +++ b/html-src/report_bug.html @@ -1,5 +1,10 @@+Before you report a bug, please verify that you are running +the latest version of PySolFC, and also check the issues +previously reported on GitHub, to ensure that the bug was +not previously reported. +
If you found a bug in PySolFC, the best place to report it is on GitHub. To do so, create an issue at https://github.com/shlomif/PySolFC/issues diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index cb699beb..4f6df1cb 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -558,7 +558,7 @@ class GI: tuple(range(22217, 22219))), ('fc-2.14', tuple(range(811, 827))), ('fc-2.15', tuple(range(827, 855)) + tuple(range(22400, 22407))), - ('dev', tuple(range(855, 897))) + ('fc-2.20', tuple(range(855, 897))) ) # deprecated - the correct way is to or a GI.GT_XXX flag diff --git a/pysollib/settings.py b/pysollib/settings.py index 81cad159..40b9e29d 100644 --- a/pysollib/settings.py +++ b/pysollib/settings.py @@ -32,7 +32,7 @@ PACKAGE = 'PySolFC' TITLE = 'PySol' PACKAGE_URL = 'http://pysolfc.sourceforge.io/' -VERSION_TUPLE = (2, 18, 0) +VERSION_TUPLE = (2, 20, 0) VERSION = '.'.join(map(str, VERSION_TUPLE)) # Tk windowing system (auto set up in init.py)