From c7a64129864123ca06817ca8d00d64bbbbbb7248 Mon Sep 17 00:00:00 2001 From: royqh1979 Date: Fri, 19 Nov 2021 08:11:33 +0800 Subject: [PATCH] - fix: executor / problem set options not correctly saved --- NEWS.md | 3 ++- RedPandaIDE/settings.cpp | 3 +++ RedPandaIDE/version.h | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index 60887512..94a1c476 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,7 +1,8 @@ Version 0.9.2 For Dev-C++ 7 Beta - fix: console program that needs input may crash - fix: gutter of the disassembly code control in the cpu info dialog is grayed - - fix: problem set & problem views not correctly hidden when disabled in the general / problem set options + - fix: problem set & problem views not correctly hidden when disabled in the executor / problem set options + - fix: executor / problem set options not correctly saved Version 0.9.1 For Dev-C++ 7 Beta - enhancement: code completion suggestion for "__func__" variable diff --git a/RedPandaIDE/settings.cpp b/RedPandaIDE/settings.cpp index ff5522d7..29adba9e 100644 --- a/RedPandaIDE/settings.cpp +++ b/RedPandaIDE/settings.cpp @@ -2888,6 +2888,9 @@ void Settings::Executor::doSave() saveValue("redirect_input",mRedirectInput); saveValue("input_filename",mInputFilename); //problem set + saveValue("enable_proble_set", mEnableProblemSet); + saveValue("enable_competivie_companion", mEnableCompetitiveCompanion); + saveValue("competitive_companion_port", mCompetivieCompanionPort); } diff --git a/RedPandaIDE/version.h b/RedPandaIDE/version.h index fe8b2949..30938498 100644 --- a/RedPandaIDE/version.h +++ b/RedPandaIDE/version.h @@ -2,6 +2,6 @@ #define VERSION_H #include -#define DEVCPP_VERSION "beta.0.9.1" +#define DEVCPP_VERSION "beta.0.9.2" #endif // VERSION_H