github royqh1979/RedPanda-CPP 2.18
Red Panda C++ 2.18

latest releases: v3.1, v3.0.1, v3.0-1...
18 months ago

Red Panda C++ Version 2.18

  • fix: macos icon size overgrown (by RigoLigo).
  • enhancement: Code completion for embedded stl containers.
  • enhancement: Slightly speed up code parsing.
  • enhancement: Sort header completion infos by suffix-trimmed filename.
  • fix: Code completion info for stl::map/std::unordered_map is not correct.
  • enhancement: Warn user and stop compile if project has missing files.
  • enhancement: Warn user when exit and save settings failed.
  • change: Remove compiler set options that's rarely used.
  • enhancement: Add option in the compiler set settings, to generate syntax error for large stack objects. (Enable for Debug settings by default)
  • enhancement: Add option in the compiler set settings, to generate protection code for stack smashing attack. (Enable for Debug settings by default)
  • enhancement: Add option in the compiler set settings, to enable address sanitizer. Not available in windows.(Enable for Debug settings by default)
  • fix: The comboxbox to input search keyword in the search dialog is case insensitive.
  • fix: The comboxbox to input replace text in the search dialog is case insensitive.
  • fix: The comboxbox to input search keyword in the search in files dialog is case insensitive.
  • fix: The comboxbox to input address expression in the debug panel's memory view is case insensitive.
  • fix: The comboxbox to input evaluation expression in the debug panel is case insensitive.
  • fix: The comboxbox to input replace text in the search panel is case insensitive.
  • fix: None initialized std::vector is not correctly displayed in the gdb of the gcc distributed with redpanda-c++ (Windows 64bit).
  • fix: Don't show completion info when input parameters for function definitions.
  • fix: Don't show function info tips when typing class variable definitions.
  • enhancement: Add option in the debug settings, to limit the length of the ouput generated by gdb for arrays.
  • enhancement: Show shortcut info in toolbar's tooltip.
  • change: Use F11 as the shortcut for "Run". (It's the old shortcut for "Compile&Run")

Red Panda C++ Version 2.17

  • enhancement: Add X86_64 AVX/AVX instruction descriptions to asm syntaxer.
  • enhancement: Update x86 Assembly manual link to the newest website.
  • enhancement: Add "New Text File" in the File menu
  • enhancement: Add "address" in the memory view's mouse tip.
  • enhancement: Show mousetip for numbers in the GNU assembly file.
  • enhancement: Open offline gnu as/x86 assembly manual if exists.
  • fix: Hex number with 'f' in not is not correctly colored.
  • fix: After project's default encoding is changed in the project options dialog, all project files' encoding are wrongly setted to the new encoding.(They should be "Project default")
  • enhancement: Make project's default encoding setting in the project options dialog more user friendly.
  • fix: In project options dialog's file page, Project's default encoding name is not updated when it's changed.
  • enhancement: Improve the compatibility with Dev-C++ for project configuations saved by Redpanda-C++.
  • enhancement: Syntax color support for binaray integer literals.
  • enhancement: Syntax color support for suffix in integer/float literals.
  • fix: Cpu info window is auto openned, when debug using gdb-server.
  • enhancement: Shift+Up in the first line will expand selection to the beginning of the line.
  • enhancement: Shift+Down in the last line will expand selection to the end of the line.
  • enhancement: If no selection, Ctrl+C (Copy) auto selects the current line and put the cursor to the beginning.
  • fix: Chinese characters in the source code is not correctly displayed in the CPU info window.
  • fix: Can't undo & save after copy by drag with mouse.
  • fix: '::' is not correctly handled when skip to next ':' in the parser.
  • fix: '::' is not correctly handled when parsing class definitions.
  • enhancement: Don't show operator overloading functions in the complete suggestions
  • enhancement: Correctly hanlde operator overloading functions like "operator ClassA"

Red Panda C++ Version 2.16

  • fix: Project files that not in the project folder is not correctly handled in makefile.
  • fix: Can't debug project when project is saved after it's compiled.
  • fix: Icons for buttons in the cpu info dialog is not correctly set.
  • fix: Can't locate the corresponding line in the generated asm file under linux.
  • enhancement: Add cfi directives for asm syntaxer in linux.
  • change: Editor option "Scroll past end of line" default to false.
  • emhancement: Improve display of disassembled codes in the cpu info dialog.
  • fix: Can't correctly parse function pointer var definition.
  • enhancement: Improve support for function pointer typedefs.
  • enhancement: Improve support for function pointer vars.
  • enhancement: When first display two editor panes, auto make them the same width
  • change: Don't rebuild the whole project when run/debug, if only contents of project unit file is modified.
  • fix: rebuild may not work, if project's parallel build option is enabled.
  • enhancement: Add "Close window" and "Move to other view" in the "Window" menu
  • enhancement: Auto open CPU info dialog, if the program in debug is stopped at a position that have no source file.
  • enhancement: "add watchpoint" when debug. It's hitted when the watch variable is modified, or it's out of scope.
  • enhancement: Switch current call stack frame in the CPU info dialog
  • fix: Shouldn't try evaluate value of the selection in the cpu info dialog.
  • enhancement: Show oct/bin/bin value in the memory view's tooltip.
  • fix: Hex float point literal is not correctly colored.
  • fix: Problem's memory limit unit can't be correctly saved.

Red Panda C++ Version 2.15

  • fix: Static class members is not correctly recognized as static.
  • fix: Function with reference type return value is not correctly parsed.
  • enhancement: Add description tooltips for x86 registers in the cpu info dialog.
  • fix: Search dialog shouldn't have "prompt when replace".
  • change: Default value for the debugger debugger panel "memory view's columns" is changed from 8 to 16.
  • change: Default value for the debugger debugger panel "memory view's rows" is changed from 8 to 16.
  • enhancement: Display hex value as ascii chars in the debugger panel memory view tab.
  • fix: Word on the last line's end can't be searched.
  • enhancement: Auto close other search/replace dialogs when start to search/replace.
  • change: Remove "prompt when replace" in the replace.
  • fix: Search/replace with regex is not correctly handled.
  • enhancement: Show descriptions mouse tip for assebmly instructions. (editor / cpu info dialog)
  • fix: When completing resigter names, an extra '%' is wrongly added.
  • enhancement: Syntax check for assembly files.
  • enhancement: Add "Languages" page group in the options dialog.
  • enhancement: Add "ASM Generation" page in the options dialog.
  • change: Move "Custom C/C++ keywords" from group "Editor" to "Lanauges" in the options dialog.
  • change: Rename "Folder" page to "Folder / Reset default settings" in the options dialog.
  • enhancement: Generate asm with/without SEH directives.
  • enhancement: Generate asm using intel style/att style.
  • enhancement: make description for jump/cmov/setb instructions more explicit. (used for signed or unsigned)
  • fix: Lead and end spaces in search/replace text is wrongly trimmed.
  • change: Merge search and replace to one dialog.
  • fix: Search dialog's "Match whole word" option doesn't work with "Use Regular expresion".
  • fix:Search dialog's "Close after search" option doesn't work.
  • change: Fill the search dialog with the current selection if it's available.

Red Panda C++ Version 2.14

  • change: Remove all breakpoints of the current non-project file, when it is closed.
  • fix: Enum value defines is not correctly parsed.
  • enhancement: Use differenct source file for each language in project templates
  • fix: Ctrl+click is too sensitive.
  • enhancement: Check and remove all non-exist breakpoints before debug a project
  • change: Remove nasm support
  • change: Don't stop debug when breakpoint can't be set
  • fix: "Generate assembly" menu item is wrongly enabled for new GNU assembly files
  • enhancement: New file templates for C / C++ / GAS files
  • enhancement: Keep project compile warning & error infos in the issues table, before project file is edited.

Red Panda C++ Version 2.13

  • fix: Only C/C++/GAS files can set breakpoints.
  • Enhancement: Don't show breakpoints/watch related menuitems in context menu for non-C/C++/GAS files.
  • Enhancement: Disable reformat code for non-C/C++ files.
  • Enhancement: Support C11 anonymous struct/union
  • fix: Can't debug when debug a file while other file has breakpoints
  • change: Don't save breakpoints for non-project files
  • Enhancement: Correctly init panel sizes when first run.

Red Panda C++ Version 2.12

  • fix: Can't correctly load project's custom compile options, if it contains more than one line contents.
  • fix: Crash when create or open txt files in project.
  • enhancement: Code folding for #if/#endif
  • enhancement: When folding "if", don't fold "else";
  • fix: Confirm if recompile, when start to debug and project files has modifications.
  • fix: Crash when debug project that has nasm files.
  • enhancement: Generate debug info for nasm files in Linux/MacOS.
  • enhancement: Compile/Run/Debug GAS source files.
  • enhancement: Compile/Debug GAS source files in project.
  • enhancement: Keyword completion for asm/GAS files.
  • enhancement: If GAS source file has "_start" label, compile it with "-nostartfiles".
  • fix: New non-saved filenames is wrongly saved in the last openfiles list.
  • fix: File is parsed before editor is fully created.
  • enhancement: New GAS File in the File Menu
  • change: rename "New File" to "New C/C++ File"
  • change: The default disassemble style of CPU Dialog is "AT&T" now.
  • fix: Can't compile files with chinese characters in filenames using winlibs mingw gcc
  • fix: If current editor is empty, parser will parse the file's content on the disk instead from the editor.
  • fix: Can't show completion when cursor is after "char["
  • change: Don't confirm rebuild/recompile when run/debug.
  • fix: Can't parse enum values.
  • fix: Can't correctly show enum values in the class browser.
  • fix: Can't correctly create project, if template's encoding setting is not valid.
  • enhancement: New "embed assembly" template.
  • enhancement: New "Hello GAS" and "GAS and C" templates for linux and win64.
  • fix: Wrong selection position after delete in column mode.
  • enhancement: Syntax highlight and basic code completion for lua.
  • enhancement: Basic code completion for xmake.lua.
  • fix: Parser not correctly released if save a c file to non-c file.
  • enhancement: Improve auto indent for embedding no-brace statements like for-for-if.
  • enhancement: Toggle comment for asm/makefile/lua files.
  • enhancement: Delay for tooltips.
  • enhancement: "Tool tips delay" option in Options/editor/Tooltips
  • change: Remove "Compile & Run" menu item. It's replaced by "Run".
  • enhancement: Show "..." instead of "...}" when folding #if/#endif
  • fix: Correctly handle high-precision mouse wheel / touchpad in editors.
  • enhancement: Greatly reduce time to open/edit big files.
  • enhancement: Reduce flicker when editing big files.
  • enhancement: If executable doesn't have symbol table, inform user and stop.
  • enhancement: If breakpoint is setted but executable doesn't have debug info ,inform user and stop.
  • enhancement: If current compiler set has "strip addition infos(-s)" enabled, inform user and stop.
  • enhancement: Auto create project custom executable folder if not existing.

Red Panda C++ Version 2.11

  • fix: Can't correctly handle definitions for "operator,"
  • enhancement: Auto suggest keyword "operator" when define functions.
  • enhancement: Differentiate class and constructors in syntax color and jupming to declarations.
  • enhancement: Improve parsing for operator overloading.
  • fix: Parser can't correctly differentiate function and var initialization.
  • fix: Respect encoding "Project default" when search/find occurrencies/open project units.
  • enhancement: Show progress dialog when search/find occurrencies in large projects.
  • enhancement: Improve auto indent.
  • enhancement: Change the way to calculate execution time.
  • enhancement: Auto reload openned project files that use "Project Default" as the encoding, when the project encoding setting is changed in the project options dialog.
  • fix: Correctly handle files whose name contains spaces in the generated makefile.
  • fix: Correctly handle custom obj folder in the generated makefile.
  • enhancement: Support compile asm files using nasm in the project.
  • fix: Project parser should not parse non-c/cpp files.
  • enhancement: Add "assembler" tab in the project options dialog's custom compiler parameters.
  • enhancement: Auto find nasm when detecting new compiler sets/adding gcc compiler sets.
  • fix: preprocessors is not correctly suggested.
  • fix: javadoc-style docstring is not correctly suggested
  • enhancement: Better syntax color for asm files.
  • enhancement: Add nasm.exe in the gcc distributed with RedPanda-CPP
  • enhancement: Add assembly templates

Don't miss a new RedPanda-CPP release

NewReleases is sending notifications on new releases.