mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
2.21.0 release
This commit is contained in:
parent
595f681bd0
commit
9237c30df4
4 changed files with 36 additions and 2 deletions
|
@ -1,5 +1,12 @@
|
|||
[[news]]
|
||||
=== News
|
||||
* _10 July, 2023:_ There is a new beta release
|
||||
https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-2.21.0/[PySolFC
|
||||
v2.21.0]. New in this release:
|
||||
** Ten new games.
|
||||
** Compatibility with Pillow 10.0.
|
||||
** Several new display options.
|
||||
** Other bugfixes and enhancements.
|
||||
* _16 April, 2023:_ There is a new stable release
|
||||
https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-2.20.1/[PySolFC
|
||||
v2.20.1]. New in this release:
|
||||
|
|
|
@ -1,6 +1,33 @@
|
|||
<h1>What's New?</h1>
|
||||
<ul>
|
||||
<li>
|
||||
<p><em>10 July, 2023:</em> There is a new beta release
|
||||
<a href="https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-2.21.0/">PySolFC
|
||||
v2.21.0</a>. New in this release:</p>
|
||||
<ul>
|
||||
<li>
|
||||
<p>
|
||||
Ten new games.
|
||||
</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>
|
||||
Compatibility with Pillow 10.0.
|
||||
</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>
|
||||
Several new display options.
|
||||
</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>
|
||||
Bugfixes and enhancements.
|
||||
</p>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<p><em>16 April, 2023:</em> There is a new stable release
|
||||
<a href="https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-2.20.1/">PySolFC
|
||||
v2.20.1</a>. New in this release:</p>
|
||||
|
|
|
@ -559,7 +559,7 @@ class GI:
|
|||
('fc-2.14', tuple(range(811, 827))),
|
||||
('fc-2.15', tuple(range(827, 855)) + tuple(range(22400, 22407))),
|
||||
('fc-2.20', tuple(range(855, 897))),
|
||||
('dev', tuple(range(897, 900)) + tuple(range(11014, 11017)) +
|
||||
('fc-2.21', tuple(range(897, 900)) + tuple(range(11014, 11017)) +
|
||||
tuple(range(13160, 13163)) + (16682,))
|
||||
)
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ PACKAGE = 'PySolFC'
|
|||
TITLE = 'PySol'
|
||||
PACKAGE_URL = 'http://pysolfc.sourceforge.io/'
|
||||
|
||||
VERSION_TUPLE = (2, 20, 1)
|
||||
VERSION_TUPLE = (2, 21, 0)
|
||||
VERSION = '.'.join(map(str, VERSION_TUPLE))
|
||||
|
||||
# Tk windowing system (auto set up in init.py)
|
||||
|
|
Loading…
Add table
Reference in a new issue