1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 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 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
|
{*************************************************************************************
This file is part of Transmission Remote GUI.
Copyright (c) 2008-2019 by Yury Sidorov and Transmission Remote GUI working group.
Transmission Remote GUI is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
Transmission Remote GUI is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Transmission Remote GUI; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*************************************************************************************}
unit About;
{$mode objfpc}{$H+}
interface
uses
BaseForm, Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs, StdCtrls, ComCtrls, ExtCtrls, ButtonPanel, lclversion,
ssl_openssl, ssl_openssl_lib;
resourcestring
SErrorCheckingVersion = 'Error checking for new version.';
SNewVersionFound = 'A new version of %s is available.' + LineEnding +
'Your current version: %s' + LineEnding +
'The new version: %s' + LineEnding + LineEnding +
'Do you wish to open the Downloads web page?';
SLatestVersion = 'No updates have been found.' + LineEnding + 'You are running the latest version of %s.';
type
{ TAboutForm }
TAboutForm = class(TBaseForm)
Bevel1: TBevel;
Buttons: TButtonPanel;
edLicense: TMemo;
imgTransmission: TImage;
imgSynapse: TImage;
imgLazarus: TImage;
txHomePage: TLabel;
txAuthor: TLabel;
txVersion: TLabel;
txAppName: TLabel;
Page: TPageControl;
tabAbout: TTabSheet;
tabLicense: TTabSheet;
txVersFPC: TLabel;
procedure FormCreate(Sender: TObject);
procedure imgDonateClick(Sender: TObject);
procedure imgLazarusClick(Sender: TObject);
procedure imgSynapseClick(Sender: TObject);
procedure txHomePageClick(Sender: TObject);
private
{ private declarations }
public
{ public declarations }
end;
procedure CheckNewVersion(Async: boolean = True);
procedure GoHomePage;
procedure GoGitHub;
implementation
uses Main, utils, httpsend;
type
{ TCheckVersionThread }
TCheckVersionThread = class(TThread)
private
FHttp: THTTPSend;
FError: string;
FVersion: string;
FExit: boolean;
procedure CheckResult;
function GetIntVersion(const Ver: string): integer;
protected
procedure Execute; override;
end;
var
CheckVersionThread: TCheckVersionThread;
procedure CheckNewVersion(Async: boolean);
begin
if CheckVersionThread <> nil then
exit;
Ini.WriteInteger('Interface', 'LastNewVersionCheck', Trunc(Now));
CheckVersionThread:=TCheckVersionThread.Create(True);
CheckVersionThread.FreeOnTerminate:=True;
if Async then
CheckVersionThread.Suspended:=False
else begin
CheckVersionThread.Execute;
CheckVersionThread.FExit:=True;
CheckVersionThread.Suspended:=False;
end;
end;
procedure GoHomePage;
begin
AppBusy;
OpenURL('https://github.com/transmission-remote-gui/transgui/releases');
AppNormal;
end;
procedure GoGitHub;
begin
AppBusy;
OpenURL('https://github.com/transmission-remote-gui/transgui');
AppNormal;
end;
{ TCheckVersionThread }
procedure TCheckVersionThread.CheckResult;
begin
ForceAppNormal;
if FError <> '' then begin
MessageDlg(SErrorCheckingVersion + LineEnding + FError, mtError, [mbOK], 0);
exit;
end;
if GetIntVersion(AppVersion) >= GetIntVersion(FVersion) then begin
MessageDlg(Format(SLatestVersion, [AppName]), mtInformation, [mbOK], 0);
exit;
end;
if MessageDlg(Format(SNewVersionFound, [AppName, AppVersion, FVersion]), mtConfirmation, mbYesNo, 0) <> mrYes then
exit;
Application.ProcessMessages;
AppBusy;
OpenURL('https://github.com/transmission-remote-gui/transgui/releases');
AppNormal;
end;
function TCheckVersionThread.GetIntVersion(const Ver: string): integer;
var
v: string;
vi, i, j: integer;
begin
Result:=0;
v:=Ver;
for i:=1 to 3 do begin
if v = '' then
vi:=0
else begin
j:=Pos('.', v);
if j = 0 then
j:=MaxInt;
vi:=StrToIntDef(Copy(v, 1, j - 1), 0);
Delete(v, 1, j);
end;
Result:=Result shl 8 or vi;
end;
end;
procedure TCheckVersionThread.Execute;
begin
if not FExit then begin
try
FHttp:=THTTPSend.Create;
try
if RpcObj.Http.ProxyHost <> '' then begin
FHttp.ProxyHost:=RpcObj.Http.ProxyHost;
FHttp.ProxyPort:=RpcObj.Http.ProxyPort;
FHttp.ProxyUser:=RpcObj.Http.ProxyUser;
FHttp.ProxyPass:=RpcObj.Http.ProxyPass;
end;
if FHttp.HTTPMethod('GET', 'https://raw.githubusercontent.com/transmission-remote-gui/transgui/master/VERSION.txt') then begin
if FHttp.ResultCode = 200 then begin
SetString(FVersion, FHttp.Document.Memory, FHttp.Document.Size);
FVersion:=Trim(FVersion);
end
else
FError:=Format('HTTP error: %d', [FHttp.ResultCode]);
end
else
FError:=FHttp.Sock.LastErrorDesc;
finally
FHttp.Free;
end;
except
FError:=Exception(ExceptObject).Message;
end;
if (FError <> '') or (GetIntVersion(FVersion) > GetIntVersion(AppVersion)) or Suspended then
if Suspended then
CheckResult
else
Synchronize(@CheckResult);
end;
if not Suspended then
CheckVersionThread:=nil;
end;
{ TAboutForm }
procedure TAboutForm.imgSynapseClick(Sender: TObject);
begin
AppBusy;
OpenURL('http://synapse.ararat.cz');
AppNormal;
end;
procedure TAboutForm.txHomePageClick(Sender: TObject);
begin
GoHomePage;
end;
procedure TAboutForm.FormCreate(Sender: TObject);
{$ifdef lclcarbon}
var
s: string;
{$endif lclcarbon}
begin
bidiMode := GetBiDi();
txAppName.Font.Size:=Font.Size + 2;
txHomePage.Font.Size:=Font.Size;
BorderStyle:=bsSizeable;
txAppName.Caption:=AppName;
txVersion.Caption:=Format(txVersion.Caption, [AppVersion]);
Page.ActivePageIndex:=0;
txVersFPC.caption := 'Fpc : ' + {$I %FPCVERSION%} + ' Lazarus : ' +lcl_version;
{$ifdef lclcarbon}
s:=edLicense.Text;
edLicense.Text:='';
edLicense.HandleNeeded;
edLicense.Text:=s;
Buttons.BorderSpacing.Right:=Buttons.BorderSpacing.Right + ScaleInt(12);
{$endif lclcarbon}
end;
procedure TAboutForm.imgDonateClick(Sender: TObject);
begin
GoGitHub;
end;
procedure TAboutForm.imgLazarusClick(Sender: TObject);
begin
AppBusy;
OpenURL('https://www.lazarus-ide.org');
AppNormal;
end;
initialization
{$I about.lrs}
end.
|