Difference From 8bb30e04bd97756c To 3b615f92bd879d7f
2024-01-30
| ||
22:21 | [Improved] Multi-threading is more standards-compliant now (thanks @Th69). Oh, and I did some code formatting. check-in: 062e24b56e user: Cthulhux tags: trunk | |
2024-01-29
| ||
14:57 | Added a release date, binaries will follow. check-in: 3b615f92bd user: Cthulhux tags: release-0.13.1, trunk | |
2024-01-19
| ||
15:39 | Accidentally broke the changelog. Oops. check-in: e0eb5aa8e8 user: Cthulhux tags: trunk | |
2024-01-12
| ||
10:25 | Added Mastodon contact check-in: 783ebc937c user: Cthulhux tags: trunk | |
2024-01-11
| ||
18:14 | post-release changes for macOS project settings ;-) check-in: 8bb30e04bd user: Cthulhux tags: trunk | |
13:59 | Updated screenshot check-in: ae0f803ae3 user: Cthulhux tags: trunk | |
Modified CHANGES.txt from [1b324e0183] to [f3eb69e38a].
|
Modified README.md from [b76a34f200] to [53e529d119].
1 2 3 4 5 6 7 8 9 10 11 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | - + + | # groffstudio: An IDE for groff. You know what was missing with `groff`? A good alternative to TeXstudio. Here we go. ## Screenshot ![Screenshot](https://i.imgur.com/GNu2M6n.png) ## Features * Written in Lazarus (Free Pascal). |
︙ | |||
32 33 34 35 36 37 38 39 | 33 34 35 36 37 38 39 40 41 | + | Thank you. ## Contact * IRC: [libera.chat: #groffstudio](irc://irc.libera.chat/groffstudio) * Twitter: [@tux0r](https://twitter.com/tux0r) * Mastodon: [@tux0r@layer8.space](https://layer8.space/@tux0r) * Matrix: @tux0r:matrix.org |
Modified src/groffstudio.lpi from [c7cb82821c] to [565cb1118a].
︙ | |||
19 20 21 22 23 24 25 | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | + - + - | <Resource_0 FileName="..\LICENSE" Type="RCDATA" ResourceName="LICENSE"/> </Resources> </General> <VersionInfo> <UseVersionInfo Value="True"/> <AutoIncrementBuild Value="True"/> <MinorVersionNr Value="13"/> <RevisionNr Value="1"/> |
︙ | |||
75 76 77 78 79 80 81 | 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | - - - - - - - - | <Filename Value="buildoutputwindow.pas"/> <IsPartOfProject Value="True"/> <ComponentName Value="BuildStatusWindow"/> <HasResources Value="True"/> <ResourceBaseClass Value="Form"/> <UnitName Value="BuildOutputWindow"/> </Unit> |
︙ |
Modified src/groffstudio.lpr from [6bd99be7bf] to [85befef33a].
︙ | |||
21 22 23 24 25 26 27 | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | - + - - - - - - - - - - + - | {$IFDEF UNIX} cthreads, {$ENDIF} {$IFDEF HASAMIGA} athreads, {$ENDIF} Interfaces, |
Deleted src/splashscreen.lfm version [1492917ff1].
| - - - - - - - - - - - - - - - - - - - - |
|
Deleted src/splashscreen.pas version [a952d1c450].
| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
|
Modified src/unit1.lfm from [8f95214e34] to [2d8e8a4496].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | + | object MainForm: TMainForm Left = 1073 Height = 692 Top = 99 Width = 847 Caption = 'groffstudio' ClientHeight = 692 ClientWidth = 847 DefaultMonitor = dmPrimary Position = poScreenCenter LCLVersion = '3.99.0.0' OnClose = FormClose OnCreate = FormCreate object MainStatusBar: TStatusBar Left = 0 Height = 23 Top = 669 Width = 847 |
︙ |
Modified src/unit1.pas from [5cfb67d430] to [cfe77c0b23].
︙ | |||
98 99 100 101 102 103 104 | 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 | - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - + - - - - - | procedure SynEdit1Change(Sender: TObject); {$IFDEF DARWIN} procedure GetSocketHandler(Sender: TObject; const UseSSL: Boolean; out AHandler: TSocketHandler); {$ENDIF} private var currentGroffFilePath: String; var currentGroffFileName: String; |
︙ |