From b63d8ac8c7b3d87d1bf464c0d43d8df7ce1a0bce Mon Sep 17 00:00:00 2001 From: gbamber Date: Sun, 15 Jan 2017 19:23:26 +0000 Subject: [PATCH] Bugfix git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5657 8e941d3f-bd1b-0410-a28a-d453659cc2b4 --- .../latest_stable/testapp/testapp.lps | 14 +++++++------- .../latest_stable/testapp/umainform.lfm | 1 + .../lazautoupdate/latest_stable/ulazautoupdate.pas | 2 +- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/components/lazautoupdate/latest_stable/testapp/testapp.lps b/components/lazautoupdate/latest_stable/testapp/testapp.lps index 81c419c49..b5cdd9af4 100644 --- a/components/lazautoupdate/latest_stable/testapp/testapp.lps +++ b/components/lazautoupdate/latest_stable/testapp/testapp.lps @@ -10,7 +10,7 @@ - + @@ -21,19 +21,18 @@ - + - - - + + @@ -46,9 +45,10 @@ + - - + + diff --git a/components/lazautoupdate/latest_stable/testapp/umainform.lfm b/components/lazautoupdate/latest_stable/testapp/umainform.lfm index 1dadaaca2..652bac450 100644 --- a/components/lazautoupdate/latest_stable/testapp/umainform.lfm +++ b/components/lazautoupdate/latest_stable/testapp/umainform.lfm @@ -124,6 +124,7 @@ object mainform: Tmainform ZipfileName = 'testapp.zip' GitHubUsername = '' GitHubProjectName = '' + GitHubBranch = '' Left = 200 Top = 24 end diff --git a/components/lazautoupdate/latest_stable/ulazautoupdate.pas b/components/lazautoupdate/latest_stable/ulazautoupdate.pas index 25a35a0c0..8f81c1413 100644 --- a/components/lazautoupdate/latest_stable/ulazautoupdate.pas +++ b/components/lazautoupdate/latest_stable/ulazautoupdate.pas @@ -531,7 +531,7 @@ begin // Propagate down fThreadDownload.fDebugmode := fDebugMode; - if fProjectType = auSourceForge then + if ((fProjectType = auSourceForge) or (fProjectType = auGitHubReleaseZip)) then fThreadDownload.fIsSourceForge := True else fThreadDownload.fIsSourceForge := False;