Skip to content

Commit 0c6aa7e

Browse files
committed
Version 2.20.0 release.
1 parent 7044c9a commit 0c6aa7e

File tree

5 files changed

+50
-2
lines changed

5 files changed

+50
-2
lines changed

NEWS.asciidoc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
[[news]]
22
=== News
3+
* _26 February, 2023:_ There is a new stable release
4+
https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-2.20.0/[PySolFC
5+
v2.20.0]. Additionally, there is a new Cardsets release
6+
https://sourceforge.net/projects/pysolfc/files/PySolFC-Cardsets/PySolFC-Cardsets-2.2/[PySolFC-Cardsets v.2.2]. New in this release:
7+
** Over 40 new games, bringing the total to 1,200!
8+
** Memory games can now use any type of cardset, including new Matching type cardsets.
9+
** New options in the Solitaire Wizard.
10+
** Additional documentation for a number of PySol's features.
11+
** Bugfixes and other enhancements.
312
* _11 October, 2022:_ Linux users, PySolFC is now available https://flathub.org/apps/details/io.sourceforge.pysolfc.PySolFC[on Flathub].
413
* _9 October, 2022:_ There is a new stable release
514
https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-2.18.0/[PySolFC

html-src/news.html

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,40 @@
11
<h1>What's New?</h1>
22
<ul>
33
<li>
4+
<p><em>26 February, 2023:</em> There is a new stable release
5+
<a href="https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-2.20.0/">PySolFC
6+
v2.20.0</a>. Additionally, there is a new Cardsets release
7+
<a href="https://sourceforge.net/projects/pysolfc/files/PySolFC-Cardsets/PySolFC-Cardsets-2.2/">PySolFC-Cardsets v.2.2</a>.
8+
New in this release:</p>
9+
<ul>
10+
<li>
11+
<p>
12+
Over 40 new games, bringing the total to 1,200!
13+
</p>
14+
</li>
15+
<li>
16+
<p>
17+
Memory games can now use any type of cardset, including new Matching type cardsets.
18+
</p>
19+
</li>
20+
<li>
21+
<p>
22+
New options in the Solitaire Wizard.
23+
</p>
24+
</li>
25+
<li>
26+
<p>
27+
Additional documentation for a number of PySol's features.
28+
</p>
29+
</li>
30+
<li>
31+
<p>
32+
Bugfixes and other enhancements.
33+
</p>
34+
</li>
35+
</ul>
36+
</li>
37+
<li>
438
<p>
539
<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>.
640
</p>

html-src/report_bug.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
<h1>Report a Bug</h1>
22
<p>
3+
Before you report a bug, please verify that you are running
4+
the latest version of PySolFC, and also check the issues
5+
previously reported on GitHub, to ensure that the bug was
6+
not previously reported.
7+
<p>
38
If you found a bug in PySolFC, the best place to report it
49
is on GitHub. To do so, create an issue at
510
<a href="https://github.com/shlomif/PySolFC/issues">https://github.com/shlomif/PySolFC/issues</a>

pysollib/gamedb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ def _callback(gi, gt=game_type):
558558
tuple(range(22217, 22219))),
559559
('fc-2.14', tuple(range(811, 827))),
560560
('fc-2.15', tuple(range(827, 855)) + tuple(range(22400, 22407))),
561-
('dev', tuple(range(855, 897)))
561+
('fc-2.20', tuple(range(855, 897)))
562562
)
563563

564564
# deprecated - the correct way is to or a GI.GT_XXX flag

pysollib/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def n_(x): # for gettext
3232
TITLE = 'PySol'
3333
PACKAGE_URL = 'http://pysolfc.sourceforge.io/'
3434

35-
VERSION_TUPLE = (2, 18, 0)
35+
VERSION_TUPLE = (2, 20, 0)
3636
VERSION = '.'.join(map(str, VERSION_TUPLE))
3737

3838
# Tk windowing system (auto set up in init.py)

0 commit comments

Comments
 (0)