groffstudio

Check-in [b4c8a6fb9f]
Login
Overview
Comment:less bad Windows screenshot for README
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | trunk
Files: files | file ages | folders
SHA3-256: b4c8a6fb9f6f01d7dd7e17eef217f0df8aee6979c605e13020f26c4f0f1e8b81
User & Date: Cthulhux on 2024-05-16 00:55:11
Other Links: manifest | tags
Context
2024-05-16
00:55
less bad Windows screenshot for README Leaf check-in: b4c8a6fb9f user: Cthulhux tags: trunk
2024-05-15
00:47
[Changed] New icon, slightly less awful. check-in: ac0b363ad1 user: Cthulhux tags: trunk
Changes

Modified README.md from [ab6fd8d37c] to [4deaca08cf].

1
2
3
4
5
6
7

8
9
10
11
12
13
14
1
2
3
4
5
6

7
8
9
10
11
12
13
14






-
+







# 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)
![Screenshot](https://groff.tuxproject.de/groffstudio-windows.png)

## Features

* Written in Lazarus (Free Pascal).
  * Should be cross-platform.
  * Successfully tested on Windows 10, macOS and Linux.
* Can produce PS and PDF files.

Modified src/groffstudio.lpi from [2a3298f582] to [8b7b6190e0].

15
16
17
18
19
20
21



22
23
24
25

26
27
28
29
30
31
32
33
15
16
17
18
19
20
21
22
23
24
25
26
27

28

29
30
31
32
33
34
35







+
+
+



-
+
-







        <TextDesc Value="an ide for groff."/>
      </XPManifest>
      <Icon Value="0"/>
      <Resources Count="1">
        <Resource_0 FileName="..\LICENSE" Type="RCDATA" ResourceName="LICENSE"/>
      </Resources>
    </General>
    <i18n>
      <OutDir Value="l10n"/>
    </i18n>
    <VersionInfo>
      <UseVersionInfo Value="True"/>
      <AutoIncrementBuild Value="True"/>
      <MinorVersionNr Value="14"/>
      <MinorVersionNr Value="15"/>
      <BuildNr Value="12"/>
      <StringTable ProductName="groffstudio"/>
    </VersionInfo>
    <BuildModes>
      <Item Name="Default" Default="True"/>
    </BuildModes>
    <PublishOptions>
      <Version Value="2"/>

Modified src/groffstudio.lpr from [326a826cd4] to [764ba1a210].

31
32
33
34
35
36
37
38

39
40
41
42
43
44
31
32
33
34
35
36
37

38
39
40
41
42
43
44







-
+






  Helpers,
  BuildOutputWindow;

  {$R *.res}

begin
  RequireDerivedFormResource := True;
  Application.Scaled := True;
  Application.Scaled:=True;
  Application.Initialize;

  Application.CreateForm(TMainForm, MainForm);

  Application.Run;
end.