mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
3.1 release
This commit is contained in:
parent
8c58941d23
commit
dab3eea6cb
4 changed files with 36 additions and 2 deletions
|
@ -1,5 +1,12 @@
|
|||
[[news]]
|
||||
=== News
|
||||
* _19 October, 2024:_ There is a new stable release
|
||||
https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-3.1.0/[PySolFC
|
||||
v3.1.0]. New in this release:
|
||||
** Ten new games.
|
||||
** Cleanup of duplicate images to reduce package size.
|
||||
** Some extra cardset/table tile filter options.
|
||||
** Many enhancements, bugfixes, etc.
|
||||
* _31 March, 2024:_ There is a new stable release
|
||||
https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-3.0.0/[PySolFC
|
||||
v3.0.0] - the biggest release in over 15 years. Additionally, there is a new Cardsets release
|
||||
|
|
|
@ -1,6 +1,33 @@
|
|||
<h1>What's New?</h1>
|
||||
<ul>
|
||||
<li>
|
||||
<p><em>19 October, 2024:</em> There is a new stable release
|
||||
<a href="https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-3.1.0/">PySolFC
|
||||
v3.1.0</a>. New in this release:</p>
|
||||
<ul>
|
||||
<li>
|
||||
<p>
|
||||
Ten new games.
|
||||
</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>
|
||||
Cleanup of duplicate images to reduce package size.
|
||||
</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>
|
||||
Some extra cardset/table tile filter options.
|
||||
</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>
|
||||
Many enhancements, bugfixes, etc.
|
||||
</p>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<p><em>31 March, 2024:</em> There is a new stable release
|
||||
<a href="https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-3.0.0/">PySolFC
|
||||
v3.0.0</a> - the biggest release in over 15 years. Additionally, there is a new Cardsets release
|
||||
|
|
|
@ -594,7 +594,7 @@ class GI:
|
|||
tuple(range(13168, 13170)) + tuple(range(18000, 18005)) +
|
||||
tuple(range(19000, 19012)) + tuple(range(22303, 22311)) +
|
||||
tuple(range(22353, 22361))),
|
||||
('dev', tuple(range(961, 971))),
|
||||
('fc-3.1', tuple(range(961, 971))),
|
||||
)
|
||||
|
||||
# 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 = (3, 0, 0)
|
||||
VERSION_TUPLE = (3, 1, 0)
|
||||
VERSION = '.'.join(map(str, VERSION_TUPLE))
|
||||
|
||||
# Tk windowing system (auto set up in init.py)
|
||||
|
|
Loading…
Add table
Reference in a new issue