diff --git a/CHANGELOG.md b/CHANGELOG.md index 9843518..d29e92c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Columns++ for Notepad++ -- Pre-releases +## Version 0.5.1-alpha -- May 27th, 2023 + +* Corrected an error that caused numeric alignment to be ignored when skip unmatched lines was checked in the dialog for the **Calculate** command. +* Fixed a minor error in the help file. +* Fixed incorrect GPL version (2 instead of 3) in the version info block. + ## Version 0.5-alpha -- May 19th, 2023 * Added the **Calculate** command. diff --git a/src/ColumnsPlusPlus.rc b/src/ColumnsPlusPlus.rc index 4c5b51f..9587479 100644 Binary files a/src/ColumnsPlusPlus.rc and b/src/ColumnsPlusPlus.rc differ diff --git a/src/Numeric.cpp b/src/Numeric.cpp index 58a7f16..1467a90 100644 --- a/src/Numeric.cpp +++ b/src/Numeric.cpp @@ -943,6 +943,7 @@ void ColumnsPlusPlusData::calculate() { if (calc.skipUnmatched) { history.skip(); textResults.push_back(""); + canAlign.push_back(false); continue; } exMatch = 0;