diff --git a/components/lazautoupdate/latest_stable/lazupdate.lpk b/components/lazautoupdate/latest_stable/lazupdate.lpk index 2c45146fb..61ed95ab9 100644 --- a/components/lazautoupdate/latest_stable/lazupdate.lpk +++ b/components/lazautoupdate/latest_stable/lazupdate.lpk @@ -52,7 +52,7 @@ A component for SourceForge Project Developers and end-users to update their app along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. "/> - + diff --git a/components/lazautoupdate/latest_stable/lazupdate.pas b/components/lazautoupdate/latest_stable/lazupdate.pas index 5c88de6b7..7f74b2c1a 100644 --- a/components/lazautoupdate/latest_stable/lazupdate.pas +++ b/components/lazautoupdate/latest_stable/lazupdate.pas @@ -4,7 +4,6 @@ unit lazupdate; -{$warn 5023 off : no warning about unused units} interface uses diff --git a/components/lazautoupdate/latest_stable/testapp/testapp.lps b/components/lazautoupdate/latest_stable/testapp/testapp.lps index 36c1def36..bb024ee24 100644 --- a/components/lazautoupdate/latest_stable/testapp/testapp.lps +++ b/components/lazautoupdate/latest_stable/testapp/testapp.lps @@ -2,15 +2,15 @@ - + - + - + - + @@ -21,7 +21,7 @@ - + @@ -30,15 +30,15 @@ - + - - + + @@ -46,7 +46,7 @@ - + @@ -90,7 +90,7 @@ - + @@ -99,127 +99,136 @@ + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - - + + - - + + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + + + + + + + + + + + + - + - + diff --git a/components/lazautoupdate/latest_stable/testapp/testapp.res b/components/lazautoupdate/latest_stable/testapp/testapp.res index 2feb20d57..21810644f 100644 Binary files a/components/lazautoupdate/latest_stable/testapp/testapp.res and b/components/lazautoupdate/latest_stable/testapp/testapp.res differ diff --git a/components/lazautoupdate/latest_stable/ulazautoupdate.pas b/components/lazautoupdate/latest_stable/ulazautoupdate.pas index ba3f52567..6df7ebedd 100644 --- a/components/lazautoupdate/latest_stable/ulazautoupdate.pas +++ b/components/lazautoupdate/latest_stable/ulazautoupdate.pas @@ -212,7 +212,9 @@ type fGUIOnlineVersion: string; fShowDialogs: boolean; fDownloadInprogress: boolean; - FUpdateHMProcess: TAsyncProcess; + {$IFDEF UNIX} + FUpdateHMProcess: TAsyncProcess; + {$ENDIF} fauOtherSourceURL: string; fauOtherSourceFilename: string; WhatsNewForm: TForm; @@ -228,7 +230,7 @@ type fDebugMode, fFireDebugEvent: boolean; fSilentMode: boolean; fLCLVersion, fWidgetSet, fFPCVersion, fLastCompiled, fTargetOS: string; - fQuad: TVersionQuad; + // fQuad: TVersionQuad; fProgVersion: TProgramVersion; objFileVerInfo: TFileVersionInfo; fUpdateExe,fUpdateSilentExe:String; @@ -861,8 +863,6 @@ begin // Test: Is the online version newer? if NewerVersion(fGUIQuad, fApplicationVersionQuad) then Result := True; - // if (iGUIVersion > fApplicationVersionQuad) then - // Result := True; end; diff --git a/components/lazautoupdate/latest_stable/updatehmsource/compiled/linux32/updatehmlinux32 b/components/lazautoupdate/latest_stable/updatehmsource/compiled/linux32/updatehmlinux32 index d894557c5..f608cb5a7 100644 Binary files a/components/lazautoupdate/latest_stable/updatehmsource/compiled/linux32/updatehmlinux32 and b/components/lazautoupdate/latest_stable/updatehmsource/compiled/linux32/updatehmlinux32 differ diff --git a/components/lazautoupdate/latest_stable/updatehmsource/compiled/linux64/updatehmlinux64 b/components/lazautoupdate/latest_stable/updatehmsource/compiled/linux64/updatehmlinux64 index fb7c9ebea..a5e4d046b 100644 Binary files a/components/lazautoupdate/latest_stable/updatehmsource/compiled/linux64/updatehmlinux64 and b/components/lazautoupdate/latest_stable/updatehmsource/compiled/linux64/updatehmlinux64 differ diff --git a/components/lazautoupdate/latest_stable/updatehmsource/compiled/win32/updatehmwin32.exe b/components/lazautoupdate/latest_stable/updatehmsource/compiled/win32/updatehmwin32.exe index 11609f79e..edaff0139 100644 Binary files a/components/lazautoupdate/latest_stable/updatehmsource/compiled/win32/updatehmwin32.exe and b/components/lazautoupdate/latest_stable/updatehmsource/compiled/win32/updatehmwin32.exe differ diff --git a/components/lazautoupdate/latest_stable/updatehmsource/compiled/win64/updatehmwin64.exe b/components/lazautoupdate/latest_stable/updatehmsource/compiled/win64/updatehmwin64.exe index a32029b5a..12bef1576 100644 Binary files a/components/lazautoupdate/latest_stable/updatehmsource/compiled/win64/updatehmwin64.exe and b/components/lazautoupdate/latest_stable/updatehmsource/compiled/win64/updatehmwin64.exe differ diff --git a/components/lazautoupdate/latest_stable/updatehmsource/updatehm.lps b/components/lazautoupdate/latest_stable/updatehmsource/updatehm.lps index a672b489e..42874842c 100644 --- a/components/lazautoupdate/latest_stable/updatehmsource/updatehm.lps +++ b/components/lazautoupdate/latest_stable/updatehmsource/updatehm.lps @@ -9,7 +9,7 @@ - + diff --git a/components/lazautoupdate/latest_stable/versionsupport.pas b/components/lazautoupdate/latest_stable/versionsupport.pas index c5acc0fb4..b7b266e66 100644 --- a/components/lazautoupdate/latest_stable/versionsupport.pas +++ b/components/lazautoupdate/latest_stable/versionsupport.pas @@ -31,7 +31,7 @@ Interface *) Uses - Classes, SysUtils; + Classes, SysUtils,LCLVersion; Function GetFileVersion: String; Function GetProductVersion: String; @@ -56,7 +56,7 @@ Const Implementation Uses - resource, versiontypes, versionresource, LCLVersion, InterfaceBase; + resource, versiontypes, versionresource, InterfaceBase; Type TVersionInfo = Class