Skip to content

Commit

Permalink
3.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
joeraz committed Oct 19, 2024
1 parent 8c58941 commit dab3eea
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 2 deletions.
7 changes: 7 additions & 0 deletions NEWS.asciidoc
Original file line number Diff line number Diff line change
@@ -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
Expand Down
27 changes: 27 additions & 0 deletions html-src/news.html
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion pysollib/gamedb.py
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ def _callback(gi, gt=game_type):
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
Expand Down
2 changes: 1 addition & 1 deletion pysollib/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def n_(x): # for gettext
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)
Expand Down

0 comments on commit dab3eea

Please sign in to comment.