You've already forked lazarus-ccr
Update Pack for Win64 added to support TestApp
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5660 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -0,0 +1,32 @@
|
||||
Zipfile and INI file are located at:
|
||||
D:\lazarusccr\components\lazautoupdate\latest_stable\testapp\updates\
|
||||
|
||||
-- Copy and Paste Pascal code --
|
||||
|
||||
Form1.FormCreate(Sender: TObject);
|
||||
begin
|
||||
LazAutoUpdate1.ProjectType:=auSourceForge;
|
||||
LazAutoUpdate1.SFProjectName:='lazautoupdate';
|
||||
LazAutoUpdate1.VersionsININame:='testapplinux32.ini';
|
||||
LazAutoUpdate1.ZipfileName:='testapplinux32.zip';
|
||||
LazAutoUpdate1.CopyTree:=False;
|
||||
LazAutoUpdate1.ShowUpdatesInCaption:=True;
|
||||
LazAutoUpdate1.ShowDialogs:=True;
|
||||
LazAutoUpdate1.DebugMode:=True;
|
||||
LazAutoUpdate1.UpdatesFolder:='updates';
|
||||
end;
|
||||
|
||||
The zipfile testapplinux32.zip has the structure:
|
||||
-testapplinux32
|
||||
-whatsnew.txt
|
||||
-lauimport.ini
|
||||
|
||||
This structure will be unzipped into the application directory, and
|
||||
will overwtrite existing files and/or folders of the same name.
|
||||
If you want other files or folders to be deployed, then edit the zipfile
|
||||
(or drag files into the [Advanced] tab list) before uploading it
|
||||
to your SourceForge 'updates' folder.
|
||||
|
||||
-------------------------
|
||||
Type your own notes below
|
||||
|
@ -0,0 +1,32 @@
|
||||
Zipfile and INI file are located at:
|
||||
D:\lazarusccr\components\lazautoupdate\latest_stable\testapp\updates\
|
||||
|
||||
-- Copy and Paste Pascal code --
|
||||
|
||||
Form1.FormCreate(Sender: TObject);
|
||||
begin
|
||||
LazAutoUpdate1.ProjectType:=auSourceForge;
|
||||
LazAutoUpdate1.SFProjectName:='lazautoupdate';
|
||||
LazAutoUpdate1.VersionsININame:='testapplinux64.ini';
|
||||
LazAutoUpdate1.ZipfileName:='testapplinux64.zip';
|
||||
LazAutoUpdate1.CopyTree:=False;
|
||||
LazAutoUpdate1.ShowUpdatesInCaption:=True;
|
||||
LazAutoUpdate1.ShowDialogs:=True;
|
||||
LazAutoUpdate1.DebugMode:=True;
|
||||
LazAutoUpdate1.UpdatesFolder:='updates';
|
||||
end;
|
||||
|
||||
The zipfile testapplinux64.zip has the structure:
|
||||
-testapplinux64
|
||||
-whatsnew.txt
|
||||
-lauimport.ini
|
||||
|
||||
This structure will be unzipped into the application directory, and
|
||||
will overwtrite existing files and/or folders of the same name.
|
||||
If you want other files or folders to be deployed, then edit the zipfile
|
||||
(or drag files into the [Advanced] tab list) before uploading it
|
||||
to your SourceForge 'updates' folder.
|
||||
|
||||
-------------------------
|
||||
Type your own notes below
|
||||
|
@ -0,0 +1,32 @@
|
||||
Zipfile and INI file are located at:
|
||||
D:\lazarusccr\components\lazautoupdate\latest_stable\testapp\compiled\win32\updatepackoutput\
|
||||
|
||||
-- Copy and Paste Pascal code --
|
||||
|
||||
Form1.FormCreate(Sender: TObject);
|
||||
begin
|
||||
LazAutoUpdate1.ProjectType:=auSourceForge;
|
||||
LazAutoUpdate1.SFProjectName:='lazautoupdate';
|
||||
LazAutoUpdate1.VersionsININame:='testappwin32.ini';
|
||||
LazAutoUpdate1.ZipfileName:='testappwin32.zip';
|
||||
LazAutoUpdate1.CopyTree:=False;
|
||||
LazAutoUpdate1.ShowUpdatesInCaption:=True;
|
||||
LazAutoUpdate1.ShowDialogs:=True;
|
||||
LazAutoUpdate1.DebugMode:=True;
|
||||
LazAutoUpdate1.UpdatesFolder:='updates';
|
||||
end;
|
||||
|
||||
The zipfile testappwin32.zip has the structure:
|
||||
-testappwin32.exe
|
||||
-whatsnew.txt
|
||||
-lauimport.ini
|
||||
|
||||
This structure will be unzipped into the application directory, and
|
||||
will overwtrite existing files and/or folders of the same name.
|
||||
If you want other files or folders to be deployed, then edit the zipfile
|
||||
(or drag files into the [Advanced] tab list) before uploading it
|
||||
to your SourceForge 'updates' folder.
|
||||
|
||||
-------------------------
|
||||
Type your own notes below
|
||||
|
@ -0,0 +1,32 @@
|
||||
Zipfile and INI file are located at:
|
||||
D:\lazarusccr\components\lazautoupdate\latest_stable\testapp\compiled\win64\updatepackoutput\
|
||||
|
||||
-- Copy and Paste Pascal code --
|
||||
|
||||
Form1.FormCreate(Sender: TObject);
|
||||
begin
|
||||
LazAutoUpdate1.ProjectType:=auSourceForge;
|
||||
LazAutoUpdate1.SFProjectName:='lazautoupdate';
|
||||
LazAutoUpdate1.VersionsININame:='testappwin64.ini';
|
||||
LazAutoUpdate1.ZipfileName:='testappwin64.zip';
|
||||
LazAutoUpdate1.CopyTree:=False;
|
||||
LazAutoUpdate1.ShowUpdatesInCaption:=True;
|
||||
LazAutoUpdate1.ShowDialogs:=True;
|
||||
LazAutoUpdate1.DebugMode:=True;
|
||||
LazAutoUpdate1.UpdatesFolder:='updates';
|
||||
end;
|
||||
|
||||
The zipfile testappwin64.zip has the structure:
|
||||
-testappwin64.exe
|
||||
-whatsnew.txt
|
||||
-lauimport.ini
|
||||
|
||||
This structure will be unzipped into the application directory, and
|
||||
will overwtrite existing files and/or folders of the same name.
|
||||
If you want other files or folders to be deployed, then edit the zipfile
|
||||
(or drag files into the [Advanced] tab list) before uploading it
|
||||
to your SourceForge 'updates' folder.
|
||||
|
||||
-------------------------
|
||||
Type your own notes below
|
||||
|
@ -0,0 +1,8 @@
|
||||
[UpdatePackWin64]
|
||||
AppPrettyName=UpdatePackWin64
|
||||
AppPath=updatepackwin64.exe
|
||||
INIPath=updatepackwin64.ini
|
||||
ZipPath=updatepackwin64.zip
|
||||
AppVersion=1.2.0.0
|
||||
SFProjectName=lazautoupdate
|
||||
SFUpdatesDirectory=updates
|
@ -0,0 +1,6 @@
|
||||
[ProgramInfo]
|
||||
Application=LazAutoUpdate Update Pack (win64 edition)
|
||||
Version=1.1.0.0
|
||||
|
||||
[Current]
|
||||
Profilename=TestAppLinux64
|
@ -0,0 +1,125 @@
|
||||
[Default]
|
||||
AppPath=C:\NewPascal\projects\lazautoupdate\svn\trunk\updatepack\compiled\updatepackcompiled\win64\updatepackwin64.exe
|
||||
OutDir=C:\NewPascal\projects\lazautoupdate\svn\trunk\updatepack\compiled\updatepackcompiled\win64\
|
||||
NewVersion=1.2.0.0
|
||||
VersionsINI=C:\NewPascal\projects\lazautoupdate\svn\trunk\updatepack\compiled\updatepackcompiled\win64\versions.ini
|
||||
WhatsNewPath=C:\NewPascal\projects\lazautoupdate\svn\trunk\updatepack\compiled\updatepackcompiled\win64\whatsnew.txt
|
||||
SFProjectName=mysfproject
|
||||
ZipFileName=C:\NewPascal\projects\lazautoupdate\svn\trunk\updatepack\compiled\updatepackcompiled\win64\myappzipfile.zip
|
||||
CopyTree=0
|
||||
CopyTreeDirectory=C:\NewPascal\projects\lazautoupdate\svn\trunk\updatepack\compiled\updatepackcompiled\win64\
|
||||
SFUpdatesDirectory=updates
|
||||
ShowUpdatesInCaption=0
|
||||
ShowDialogs=0
|
||||
DebugMode=0
|
||||
OverRideUserPrefs=0
|
||||
IntervalType=0
|
||||
IntervalDate=0
|
||||
IntervalDay=0
|
||||
IntervalHour=9
|
||||
ExtraFiles=0
|
||||
|
||||
[UpdatePackWin64]
|
||||
AppPath=C:\NewPascal\projects\lazautoupdate\svn\trunk\updatepack\compiled\updatepackcompiled\win64\updatepackwin64.exe
|
||||
OutDir=D:\Lazarusprojects\lazautoupdate\svn\trunk\updatepack\compiled\updatepackcompiled\win64\
|
||||
NewVersion=1.2.0.0
|
||||
VersionsINI=D:\Lazarusprojects\lazautoupdate\svn\trunk\updatepack\compiled\updatepackcompiled\win64\updatepackwin64.ini
|
||||
WhatsNewPath=D:\Lazarusprojects\lazautoupdate\svn\trunk\updatepack\compiled\updatepackcompiled\win64\whatsnew.txt
|
||||
SFProjectName=lazautoupdate
|
||||
ZipFileName=D:\Lazarusprojects\lazautoupdate\svn\trunk\updatepack\compiled\updatepackcompiled\win64\updatepackwin64.zip
|
||||
CopyTree=1
|
||||
CopyTreeDirectory=C:\NewPascal\projects\lazautoupdate\svn\trunk\updatepack\compiled\updatepackcompiled\win64\
|
||||
SFUpdatesDirectory=updates
|
||||
ShowUpdatesInCaption=0
|
||||
ShowDialogs=0
|
||||
DebugMode=0
|
||||
OverRideUserPrefs=0
|
||||
IntervalType=0
|
||||
IntervalDate=0
|
||||
IntervalDay=0
|
||||
IntervalHour=9
|
||||
ExtraFiles=0
|
||||
|
||||
[TestAppWin32]
|
||||
AppPath=D:\lazarusccr\components\lazautoupdate\latest_stable\testapp\compiled\win32\testappwin32.exe
|
||||
OutDir=D:\lazarusccr\components\lazautoupdate\latest_stable\testapp\compiled\win32\updatepackoutput\
|
||||
NewVersion=1.1.1.1
|
||||
VersionsINI=D:\lazarusccr\components\lazautoupdate\latest_stable\testapp\compiled\win32\updatepackoutput\testappwin32.ini
|
||||
WhatsNewPath=D:\lazarusccr\components\lazautoupdate\latest_stable\testapp\compiled\win32\whatsnew.txt
|
||||
SFProjectName=lazautoupdate
|
||||
ZipFileName=D:\lazarusccr\components\lazautoupdate\latest_stable\testapp\compiled\win32\updatepackoutput\testappwin32.zip
|
||||
CopyTree=0
|
||||
CopyTreeDirectory=C:\NewPascal\projects\lazautoupdate\svn\trunk\updatepack\compiled\updatepackcompiled\win64\
|
||||
SFUpdatesDirectory=updates
|
||||
ShowUpdatesInCaption=1
|
||||
ShowDialogs=1
|
||||
DebugMode=1
|
||||
OverRideUserPrefs=0
|
||||
IntervalType=0
|
||||
IntervalDate=0
|
||||
IntervalDay=0
|
||||
IntervalHour=9
|
||||
ExtraFiles=0
|
||||
|
||||
[TestAppWin64]
|
||||
AppPath=D:\lazarusccr\components\lazautoupdate\latest_stable\testapp\compiled\win64\testappwin64.exe
|
||||
OutDir=D:\lazarusccr\components\lazautoupdate\latest_stable\testapp\compiled\win64\updatepackoutput\
|
||||
NewVersion=1.1.1.1
|
||||
VersionsINI=D:\lazarusccr\components\lazautoupdate\latest_stable\testapp\compiled\win64\updatepackoutput\testappwin64.ini
|
||||
WhatsNewPath=D:\lazarusccr\components\lazautoupdate\latest_stable\testapp\compiled\win32\whatsnew.txt
|
||||
SFProjectName=lazautoupdate
|
||||
ZipFileName=D:\lazarusccr\components\lazautoupdate\latest_stable\testapp\compiled\win64\updatepackoutput\testappwin64.zip
|
||||
CopyTree=0
|
||||
CopyTreeDirectory=C:\NewPascal\projects\lazautoupdate\svn\trunk\updatepack\compiled\updatepackcompiled\win64\
|
||||
SFUpdatesDirectory=updates
|
||||
ShowUpdatesInCaption=1
|
||||
ShowDialogs=1
|
||||
DebugMode=1
|
||||
OverRideUserPrefs=0
|
||||
IntervalType=0
|
||||
IntervalDate=0
|
||||
IntervalDay=0
|
||||
IntervalHour=9
|
||||
ExtraFiles=0
|
||||
|
||||
[TestAppLinux32]
|
||||
AppPath=D:\lazarusccr\components\lazautoupdate\latest_stable\testapp\compiled\linux32\testapplinux32
|
||||
OutDir=D:\lazarusccr\components\lazautoupdate\latest_stable\testapp\updates\
|
||||
NewVersion=1.1.1.1
|
||||
VersionsINI=D:\lazarusccr\components\lazautoupdate\latest_stable\testapp\updates\testapplinux32.ini
|
||||
WhatsNewPath=D:\lazarusccr\components\lazautoupdate\latest_stable\testapp\compiled\win32\whatsnew.txt
|
||||
SFProjectName=lazautoupdate
|
||||
ZipFileName=D:\lazarusccr\components\lazautoupdate\latest_stable\testapp\updates\testapplinux32.zip
|
||||
CopyTree=0
|
||||
CopyTreeDirectory=C:\NewPascal\projects\lazautoupdate\svn\trunk\updatepack\compiled\updatepackcompiled\win64\
|
||||
SFUpdatesDirectory=updates
|
||||
ShowUpdatesInCaption=1
|
||||
ShowDialogs=1
|
||||
DebugMode=1
|
||||
OverRideUserPrefs=0
|
||||
IntervalType=0
|
||||
IntervalDate=0
|
||||
IntervalDay=0
|
||||
IntervalHour=9
|
||||
ExtraFiles=0
|
||||
|
||||
[TestAppLinux64]
|
||||
AppPath=D:\lazarusccr\components\lazautoupdate\latest_stable\testapp\compiled\linux64\testapplinux64
|
||||
OutDir=D:\lazarusccr\components\lazautoupdate\latest_stable\testapp\updates\
|
||||
NewVersion=1.1.1.1
|
||||
VersionsINI=D:\lazarusccr\components\lazautoupdate\latest_stable\testapp\updates\testapplinux64.ini
|
||||
WhatsNewPath=D:\lazarusccr\components\lazautoupdate\latest_stable\testapp\compiled\win32\whatsnew.txt
|
||||
SFProjectName=lazautoupdate
|
||||
ZipFileName=D:\lazarusccr\components\lazautoupdate\latest_stable\testapp\updates\testapplinux64.zip
|
||||
CopyTree=0
|
||||
CopyTreeDirectory=C:\NewPascal\projects\lazautoupdate\svn\trunk\updatepack\compiled\updatepackcompiled\win64\
|
||||
SFUpdatesDirectory=updates
|
||||
ShowUpdatesInCaption=1
|
||||
ShowDialogs=1
|
||||
DebugMode=1
|
||||
OverRideUserPrefs=0
|
||||
IntervalType=0
|
||||
IntervalDate=0
|
||||
IntervalDay=0
|
||||
IntervalHour=9
|
||||
ExtraFiles=0
|
Binary file not shown.
Reference in New Issue
Block a user