From 5b94fbf1eca5ecf5682ca0b6a9dac0371ee5e1eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gunter=20K=C3=B6nigsmann?= Date: Sun, 18 Aug 2024 09:26:45 +0200 Subject: [PATCH] Let's prepare for a new release befor Viktor releases Maxima. --- CMakeLists.txt | 2 +- NEWS.md | 3 ++- data/io.github.wxmaxima_developers.wxMaxima.appdata.xml | 7 +++++++ snap/snapcraft.yaml | 2 +- src/dialogs/LoggingMessageDialog.h | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 79740126ea..209e2bb96e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ endif() set(VERSION_MAJOR 24) -set(VERSION_MINOR 05) +set(VERSION_MINOR 08) set(VERSION_PATCHLEVEL 0) set(VERSION_SUFFIX "DevelopmentSnapshot") string(COMPARE EQUAL "${VERSION_SUFFIX}" "" no_version_suffix) diff --git a/NEWS.md b/NEWS.md index bca770948d..38cfaaca1d 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# Current +# 24.08.0 - An advanced plotting tutorial - Try harder to kill maxima on closing it @@ -23,6 +23,7 @@ - Size calculations for numbers that were broken into lines failed the first time (#1931) - On MS Windows one can now choose between Gnuplot and wGnuplot (#1934) +- Fixed the error message about dual manifest files on MSVC # 24.05.0 diff --git a/data/io.github.wxmaxima_developers.wxMaxima.appdata.xml b/data/io.github.wxmaxima_developers.wxMaxima.appdata.xml index 26b679ff83..ec4e617811 100644 --- a/data/io.github.wxmaxima_developers.wxMaxima.appdata.xml +++ b/data/io.github.wxmaxima_developers.wxMaxima.appdata.xml @@ -57,6 +57,13 @@ mild + + +

+ Many bug fixes. +

+
+

diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index 6b735166b5..e82c86a01e 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,5 +1,5 @@ name: wxmaxima -version: 24.05.0-0 +version: 24.08.0-0 summary: A nightly build of wxMaxima, a gui for Maxima, a full-featured CAS. description: wxMaxima is a quite full-featured graphical user interface for Maxima. confinement: strict diff --git a/src/dialogs/LoggingMessageDialog.h b/src/dialogs/LoggingMessageDialog.h index 9f2b8382c5..2c201875d2 100644 --- a/src/dialogs/LoggingMessageDialog.h +++ b/src/dialogs/LoggingMessageDialog.h @@ -38,7 +38,7 @@ class LoggingMessageDialog : public wxMessageDialog { public: LoggingMessageDialog(wxWindow *parent, const wxString &message, - const wxString &caption = wxMessageBoxCaptionStr, + wxString caption = wxMessageBoxCaptionStr, long style = wxOK|wxCENTRE, const wxPoint &pos = wxDefaultPosition): wxMessageDialog (parent, message, caption, style, pos) {