mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Version 2.20.0 release.
This commit is contained in:
parent
7044c9aacb
commit
0c6aa7e1b8
5 changed files with 50 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue