| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| flamerobin_26.8.7_amd64.snap | 2026-08-23 | 3.0 MB | |
| flamerobin-portable-26.8.7-x64.zip | 2026-08-23 | 21.1 MB | |
| FlameRobin-26.8.7-x64.msi | 2026-08-23 | 16.6 MB | |
| flamerobin-26.8.7.flatpak | 2026-08-23 | 15.2 MB | |
| FlameRobin-26.8.7-x86.msi | 2026-08-23 | 15.9 MB | |
| flamerobin-portable-26.8.7-x86.zip | 2026-08-23 | 20.1 MB | |
| flamerobin-26.8.7.deb | 2026-08-23 | 31.2 MB | |
| flamerobin-macos-26.8.7.zip | 2026-08-23 | 7.5 MB | |
| README.md | 2026-08-23 | 3.6 kB | |
| v26.8.7 source code.tar.gz | 2026-08-23 | 1.4 MB | |
| v26.8.7 source code.zip | 2026-08-23 | 1.9 MB | |
| Totals: 11 Items | 133.8 MB | 0 | |
FlameRobin 26.8.7 Release Notes
FlameRobin v26.8.7 delivers important bug fixes for clipboard export operations, dependency inspection for system domains and indices, and table column creation.
Highlights & Key Improvements
1. Unexpected Comma on Timestamp Copy Operations Fix (#694)
- Settings Configuration Fix: Corrected default
TimestampFormatinconf-defs/fr_settings.confdeffromD.N.Y, H:M:S.TtoD.N.Y H:M:S.T(removing the misplaced comma between date and time) to align with standard SQL syntax and existing parser fallbacks. - Automatic Configuration Migration: Added legacy setting migration in
GridCellFormats::loadFromConfig()so users upgrading with existing configurations automatically migrate fromD.N.Y, H:M:S.TtoD.N.Y H:M:S.T. - SQL Literal Formatting for Clipboard Export: Updated
DataGridTable::getCellValueForInsert()to use Firebird-formatted SQL literals viaDataGridRows::getFieldFirebirdValue()(TimestampColumnDef::getAsFirebirdString,DateColumnDef,TimeColumnDef,StringColumnDef,BlobColumnDef) ensuring valid SQL without locale decorators across "Copy as INSERT", "Copy as UPDATE", "Copy as UPDATE OR INSERT", and "Copy as IN list". - Flexible Timestamp Parsing: Updated
GridCellFormats::parseTimestamp()to gracefully accept both space and comma separators between date and time. - Automated Tests: Updated
DataGridDateTest.cppwith timestamp format validation.
2. System Domain Dependencies & Double-Click Navigation Fix (#695)
- Resolved "Unsupported type" Error: Mapped
ntSysDomain(andntSysRole,ntSysPackage,ntSysIndices) inMetadataItem::getDependencies()to eliminate theUnsupported typeerror when inspecting Dependencies for system domains (e.g.RDBcreated by legacy tools). - Domain Usage Resolution: Added dependency query resolution for domain references in relation fields (
RDB), procedure parameters (RDB), and function arguments (RDBon Firebird 3+) so referencing tables, columns, and parameters are listed under Dependencies. - Double-Click Properties Navigation: Added
ntSysDomain,ntSysCollation,ntGTT, andntUsrIndicestoMainFrame::OnTreeItemActivate()so double-clicking on system domains in the database tree automatically opens their properties. - Icon Support: Added
ART_SystemDomainicon mapping inMetadataItemPropertiesFrame.cpp.
3. System Indices & User Indices Dependencies Resolution (#696)
- Resolved Empty Dependencies Lists: Added comprehensive dependency queries in
MetadataItem::getDependencies()forntIndex, linking indices to their underlying table and column segments (RDB+RDB), table constraints (RDB), and foreign key partner indices / target tables (RDB.RDB). - Unified Index Lookup: Updated
Database::findByNameAndType()to search acrossindicesM,sysIndicesM, andusrIndicesM.
4. Boolean Column Definition Character Set / Collation Syntax Error Fix (#698)
- Field Properties Datatype Definition: Fixed
isCharmetadata property inFieldPropertiesDialog.cppfor theBooleandatatype so Character Set and Collation choices are disabled forBooleancolumns. - Valid SQL Generation: Prevented invalid
CHARACTER SET ... COLLATE ...clauses from being emitted in generatedALTER TABLE ... ADD COLUMNstatements for boolean fields.
Full Commit Log since v26.8.6
d46b2c70Release v26.8.7: Bug fixes for timestamp copy, system domains/indices dependencies, and boolean columns (#694, [#695], [#696], [#698])