Overview
Comment: | [Bugfix] When editing an unsaved document, the status panel will (correctly) display '[unsaved file]' now. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
abbf41a4a73d82a0d46395fb90f5771d |
User & Date: | Cthulhux on 2022-03-10 15:14:27 |
Other Links: | manifest | tags |
Context
2022-03-10
| ||
15:23 | [Bugfix] Windows builds still had a seemingly broken update check. Fixed the status display. check-in: ebe98e25b1 user: Cthulhux tags: release-0.10.1, trunk | |
15:14 | [Bugfix] When editing an unsaved document, the status panel will (correctly) display '[unsaved file]' now. check-in: abbf41a4a7 user: Cthulhux tags: trunk | |
14:48 | groffstudio 0.10.0: Large build process revamp, featuring log output to a file, and some bugfixes. check-in: f6741c12c7 user: Cthulhux tags: release-0.10.0, trunk | |
Changes
Modified CHANGES.txt from [cbc60e910f] to [4a00451b46].
|
Modified src/helpers.pas from [9366c012e2] to [1080e43d57].
︙ | |||
46 47 48 49 50 51 52 | 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | - - - - - - - + + + + + + + + | if nE2 > 1 then nV2 := StrToInt(Copy(oldVersion,1,(nE2-1))) else nV2 := 0; if nV1 = nV2 then VerStrCompare(Copy(newVersion, nE1 + 1, Length(newVersion)), Copy(oldVersion, nE2 + 1, Length(oldVersion)), comp) |
Modified src/unit1.pas from [3005494ec9] to [00c2628984].
︙ | |||
152 153 154 155 156 157 158 | 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 | - + | end else begin edtGroffInstalledVersion.Text := 'n/a'; hasGroff := False; lblTroffCommandNotFound.Visible := True; end; // Default file name |
︙ | |||
294 295 296 297 298 299 300 | 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 | - + | {$ENDIF} end; procedure TMainForm.btnBuildClick(Sender: TObject); var buildSuccess: Boolean; buildOpts: String; |
︙ |