update version to 0.12.3
This commit is contained in:
parent
1fe9be9791
commit
f3ab76d60a
|
@ -6,6 +6,7 @@ This project is the successor of Red Panda Dev-C++ 6.
|
|||
All main features of version 6 have been ported.
|
||||
|
||||
New Features:
|
||||
* Linux version (no official release yet)
|
||||
* Problem Set (run and test program against predefined input / expected output data)
|
||||
* Competitve Companion support ( It's an chrome/firefox extension that can fetch problems from OJ websites)
|
||||
* Memory View for debugging
|
||||
|
@ -17,13 +18,16 @@ UI Improvements:
|
|||
* Redesigned bookmark UI
|
||||
* Better dark theme support
|
||||
* Better editor color scheme support
|
||||
* Full high-dpi support including fonts and icons
|
||||
|
||||
Editing Improvements:
|
||||
* Enhanced auto indent
|
||||
* Enhanced code completion
|
||||
* Better code folding support
|
||||
|
||||
Debuging Improvements:
|
||||
* Better complex value display
|
||||
* Use gdb/mi interface
|
||||
* Enhanced watch
|
||||
|
||||
Code Intellisense Improvements:
|
||||
* Support UTF-8 identifiers
|
||||
|
|
|
@ -221,7 +221,7 @@ void CompilerManager::run(const QString &filename, const QString &arguments, con
|
|||
QString newArguments = QString(" %1 \"%2\" %3")
|
||||
.arg(consoleFlag)
|
||||
.arg(localizePath(filename)).arg(arguments);
|
||||
execRunner = new ExecutableRunner(includeTrailingPathDelimiter(pSettings->dirs().app())+"ConsolePauser.exe",newArguments,workDir);
|
||||
execRunner = new ExecutableRunner(includeTrailingPathDelimiter(pSettings->dirs().appDir())+"ConsolePauser.exe",newArguments,workDir);
|
||||
} else {
|
||||
execRunner = new ExecutableRunner(filename,arguments,workDir);
|
||||
}
|
||||
|
|
|
@ -110,7 +110,7 @@
|
|||
<item>
|
||||
<widget class="QTabWidget" name="settingTabs">
|
||||
<property name="currentIndex">
|
||||
<number>3</number>
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="movable">
|
||||
<bool>false</bool>
|
||||
|
|
|
@ -11,9 +11,6 @@
|
|||
#include <QTextCodec>
|
||||
#include <QtGlobal>
|
||||
#include <QDebug>
|
||||
#ifdef Q_OS_WIN
|
||||
#include <windows.h>
|
||||
#endif
|
||||
#include <QStyleFactory>
|
||||
#include <QDateTime>
|
||||
#include <QColor>
|
||||
|
@ -26,6 +23,9 @@
|
|||
#include "project.h"
|
||||
#include "version.h"
|
||||
#include "compiler/executablerunner.h"
|
||||
#ifdef Q_OS_WIN
|
||||
#include <windows.h>
|
||||
#endif
|
||||
|
||||
const QByteArray GuessTextEncoding(const QByteArray& text){
|
||||
bool allAscii;
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
#define VERSION_H
|
||||
#include <QObject>
|
||||
|
||||
#define DEVCPP_VERSION "beta.0.12.2"
|
||||
#define DEVCPP_VERSION "beta.0.12.3"
|
||||
|
||||
#endif // VERSION_H
|
||||
|
|
Loading…
Reference in New Issue