From 8f2e47cfd188c7d1b9aa1a5cecd47d22af6aa5bc Mon Sep 17 00:00:00 2001 From: Joe R Date: Sun, 11 Jul 2021 13:12:59 -0400 Subject: [PATCH] Set the version to 2.12.0 --- NEWS.asciidoc | 13 +++++++++++++ pysollib/settings.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/NEWS.asciidoc b/NEWS.asciidoc index 76de4b24..a4245800 100644 --- a/NEWS.asciidoc +++ b/NEWS.asciidoc @@ -1,6 +1,19 @@ [[news]] === News +* _11 July, 2021:_ There is a new stable release +https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-2.12.0/[PySolFC +v2.12.0]. New in this release: +** 40 new games! +** Support for using higher resolution cardsets. The high resolution "Neo" +cardset has been added to the Windows Installer package and is available in +https://sourceforge.net/projects/pysolfc/files/PySolFC-Cardsets/PySolFC-Cardsets-2.1PRE/[a preview release of +PySolFC-Cardsets 2.1]. +** Improved organization and categorization of the games list. +** New display options - added option to center the game layout in the window. +** New audio options - can now disable music without disabling sound effects. +** Improved documentation - added rules to a large number of games that were missing them. +** Bugfixes and cleanup. * _22 June, 2020:_ There is a new stable release https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-2.10.0/[PySolFC v2.10.0]. New in this release: diff --git a/pysollib/settings.py b/pysollib/settings.py index 9c27c0d2..7dce9199 100644 --- a/pysollib/settings.py +++ b/pysollib/settings.py @@ -32,7 +32,7 @@ PACKAGE = 'PySolFC' TITLE = 'PySol' PACKAGE_URL = 'http://pysolfc.sourceforge.net/' -VERSION_TUPLE = (2, 10, 0) +VERSION_TUPLE = (2, 12, 0) VERSION = '.'.join(map(str, VERSION_TUPLE)) # Tk windowing system (auto set up in init.py)