1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Version 2.18.0.

This commit is contained in:
Joe R 2022-10-07 23:10:51 -04:00
parent 48684d316c
commit 3879a9196b
4 changed files with 49 additions and 1 deletions

View file

@ -15,6 +15,8 @@ Main Authors
* Added the Kivy toolkit
* [Roderik Ploszek](https://github.com/Programator2)
* Fixes and enhancements
* [Joe R.](https://github.com/joeraz)
* Continued PySolFC maintenance and development.
Games contributors
==================

View file

@ -1,5 +1,14 @@
[[news]]
=== News
* _9 October, 2022:_ There is a new stable release
https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-2.18.0/[PySolFC
v2.18.0]. New in this release:
** Advanced search feature - the ability to search for games, cardsets, or table tiles based on many different criteria.
** Complete documentation containing rules for all 1,100+ games.
** Revamped status bar, displaying more info.
** The Find Card feature now supports all types of games.
** Many new display and assist options.
** Bugfixes, code cleanup, etc.
* _10 May, 2022_ There is a new stable release
https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-2.16.0/[PySolFC
v2.16.0]. Anyone upgrading from a version prior to 2.15.0 should read the notes for that version before upgrading. New in this release:

View file

@ -1,6 +1,43 @@
<h1>What's New?</h1>
<ul>
<li>
<p><em>9 October, 2022:</em> There is a new stable release
<a href="https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-2.18.0/">PySolFC
v2.18.0</a>. New in this release:</p>
<ul>
<li>
<p>
Advanced search feature - the ability to search for games, cardsets, or table tiles based on many different criteria.
</p>
</li>
<li>
<p>
Complete documentation containing rules for all 1,100+ games.
</p>
</li>
<li>
<p>
Revamped status bar, displaying more info.
</p>
</li>
<li>
<p>
The Find Card feature now supports all types of games.
</p>
</li>
<li>
<p>
Many new display and assist options.
</p>
</li>
<li>
<p>
Bugfixes, code cleanup, etc.
</p>
</li>
</ul>
</li>
<li>
<p><em>10 May, 2022:</em> There is a new stable release
<a href="https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-2.16.0/">PySolFC
v2.16.0</a>. Anyone upgrading from a version prior to 2.15.0 should read the notes for that

View file

@ -32,7 +32,7 @@ PACKAGE = 'PySolFC'
TITLE = 'PySol'
PACKAGE_URL = 'http://pysolfc.sourceforge.io/'
VERSION_TUPLE = (2, 16, 0)
VERSION_TUPLE = (2, 18, 0)
VERSION = '.'.join(map(str, VERSION_TUPLE))
# Tk windowing system (auto set up in init.py)