groffstudio

Check-in [2128815afe]
Login
Overview
Comment:Fixed Windows build (typo)
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 2128815afe99b94928dd50fd92eb059eca3b3068f699948cc89a7ee4b3e85452
User & Date: Cthulhux on 2024-04-29 12:13:19
Other Links: manifest | tags
Context
2024-04-29
22:16
Release. check-in: 1fd5b3df6f user: Cthulhux tags: trunk, release-0.13.2
12:13
Fixed Windows build (typo) check-in: 2128815afe user: Cthulhux tags: trunk
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
Changes

Modified src/groffstudio.lpi from [6f0bbb3039] to [a3c199dac0].

20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
      </Resources>
    </General>
    <VersionInfo>
      <UseVersionInfo Value="True"/>
      <AutoIncrementBuild Value="True"/>
      <MinorVersionNr Value="13"/>
      <RevisionNr Value="2"/>
      <BuildNr Value="1"/>
      <StringTable ProductName="groffstudio"/>
    </VersionInfo>
    <BuildModes>
      <Item Name="Default" Default="True"/>
    </BuildModes>
    <PublishOptions>
      <Version Value="2"/>







|







20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
      </Resources>
    </General>
    <VersionInfo>
      <UseVersionInfo Value="True"/>
      <AutoIncrementBuild Value="True"/>
      <MinorVersionNr Value="13"/>
      <RevisionNr Value="2"/>
      <BuildNr Value="2"/>
      <StringTable ProductName="groffstudio"/>
    </VersionInfo>
    <BuildModes>
      <Item Name="Default" Default="True"/>
    </BuildModes>
    <PublishOptions>
      <Version Value="2"/>

Modified src/unit1.lfm from [1930226d3f] to [320f726127].

698
699
700
701
702
703
704


705
706
707
708
709
710
711
        LineHighlightColor.Foreground = clNone
        WantTabs = False
        OnChange = SynEdit1Change
        inline SynLeftGutterPartList1: TSynGutterPartList
          object SynGutterMarks1: TSynGutterMarks
            Width = 24
            MouseActions = <>


          end
          object SynGutterLineNumber1: TSynGutterLineNumber
            Width = 17
            MouseActions = <>
            MarkupInfo.Background = clBtnFace
            MarkupInfo.Foreground = clNone
            DigitCount = 2







>
>







698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
        LineHighlightColor.Foreground = clNone
        WantTabs = False
        OnChange = SynEdit1Change
        inline SynLeftGutterPartList1: TSynGutterPartList
          object SynGutterMarks1: TSynGutterMarks
            Width = 24
            MouseActions = <>
            MaxExtraMarksColums = 0
            Options = [sgmoDeDuplicateMarksOnOverflow]
          end
          object SynGutterLineNumber1: TSynGutterLineNumber
            Width = 17
            MouseActions = <>
            MarkupInfo.Background = clBtnFace
            MarkupInfo.Foreground = clNone
            DigitCount = 2

Modified src/unit1.pas from [bafe035478] to [99cc82d50b].

101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
    {$ENDIF}
  private
  var
    currentGroffFilePath: string;
    currentGroffFileName: string;
    unsavedChanges: boolean;
    {$IFDEF WINDOWS}
    atestGroffWindowsUrl: String;
    {$ENDIF}
    storeBuildSettings: boolean;
    updateCheck: boolean;
  public

  end;








|







101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
    {$ENDIF}
  private
  var
    currentGroffFilePath: string;
    currentGroffFileName: string;
    unsavedChanges: boolean;
    {$IFDEF WINDOWS}
    latestGroffWindowsUrl: String;
    {$ENDIF}
    storeBuildSettings: boolean;
    updateCheck: boolean;
  public

  end;