- fix: executor / problem set options not correctly saved
This commit is contained in:
parent
f274d7f208
commit
c7a6412986
3
NEWS.md
3
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
|
||||
|
|
|
@ -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);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
#define VERSION_H
|
||||
#include <QObject>
|
||||
|
||||
#define DEVCPP_VERSION "beta.0.9.1"
|
||||
#define DEVCPP_VERSION "beta.0.9.2"
|
||||
|
||||
#endif // VERSION_H
|
||||
|
|
Loading…
Reference in New Issue