Update to Update Pack. Config file is in common location for all OSes

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5685 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
gbamber
2017-01-22 09:49:17 +00:00
parent 2200c4879e
commit a315ebc428
4 changed files with 13 additions and 3 deletions

View File

@ -840,6 +840,12 @@ begin
ShowMessageFmt('Zipfile ''%s'' is OK', [ProfileRec.ZipFileName]) ShowMessageFmt('Zipfile ''%s'' is OK', [ProfileRec.ZipFileName])
else else
ShowMessage('Unable to create Zipfile. Is the App path and/or WhatsNew path valid?'); ShowMessage('Unable to create Zipfile. Is the App path and/or WhatsNew path valid?');
// Save the current Profile
AppConfig.WriteString('Current', 'Profilename', szCurrentProfileName);
ReadFromGUI(szCurrentProfileName);
WriteProfileToINI(szCurrentProfileName);
bCurrentProfileSaved := True;
// Make up the text for the memo
sz := 'Zipfile and INI file are located at:' + LineEnding; sz := 'Zipfile and INI file are located at:' + LineEnding;
sz += ProfileRec.Outdir + LineEnding + LineEnding; sz += ProfileRec.Outdir + LineEnding + LineEnding;

View File

@ -22,8 +22,8 @@
<VersionInfo> <VersionInfo>
<UseVersionInfo Value="True"/> <UseVersionInfo Value="True"/>
<MajorVersionNr Value="1"/> <MajorVersionNr Value="1"/>
<MinorVersionNr Value="1"/> <MinorVersionNr Value="2"/>
<RevisionNr Value="1"/> <RevisionNr Value="2"/>
<StringTable Comments="Updated Jan 2017" FileDescription="Companion to LazAutoUpdate component" InternalName="updatepack" LegalCopyright="(c)2015 minesadorada@charcodelvalle.com" OriginalFilename="updatepack" ProductName="Lazarus/FPC" ProductVersion="2.6.4"/> <StringTable Comments="Updated Jan 2017" FileDescription="Companion to LazAutoUpdate component" InternalName="updatepack" LegalCopyright="(c)2015 minesadorada@charcodelvalle.com" OriginalFilename="updatepack" ProductName="Lazarus/FPC" ProductVersion="2.6.4"/>
</VersionInfo> </VersionInfo>
<BuildModes Count="5"> <BuildModes Count="5">
@ -159,6 +159,9 @@
</Optimizations> </Optimizations>
</CodeGeneration> </CodeGeneration>
<Linking> <Linking>
<Debugging>
<GenerateDebugInfo Value="False"/>
</Debugging>
<LinkSmart Value="True"/> <LinkSmart Value="True"/>
<Options> <Options>
<Win32> <Win32>

View File

@ -34,7 +34,8 @@ Const
C_PFX = C_OS + C_BITNESS; C_PFX = C_OS + C_BITNESS;
begin begin
Application.Title:='LazAutoUpdate Update Pack'; Application.Title:='LazAutoUpdate Update Pack';
Application.Title:=Application.Title + ' (' + C_PFX + ' edition)'; // Line below gives unique folders in GetAppConfig call
// Application.Title:=Application.Title + ' (' + C_PFX + ' edition)';
RequireDerivedFormResource := True; RequireDerivedFormResource := True;
Application.Initialize; Application.Initialize;
Application.CreateForm(Tmainform, mainform); Application.CreateForm(Tmainform, mainform);