From 1e2b3e5545a24cde99efbecb06acfc24306bdfae Mon Sep 17 00:00:00 2001 From: Alexandre Lavigne Date: Wed, 23 Jun 2021 20:08:55 +0200 Subject: [PATCH] Release 1.9.2 --- changelog.txt | 6 ++++++ src/App/mainwindow.h | 1 - src/App/version.h | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/changelog.txt b/changelog.txt index 54d98fe..a6e9d70 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,9 @@ +1.9.2 +- Prevent closing the app without saving current project +- Add ffmpeg as dependency of the installer +- Reformat/clean code +- Fix memory leak when exiting the application + 1.9.1 - Open bitmap/SVG takes one click, no need to click on the frame first - Add doxygen file to generate documentation diff --git a/src/App/mainwindow.h b/src/App/mainwindow.h index e76b721..e4862be 100644 --- a/src/App/mainwindow.h +++ b/src/App/mainwindow.h @@ -109,7 +109,6 @@ class MainWindow : public QMainWindow QMenu *helpMenu; QMenu *viewMenu; QMenu *importMenu; - QMenu *exportMenu; QUndoStack *m_undoStack; const QString FFMPEG = "ffmpeg"; const QString PLUGIN_DIR = "/opt/animationmaker/plugins"; diff --git a/src/App/version.h b/src/App/version.h index 311dcb2..55f6603 100644 --- a/src/App/version.h +++ b/src/App/version.h @@ -3,6 +3,6 @@ #define VERSION_MAJOR 1 #define VERSION_MINOR 9 -#define VERSION_BUILD 1 +#define VERSION_BUILD 2 #endif // VERSION_H