update installer script
This commit is contained in:
parent
34fac3eae1
commit
ae19edd4bc
7
NEWS.md
7
NEWS.md
|
@ -43,10 +43,8 @@ Red Panda C++ Version 2.27
|
||||||
- fix: Function tips contains functions that not in the scope.
|
- fix: Function tips contains functions that not in the scope.
|
||||||
- fix: Hint for bold text (<b></b>) are not correctly handled in the function tips.
|
- fix: Hint for bold text (<b></b>) are not correctly handled in the function tips.
|
||||||
- enhancement: Improve lldb-mi compatibility.
|
- enhancement: Improve lldb-mi compatibility.
|
||||||
- fix: Full scope typed variables in lambda expressions is not correctly parsed.
|
|
||||||
- fix: Failed to evaluate expressions while debugging, if the expression has spaces in it.
|
- fix: Failed to evaluate expressions while debugging, if the expression has spaces in it.
|
||||||
- fix: When debugging, can't watch expressions that has spaces in it.
|
- fix: When debugging, can't watch expressions that has spaces in it.
|
||||||
- fix: Shortcuts in non-editor panels conficts with the editor.
|
|
||||||
- enhancement: Font list in the options / editor / font panel( by CyanoHao ).
|
- enhancement: Font list in the options / editor / font panel( by CyanoHao ).
|
||||||
- enhancement: Text are vertically center aligned in lines( by CyanoHao ).
|
- enhancement: Text are vertically center aligned in lines( by CyanoHao ).
|
||||||
- fix: In the debugger console, Auto-wrapped lines can't be correctly selected.
|
- fix: In the debugger console, Auto-wrapped lines can't be correctly selected.
|
||||||
|
@ -83,7 +81,8 @@ Red Panda C++ Version 2.27
|
||||||
- fix: Function name not correctly found if it and the '(' is not in one line;
|
- fix: Function name not correctly found if it and the '(' is not in one line;
|
||||||
- fix: Register names in the cpu info are not in correct order.
|
- fix: Register names in the cpu info are not in correct order.
|
||||||
- enhancement: Auto type induction for new / temp class object.
|
- enhancement: Auto type induction for new / temp class object.
|
||||||
|
- Enhancement: Vertically scroll by pixel.
|
||||||
|
|
||||||
Red Panda C++ Version 2.26
|
Red Panda C++ Version 2.26
|
||||||
- enhancement: Code suggestion for embedded std::vectors.
|
- enhancement: Code suggestion for embedded std::vectors.
|
||||||
- change: Use ctrl+mouseMove event to highlight jumpable symbols (instead of ctrl+tooltip).
|
- change: Use ctrl+mouseMove event to highlight jumpable symbols (instead of ctrl+tooltip).
|
||||||
|
@ -136,8 +135,6 @@ Red Panda C++ Version 2.26
|
||||||
- Enhancement: New option for compiler set "Don't localize gcc output messages"
|
- Enhancement: New option for compiler set "Don't localize gcc output messages"
|
||||||
- Enhancement: Optimization for drawing scrollbars.
|
- Enhancement: Optimization for drawing scrollbars.
|
||||||
- Enhancement: Issue #213 Expands macro when finding function tips.
|
- Enhancement: Issue #213 Expands macro when finding function tips.
|
||||||
- Enhancement: Vertically scroll by pixel.
|
|
||||||
|
|
||||||
|
|
||||||
Red Panda C++ Version 2.25
|
Red Panda C++ Version 2.25
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
####################################################################
|
####################################################################
|
||||||
# Startup
|
# Startup
|
||||||
|
SetFont "Segoe UI" 11
|
||||||
!include "config-clang.nsh"
|
!include "config-clang.nsh"
|
||||||
!define COMPILERFOLDER "Clang64"
|
!define COMPILERFOLDER "Clang64"
|
||||||
!define FINALNAME "RedPanda.C++.${DEVCPP_VERSION}.win64.${COMPILERNAME}.Setup.exe"
|
!define FINALNAME "RedPanda.C++.${DEVCPP_VERSION}.win64.${COMPILERNAME}.Setup.exe"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
####################################################################
|
####################################################################
|
||||||
# Startup
|
# Startup
|
||||||
|
SetFont "Segoe UI" 11
|
||||||
Unicode True
|
Unicode True
|
||||||
!include "config32.nsh"
|
!include "config32.nsh"
|
||||||
!define FINALNAME "RedPanda.C++.${DEVCPP_VERSION}.win32.No.Compiler.Setup.exe"
|
!define FINALNAME "RedPanda.C++.${DEVCPP_VERSION}.win32.No.Compiler.Setup.exe"
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
####################################################################
|
####################################################################
|
||||||
# Startup
|
# Startup
|
||||||
|
SetFont "Segoe UI" 11
|
||||||
Unicode True
|
Unicode True
|
||||||
!include "config32.nsh"
|
!include "config32.nsh"
|
||||||
!define COMPILERFOLDER "MinGW32"
|
!define COMPILERFOLDER "MinGW32"
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
####################################################################
|
####################################################################
|
||||||
# Startup
|
# Startup
|
||||||
|
SetFont "Segoe UI" 11
|
||||||
Unicode True
|
Unicode True
|
||||||
!include "config.nsh"
|
!include "config.nsh"
|
||||||
!define FINALNAME "RedPanda.C++.${DEVCPP_VERSION}.win64.No.Compiler.Setup.exe"
|
!define FINALNAME "RedPanda.C++.${DEVCPP_VERSION}.win64.No.Compiler.Setup.exe"
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
####################################################################
|
####################################################################
|
||||||
# Startup
|
# Startup
|
||||||
|
SetFont "Segoe UI" 11
|
||||||
Unicode True
|
Unicode True
|
||||||
!include "config.nsh"
|
!include "config.nsh"
|
||||||
!define COMPILERFOLDER "MinGW64"
|
!define COMPILERFOLDER "MinGW64"
|
||||||
|
|
Loading…
Reference in New Issue