Skip to content

Commit

Permalink
Version 2.20.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
joeraz committed Feb 27, 2023
1 parent 7044c9a commit 0c6aa7e
Show file tree
Hide file tree
Showing 5 changed files with 50 additions and 2 deletions.
9 changes: 9 additions & 0 deletions NEWS.asciidoc
Original file line number Diff line number Diff line change
@@ -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
Expand Down
34 changes: 34 additions & 0 deletions html-src/news.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,40 @@
<h1>What's New?</h1>
<ul>
<li>
<p><em>26 February, 2023:</em> There is a new stable release
<a href="https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-2.20.0/">PySolFC
v2.20.0</a>. Additionally, there is a new Cardsets release
<a href="https://sourceforge.net/projects/pysolfc/files/PySolFC-Cardsets/PySolFC-Cardsets-2.2/">PySolFC-Cardsets v.2.2</a>.
New in this release:</p>
<ul>
<li>
<p>
Over 40 new games, bringing the total to 1,200!
</p>
</li>
<li>
<p>
Memory games can now use any type of cardset, including new Matching type cardsets.
</p>
</li>
<li>
<p>
New options in the Solitaire Wizard.
</p>
</li>
<li>
<p>
Additional documentation for a number of PySol's features.
</p>
</li>
<li>
<p>
Bugfixes and other enhancements.
</p>
</li>
</ul>
</li>
<li>
<p>
<em>11 October, 2022:</em> Linux users, PySolFC is now available <a href="https://flathub.org/apps/details/io.sourceforge.pysolfc.PySolFC">on Flathub</a>.
</p>
Expand Down
5 changes: 5 additions & 0 deletions html-src/report_bug.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<h1>Report a Bug</h1>
<p>
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.
<p>
If you found a bug in PySolFC, the best place to report it
is on GitHub. To do so, create an issue at
<a href="https://github.com/shlomif/PySolFC/issues">https://github.com/shlomif/PySolFC/issues</a>
Expand Down
2 changes: 1 addition & 1 deletion pysollib/gamedb.py
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ def _callback(gi, gt=game_type):
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
Expand Down
2 changes: 1 addition & 1 deletion pysollib/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def n_(x): # for gettext
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)
Expand Down

0 comments on commit 0c6aa7e

Please sign in to comment.