diff --git a/NEWS.asciidoc b/NEWS.asciidoc index 3c6b32b1..c308b363 100644 --- a/NEWS.asciidoc +++ b/NEWS.asciidoc @@ -1,5 +1,11 @@ [[news]] === News +* _11 January, 2025:_ There is a new stable release +https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-3.2.0/[PySolFC +v3.2.0]. New in this release: +** New fullscreen mode, accessible by pressing F11. +** Easy option to clear advanced search options. +** Lots of bugfixes and enhancements. * _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: diff --git a/html-src/news.html b/html-src/news.html index 64c74f69..77cff85b 100644 --- a/html-src/news.html +++ b/html-src/news.html @@ -1,6 +1,28 @@
11 January, 2025: There is a new stable release +PySolFC +v3.2.0. New in this release:
++New fullscreen mode, accessible by pressing F11. +
++Easy option to clear advanced search options. +
++Lots of bugfixes and enhancements. +
+19 October, 2024: There is a new stable release PySolFC v3.1.0. New in this release:
diff --git a/locale/de/LC_MESSAGES/pysol.mo b/locale/de/LC_MESSAGES/pysol.mo index 34c31da5..2361be41 100644 Binary files a/locale/de/LC_MESSAGES/pysol.mo and b/locale/de/LC_MESSAGES/pysol.mo differ diff --git a/locale/fr/LC_MESSAGES/pysol.mo b/locale/fr/LC_MESSAGES/pysol.mo index 6b269da7..c5d7880d 100644 Binary files a/locale/fr/LC_MESSAGES/pysol.mo and b/locale/fr/LC_MESSAGES/pysol.mo differ diff --git a/locale/it/LC_MESSAGES/pysol.mo b/locale/it/LC_MESSAGES/pysol.mo index a987222c..2962319e 100644 Binary files a/locale/it/LC_MESSAGES/pysol.mo and b/locale/it/LC_MESSAGES/pysol.mo differ diff --git a/locale/pl/LC_MESSAGES/pysol.mo b/locale/pl/LC_MESSAGES/pysol.mo index 3c3f7686..3c9f0bc7 100644 Binary files a/locale/pl/LC_MESSAGES/pysol.mo and b/locale/pl/LC_MESSAGES/pysol.mo differ diff --git a/locale/pt_BR/LC_MESSAGES/pysol.mo b/locale/pt_BR/LC_MESSAGES/pysol.mo index 2297e4d0..e0a01683 100644 Binary files a/locale/pt_BR/LC_MESSAGES/pysol.mo and b/locale/pt_BR/LC_MESSAGES/pysol.mo differ diff --git a/locale/ru/LC_MESSAGES/pysol.mo b/locale/ru/LC_MESSAGES/pysol.mo index ec2e65b9..3d33b27a 100644 Binary files a/locale/ru/LC_MESSAGES/pysol.mo and b/locale/ru/LC_MESSAGES/pysol.mo differ diff --git a/pysollib/settings.py b/pysollib/settings.py index 454df916..88b53d36 100644 --- a/pysollib/settings.py +++ b/pysollib/settings.py @@ -32,7 +32,7 @@ PACKAGE = 'PySolFC' TITLE = 'PySol' PACKAGE_URL = 'http://pysolfc.sourceforge.io/' -VERSION_TUPLE = (3, 1, 0) +VERSION_TUPLE = (3, 2, 0) VERSION = '.'.join(map(str, VERSION_TUPLE)) # Tk windowing system (auto set up in init.py)