| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| flamerobin_26.8.8_amd64.snap | 2026-08-23 | 3.0 MB | |
| FlameRobin-26.8.8-x64.msi | 2026-08-23 | 16.6 MB | |
| flamerobin-portable-26.8.8-x64.zip | 2026-08-23 | 21.1 MB | |
| FlameRobin-26.8.8-x86.msi | 2026-08-23 | 15.9 MB | |
| flamerobin-portable-26.8.8-x86.zip | 2026-08-23 | 20.1 MB | |
| flamerobin-26.8.8.deb | 2026-08-23 | 31.2 MB | |
| flamerobin-26.8.8.flatpak | 2026-08-23 | 15.2 MB | |
| flamerobin-macos-26.8.8.zip | 2026-08-23 | 7.5 MB | |
| README.md | 2026-08-23 | 2.1 kB | |
| v26.8.8 source code.tar.gz | 2026-08-23 | 1.4 MB | |
| v26.8.8 source code.zip | 2026-08-23 | 1.9 MB | |
| Totals: 11 Items | 133.8 MB | 2 | |
FlameRobin 26.8.8 Release Notes
FlameRobin v26.8.8 brings comprehensive locale-aware numeric parsing improvements, resolving issues with decimal commas, decimal points, and thousand grouping across data grids and parameter input dialogs.
Highlights & Key Improvements
Decimal Point vs Decimal Comma & Thousand Grouping Input Error Fix (#697)
- Universal Numeric Normalizer: Implemented
normalizeNumericInput()inStringUtilsto cleanly handle input differences between regional locales (such as Hungarian, German, French, and other European locales) and standard C/US conventions. - Decimal Comma and Decimal Point: Accepts both
3,14(comma from European locales and numpads) and3.14(dot) across all numeric fields. - Thousand Grouping Support: Strips thousand grouping characters automatically prior to conversion:
- Space grouping (e.g.
123 456,78$\rightarrow$123456.78or1 234 567.89$\rightarrow$1234567.89) - European dot grouping (e.g.
1.234.567,89$\rightarrow$1234567.89) - US comma grouping (e.g.
1,234,567.89$\rightarrow$1234567.89) - Scientific Notation & Sign: Fully preserves signs (
-3,14$\rightarrow$-3.14,+42,5$\rightarrow$+42.5) and exponents (1,23e-4$\rightarrow$1.23e-4,2,5E+10$\rightarrow$2.5E+10). - Comprehensive Entry Point Coverage:
- Data grid cell editing (
FloatColumnDef,DoubleColumnDef,IntegerColumnDef,Int64ColumnDef,Int128ColumnDef,Dec16ColumnDef,Dec34ColumnDefinDataGridRows.cpp). - Parameter input dialogs (
InsertParametersDialog.cpp). - DECFLOAT parser (
StringToDecParseinFRDecimal.cpp). - Automated Regression Tests: Added unit test suites in
firebird_type_utils_testanddata_grid_date_testvalidating decimal comma, dot, and thousand-grouping scenarios.
Full Commit Log since v26.8.7
4854835cRelease v26.8.8: Fix Decimal-point vs Decimal-comma and thousand grouping input error (#697)4441d58fFix Decimal-point vs Decimal-comma and thousand grouping input error (#697)