groffstudio

Check-in [07e7ab3732]
Login
Overview
Comment:Removed outdated comment.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 07e7ab37328a436a70a952ead88be184a78c6c6df60aa1170ffc7c92fce0faf9
User & Date: Cthulhux on 2022-03-10 04:32:21
Other Links: manifest | tags
Context
2022-03-10
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: trunk, release-0.10.0
04:32
Removed outdated comment. check-in: 07e7ab3732 user: Cthulhux tags: trunk
03:54
groffstudio 0.9.9.1: Finally, macOS is supported. check-in: b79f447e7e user: Cthulhux tags: trunk, release-0.9.9.1
Changes

Modified src/unit1.pas from [7509f5f6d3] to [a7e2ae39a2].

201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
      edtOnlineGroffVersionWindows.Text := reGroffVersion.Match[1];
      latestGroffWindowsUrl := reGroffVersion.Match[2];
    end else begin
      edtOnlineGroffVersionWindows.Text := 'error';
      btnDownloadGroffWindows.Enabled := False;
    end;

    // Note that there is no version check (nor precompiled downloads :-))
    // for non-Windows versions right now. Contributors welcome.
    reGroffStudioVersion := TRegExpr.Create('studio-win ([\d\.]+) (.*)$');
    reGroffStudioVersion.ModifierM := True;
    if reGroffStudioVersion.Exec(OnlineVersionsFile) then
    begin
      // Compare the two versions - ours and the online one:
      GroffHelpers.VerStrCompare(reGroffStudioVersion.Match[1], FileVerInfo.VersionStrings.Values['FileVersion'], HasVersionUpdate);
      if HasVersionUpdate > 0 then







<
<







201
202
203
204
205
206
207


208
209
210
211
212
213
214
      edtOnlineGroffVersionWindows.Text := reGroffVersion.Match[1];
      latestGroffWindowsUrl := reGroffVersion.Match[2];
    end else begin
      edtOnlineGroffVersionWindows.Text := 'error';
      btnDownloadGroffWindows.Enabled := False;
    end;



    reGroffStudioVersion := TRegExpr.Create('studio-win ([\d\.]+) (.*)$');
    reGroffStudioVersion.ModifierM := True;
    if reGroffStudioVersion.Exec(OnlineVersionsFile) then
    begin
      // Compare the two versions - ours and the online one:
      GroffHelpers.VerStrCompare(reGroffStudioVersion.Match[1], FileVerInfo.VersionStrings.Values['FileVersion'], HasVersionUpdate);
      if HasVersionUpdate > 0 then