mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-26 11:16:55 +00:00
installer:
- fix problem with path with spaces in the Launcher (thanks to Martin Rauscher for testing) - add icons and version info to the launcher and the PDF viewer git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18434 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
f2ccc2af03
commit
99e966daa0
@ -110,7 +110,7 @@ ActiveLang=
|
||||
ProjectLang=
|
||||
RootDir=
|
||||
[Version Info]
|
||||
IncludeVerInfo=0
|
||||
IncludeVerInfo=1
|
||||
AutoIncBuild=0
|
||||
MajorVer=1
|
||||
MinorVer=0
|
||||
@ -124,13 +124,13 @@ DLL=0
|
||||
Locale=1031
|
||||
CodePage=1252
|
||||
[Version Info Keys]
|
||||
CompanyName=
|
||||
FileDescription=
|
||||
CompanyName=LyX Team
|
||||
FileDescription=Launcher for LyX
|
||||
FileVersion=1.0.0.0
|
||||
InternalName=
|
||||
LegalCopyright=
|
||||
LegalCopyright=Uwe Stöhr
|
||||
LegalTrademarks=
|
||||
OriginalFilename=
|
||||
OriginalFilename=lyxLauncher.exe
|
||||
ProductName=
|
||||
ProductVersion=1.0.0.0
|
||||
Comments=
|
||||
|
@ -12,6 +12,8 @@ program lyxLauncher;
|
||||
uses
|
||||
Windows, SysUtils, ShellApi, Dialogs;
|
||||
|
||||
{$R *.res}
|
||||
|
||||
var Path,FileName : string;
|
||||
hConsole : THandle;
|
||||
|
||||
@ -25,7 +27,7 @@ begin
|
||||
|
||||
// if a filename is given, convert it to a PChar; needed for the ShellExecute
|
||||
if FileName <> '' then
|
||||
Params:= PChar(FileName)
|
||||
Params:= PChar('"' + FileName + '"')
|
||||
else
|
||||
Params:= nil;
|
||||
|
||||
|
Binary file not shown.
Binary file not shown.
@ -95,7 +95,7 @@ UnitOutputDir=
|
||||
PackageDLLOutputDir=
|
||||
PackageDCPOutputDir=
|
||||
SearchPath=
|
||||
Packages=
|
||||
Packages=vcl;rtl;vclx;vcldb;dbrtl;bdertl;vclshlctrls;vclactnband;adortl;vcldbx;VclSmp;visualclx;visualdbclx;dbexpress;vclie;xmlrtl;inetdbbde;inet;inetdbxpress;teeui;teedb;tee;Rave50CLX;Rave50VCL;IntrawebDB_50_70;Intraweb_50_70;indy;ibxpress;dsnap;soaprtl;dbxcds;inetdb
|
||||
Conditionals=
|
||||
DebugSourceDirs=
|
||||
UsePackages=0
|
||||
@ -110,7 +110,7 @@ ActiveLang=
|
||||
ProjectLang=
|
||||
RootDir=
|
||||
[Version Info]
|
||||
IncludeVerInfo=0
|
||||
IncludeVerInfo=1
|
||||
AutoIncBuild=0
|
||||
MajorVer=1
|
||||
MinorVer=0
|
||||
@ -124,13 +124,16 @@ DLL=0
|
||||
Locale=1031
|
||||
CodePage=1252
|
||||
[Version Info Keys]
|
||||
CompanyName=
|
||||
FileDescription=
|
||||
CompanyName=LyX Team
|
||||
FileDescription=PDF viewing program for LyX
|
||||
FileVersion=1.0.0.0
|
||||
InternalName=
|
||||
LegalCopyright=
|
||||
LegalCopyright=Uwe Stöhr
|
||||
LegalTrademarks=
|
||||
OriginalFilename=
|
||||
OriginalFilename=PDFViewWin.exe
|
||||
ProductName=
|
||||
ProductVersion=1.0.0.0
|
||||
Comments=
|
||||
[HistoryLists\hlUnitAliases]
|
||||
Count=1
|
||||
Item0=WinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE;
|
||||
|
@ -19,6 +19,8 @@ program PDFViewWin;
|
||||
uses
|
||||
Windows, SysUtils, ShellApi;
|
||||
|
||||
{$R *.res}
|
||||
|
||||
var Input,InputNew : string;
|
||||
FileTest : boolean;
|
||||
hConsole : THandle;
|
||||
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue
Block a user