]> git.lyx.org Git - features.git/commitdiff
installer:
authorUwe Stöhr <uwestoehr@web.de>
Sun, 20 May 2007 20:35:35 +0000 (20:35 +0000)
committerUwe Stöhr <uwestoehr@web.de>
Sun, 20 May 2007 20:35:35 +0000 (20:35 +0000)
- 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

development/Win32/packaging/AltInstaller/specials/Launcher/lyxLauncher.dof
development/Win32/packaging/AltInstaller/specials/Launcher/lyxLauncher.dpr
development/Win32/packaging/AltInstaller/specials/Launcher/lyxLauncher.exe
development/Win32/packaging/AltInstaller/specials/Launcher/lyxLauncher.res [new file with mode: 0644]
development/Win32/packaging/AltInstaller/specials/PDFViewWin/PDFViewWin.dof
development/Win32/packaging/AltInstaller/specials/PDFViewWin/PDFViewWin.dpr
development/Win32/packaging/AltInstaller/specials/PDFViewWin/PDFViewWin.exe
development/Win32/packaging/AltInstaller/specials/PDFViewWin/PDFViewWin.res [new file with mode: 0644]

index 1dfc1470b6c5f1ca58605972218bb672e91ad66e..11ae3297753e2bdc101bbfbacf25acb2ffffac80 100644 (file)
@@ -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=
index f91d1b91cd525c27275f391b92fc3a847b7f01fe..4a5bef85350a1e09abba19b5dc83a45f8ba53448 100644 (file)
@@ -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;
 
index e4951620b57aeeca0ffcac3fa025a68f66586bef..fe30a6fb9be346727953565ed33c0e1dd795427d 100644 (file)
Binary files a/development/Win32/packaging/AltInstaller/specials/Launcher/lyxLauncher.exe and b/development/Win32/packaging/AltInstaller/specials/Launcher/lyxLauncher.exe differ
diff --git a/development/Win32/packaging/AltInstaller/specials/Launcher/lyxLauncher.res b/development/Win32/packaging/AltInstaller/specials/Launcher/lyxLauncher.res
new file mode 100644 (file)
index 0000000..183550f
Binary files /dev/null and b/development/Win32/packaging/AltInstaller/specials/Launcher/lyxLauncher.res differ
index b1bb9977081838161cfc8f579eee0926e9105ef8..1b696f5b45c12a34bb78e6f559a336df4e2e6d85 100644 (file)
@@ -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;
index b91a20de6253b4660ab518f642e22591826a5da1..413bfad8cf3e3c992d076244b862ff63bdc3155d 100644 (file)
@@ -19,6 +19,8 @@ program PDFViewWin;
 uses
   Windows, SysUtils, ShellApi;
 
+{$R *.res}
+
 var Input,InputNew : string;
     FileTest : boolean;
     hConsole : THandle;
index c638a039d6b5927dda967a159d64c096000f519e..abe71bce13920abdd72046a6dacdfe6f9e6b3ac7 100644 (file)
Binary files a/development/Win32/packaging/AltInstaller/specials/PDFViewWin/PDFViewWin.exe and b/development/Win32/packaging/AltInstaller/specials/PDFViewWin/PDFViewWin.exe differ
diff --git a/development/Win32/packaging/AltInstaller/specials/PDFViewWin/PDFViewWin.res b/development/Win32/packaging/AltInstaller/specials/PDFViewWin/PDFViewWin.res
new file mode 100644 (file)
index 0000000..1c6b321
Binary files /dev/null and b/development/Win32/packaging/AltInstaller/specials/PDFViewWin/PDFViewWin.res differ