commit
7b7caecf4f
1
NEWS.md
1
NEWS.md
|
@ -2,6 +2,7 @@ Red Panda C++ Version 0.14.2
|
||||||
- enhancement: file system view mode for project
|
- enhancement: file system view mode for project
|
||||||
- enhancement: remove / rename / create new folder in the files view
|
- enhancement: remove / rename / create new folder in the files view
|
||||||
- fix: crash when there are catch blocks in the upper most scope
|
- fix: crash when there are catch blocks in the upper most scope
|
||||||
|
- fix: can't read project templates when path has non-ascii chars
|
||||||
- change: rename "compile log" panel to "tools output"
|
- change: rename "compile log" panel to "tools output"
|
||||||
- fix: debug panel can't be correctly show/hide
|
- fix: debug panel can't be correctly show/hide
|
||||||
- enhancement: redesign tools output's context menu, add "clear" menu item
|
- enhancement: redesign tools output's context menu, add "clear" menu item
|
||||||
|
|
|
@ -84,7 +84,7 @@ void ProjectTemplate::readTemplateFile(const QString &fileName)
|
||||||
if (QFile(fileName).exists()) {
|
if (QFile(fileName).exists()) {
|
||||||
mFileName = fileName;
|
mFileName = fileName;
|
||||||
mIni = std::make_shared<SimpleIni>();
|
mIni = std::make_shared<SimpleIni>();
|
||||||
if (mIni->LoadFile(toByteArray(mFileName)) != SI_OK) {
|
if (mIni->LoadFile(mFileName.toLocal8Bit()) != SI_OK) {
|
||||||
QMessageBox::critical(pMainWindow,
|
QMessageBox::critical(pMainWindow,
|
||||||
tr("Read failed."),
|
tr("Read failed."),
|
||||||
tr("Can't read template file '%1'.").arg(fileName),
|
tr("Can't read template file '%1'.").arg(fileName),
|
||||||
|
|
Loading…
Reference in New Issue