Mercurial > hg
annotate contrib/win32/mercurial.iss @ 11981:518b90d66fad
tests: unify test-merge8
author | Pradeepkumar Gayam <in3xes@gmail.com> |
---|---|
date | Wed, 18 Aug 2010 05:55:56 +0530 |
parents | 318d58fe4ceb |
children | eb7ddba6046a |
rev | line source |
---|---|
1290
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
1 ; Script generated by the Inno Setup Script Wizard. |
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
2 ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! |
9356
9488a4d64fb5
iss: take version from iscc command line or __version__.py
Steve Borho <steve@borho.org>
parents:
8936
diff
changeset
|
3 |
9488a4d64fb5
iss: take version from iscc command line or __version__.py
Steve Borho <steve@borho.org>
parents:
8936
diff
changeset
|
4 #ifndef VERSION |
9488a4d64fb5
iss: take version from iscc command line or __version__.py
Steve Borho <steve@borho.org>
parents:
8936
diff
changeset
|
5 #define FileHandle |
9488a4d64fb5
iss: take version from iscc command line or __version__.py
Steve Borho <steve@borho.org>
parents:
8936
diff
changeset
|
6 #define FileLine |
9488a4d64fb5
iss: take version from iscc command line or __version__.py
Steve Borho <steve@borho.org>
parents:
8936
diff
changeset
|
7 #define VERSION = "unknown" |
9488a4d64fb5
iss: take version from iscc command line or __version__.py
Steve Borho <steve@borho.org>
parents:
8936
diff
changeset
|
8 #if FileHandle = FileOpen(SourcePath + "\..\..\mercurial\__version__.py") |
9488a4d64fb5
iss: take version from iscc command line or __version__.py
Steve Borho <steve@borho.org>
parents:
8936
diff
changeset
|
9 #expr FileLine = FileRead(FileHandle) |
9488a4d64fb5
iss: take version from iscc command line or __version__.py
Steve Borho <steve@borho.org>
parents:
8936
diff
changeset
|
10 #expr FileLine = FileRead(FileHandle) |
9488a4d64fb5
iss: take version from iscc command line or __version__.py
Steve Borho <steve@borho.org>
parents:
8936
diff
changeset
|
11 #define VERSION = Copy(FileLine, Pos('"', FileLine)+1, Len(FileLine)-Pos('"', FileLine)-1) |
9488a4d64fb5
iss: take version from iscc command line or __version__.py
Steve Borho <steve@borho.org>
parents:
8936
diff
changeset
|
12 #endif |
9488a4d64fb5
iss: take version from iscc command line or __version__.py
Steve Borho <steve@borho.org>
parents:
8936
diff
changeset
|
13 #if FileHandle |
9488a4d64fb5
iss: take version from iscc command line or __version__.py
Steve Borho <steve@borho.org>
parents:
8936
diff
changeset
|
14 #expr FileClose(FileHandle) |
9488a4d64fb5
iss: take version from iscc command line or __version__.py
Steve Borho <steve@borho.org>
parents:
8936
diff
changeset
|
15 #endif |
9488a4d64fb5
iss: take version from iscc command line or __version__.py
Steve Borho <steve@borho.org>
parents:
8936
diff
changeset
|
16 #pragma message "Detected Version: " + VERSION |
9488a4d64fb5
iss: take version from iscc command line or __version__.py
Steve Borho <steve@borho.org>
parents:
8936
diff
changeset
|
17 #endif |
9488a4d64fb5
iss: take version from iscc command line or __version__.py
Steve Borho <steve@borho.org>
parents:
8936
diff
changeset
|
18 |
1290
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
19 [Setup] |
10209
c9194a7d7d3e
Update copyright year to 2010
Pascal Quantin <pascal.quantin@gmail.com>
parents:
9911
diff
changeset
|
20 AppCopyright=Copyright 2005-2010 Matt Mackall and others |
1290
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
21 AppName=Mercurial |
9356
9488a4d64fb5
iss: take version from iscc command line or __version__.py
Steve Borho <steve@borho.org>
parents:
8936
diff
changeset
|
22 AppVerName=Mercurial {#VERSION} |
1290
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
23 InfoAfterFile=contrib/win32/postinstall.txt |
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
24 LicenseFile=COPYING |
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
25 ShowLanguageDialog=yes |
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
26 AppPublisher=Matt Mackall and others |
8936
1de6e7e1bb9f
change wiki/bts URLs to point to new hostname
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
8058
diff
changeset
|
27 AppPublisherURL=http://mercurial.selenic.com/ |
1de6e7e1bb9f
change wiki/bts URLs to point to new hostname
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
8058
diff
changeset
|
28 AppSupportURL=http://mercurial.selenic.com/ |
1de6e7e1bb9f
change wiki/bts URLs to point to new hostname
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
8058
diff
changeset
|
29 AppUpdatesURL=http://mercurial.selenic.com/ |
1290
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
30 AppID={{4B95A5F1-EF59-4B08-BED8-C891C46121B3} |
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
31 AppContact=mercurial@selenic.com |
9356
9488a4d64fb5
iss: take version from iscc command line or __version__.py
Steve Borho <steve@borho.org>
parents:
8936
diff
changeset
|
32 OutputBaseFilename=Mercurial-{#VERSION} |
5625
876acbe2f856
win32: move default install path inside program files
Steve Borho <steve@borho.org>
parents:
5624
diff
changeset
|
33 DefaultDirName={pf}\Mercurial |
5626
28899bf513cc
win32: use relative path to install source
Steve Borho <steve@borho.org>
parents:
5625
diff
changeset
|
34 SourceDir=..\.. |
9356
9488a4d64fb5
iss: take version from iscc command line or __version__.py
Steve Borho <steve@borho.org>
parents:
8936
diff
changeset
|
35 VersionInfoDescription=Mercurial distributed SCM (version {#VERSION}) |
10209
c9194a7d7d3e
Update copyright year to 2010
Pascal Quantin <pascal.quantin@gmail.com>
parents:
9911
diff
changeset
|
36 VersionInfoCopyright=Copyright 2005-2010 Matt Mackall and others |
1290
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
37 VersionInfoCompany=Matt Mackall and others |
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
38 InternalCompressLevel=max |
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
39 SolidCompression=true |
7659
25ac72ca68f6
Add Lee Cantey's installer icon to win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
6790
diff
changeset
|
40 SetupIconFile=contrib\win32\mercurial.ico |
1290
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
41 AllowNoIcons=true |
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
42 DefaultGroupName=Mercurial |
4629
a04b5f37eda7
Fixes to not require administrator privleges and use private copies of DLLs when running the Windows installer.
Lee Cantey <lcantey@gmail.com>
parents:
4385
diff
changeset
|
43 PrivilegesRequired=none |
1290
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
44 |
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
45 [Files] |
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
46 Source: contrib\mercurial.el; DestDir: {app}/Contrib |
5627
382e336098ed
win32: include contrib/vim in Windows package
Steve Borho <steve@borho.org>
parents:
5626
diff
changeset
|
47 Source: contrib\vim\*.*; DestDir: {app}/Contrib/Vim |
5628
71179daf6941
win32: include zsh_completion in Windows package
Steve Borho <steve@borho.org>
parents:
5627
diff
changeset
|
48 Source: contrib\zsh_completion; DestDir: {app}/Contrib |
10029
c4cc230c3277
mercurial.iss: backout 08bbed8ac9b8
Martin Geisler <mg@lazybytes.net>
parents:
10008
diff
changeset
|
49 Source: contrib\bash_completion; DestDir: {app}/Contrib |
10031
c0fa62259d06
mercurial.iss: add tcsh completion script
Pascal Quantin <pascal.quantin@gmail.com>
parents:
10029
diff
changeset
|
50 Source: contrib\tcsh_completion; DestDir: {app}/Contrib |
c0fa62259d06
mercurial.iss: add tcsh completion script
Pascal Quantin <pascal.quantin@gmail.com>
parents:
10029
diff
changeset
|
51 Source: contrib\tcsh_completion_build.sh; DestDir: {app}/Contrib |
7663
b0a0eb28a933
Package hgk Tcl/Tk script in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7662
diff
changeset
|
52 Source: contrib\hgk; DestDir: {app}/Contrib; DestName: hgk.tcl |
10182
eb0665db0c5c
Add RelaxNG schema to win32 installer
Pascal Quantin <pascal.quantin@gmail.com>
parents:
10083
diff
changeset
|
53 Source: contrib\xml.rnc; DestDir: {app}/Contrib |
10235
318d58fe4ceb
Add shrink-revlog.py to win32 installer
Pascal Quantin <pascal.quantin@gmail.com>
parents:
10212
diff
changeset
|
54 Source: contrib\shrink-revlog.py; DestDir: {app}/Contrib |
1844
b768f3ae0c2c
Remove patchbomb from list of contrib files to install since it's now an extension.
Lee Cantey <lcantey@gmail.com>
parents:
1690
diff
changeset
|
55 Source: contrib\win32\ReadMe.html; DestDir: {app}; Flags: isreadme |
7662
8aa338cd0df3
Update mercurial.ini file packaged in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7659
diff
changeset
|
56 Source: contrib\mergetools.hgrc; DestDir: {tmp}; |
8aa338cd0df3
Update mercurial.ini file packaged in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7659
diff
changeset
|
57 Source: contrib\win32\mercurial.ini; DestDir: {app}; DestName: Mercurial.ini; Check: CheckFile; AfterInstall: ConcatenateFiles; |
1844
b768f3ae0c2c
Remove patchbomb from list of contrib files to install since it's now an extension.
Lee Cantey <lcantey@gmail.com>
parents:
1690
diff
changeset
|
58 Source: contrib\win32\postinstall.txt; DestDir: {app}; DestName: ReleaseNotes.txt |
4629
a04b5f37eda7
Fixes to not require administrator privleges and use private copies of DLLs when running the Windows installer.
Lee Cantey <lcantey@gmail.com>
parents:
4385
diff
changeset
|
59 Source: dist\hg.exe; DestDir: {app}; AfterInstall: Touch('{app}\hg.exe.local') |
8057
2a4cb1d509ec
Bundle python dll in win32 installer if present
Pascal Quantin <pascal.quantin@gmail.com>
parents:
8056
diff
changeset
|
60 Source: dist\python*.dll; Destdir: {app}; Flags: skipifsourcedoesntexist |
1844
b768f3ae0c2c
Remove patchbomb from list of contrib files to install since it's now an extension.
Lee Cantey <lcantey@gmail.com>
parents:
1690
diff
changeset
|
61 Source: dist\library.zip; DestDir: {app} |
9357
7ee67a037dcb
iss: make mfc*.dll and msvc*.dll optional
Steve Borho <steve@borho.org>
parents:
9356
diff
changeset
|
62 Source: dist\mfc*.dll; DestDir: {app}; Flags: skipifsourcedoesntexist |
7ee67a037dcb
iss: make mfc*.dll and msvc*.dll optional
Steve Borho <steve@borho.org>
parents:
9356
diff
changeset
|
63 Source: dist\msvc*.dll; DestDir: {app}; Flags: skipifsourcedoesntexist |
8058
a0555ae394b3
Add Python 2.6 support to win32 installer
Pascal Quantin <pascal.quantin@gmail.com>
parents:
8057
diff
changeset
|
64 Source: dist\Microsoft.VC*.CRT.manifest; DestDir: {app}; Flags: skipifsourcedoesntexist |
a0555ae394b3
Add Python 2.6 support to win32 installer
Pascal Quantin <pascal.quantin@gmail.com>
parents:
8057
diff
changeset
|
65 Source: dist\Microsoft.VC*.MFC.manifest; DestDir: {app}; Flags: skipifsourcedoesntexist |
1844
b768f3ae0c2c
Remove patchbomb from list of contrib files to install since it's now an extension.
Lee Cantey <lcantey@gmail.com>
parents:
1690
diff
changeset
|
66 Source: dist\w9xpopen.exe; DestDir: {app} |
2384
068b32d06873
Automatically add the path of hg to %PATH% using add_path
Marco Barisione <marco@barisione.org>
parents:
2276
diff
changeset
|
67 Source: dist\add_path.exe; DestDir: {app} |
4822
4da2149b63a1
Add html docs and use for help shortcut
Lee Cantey <lcantey@gmail.com>
parents:
4629
diff
changeset
|
68 Source: doc\*.html; DestDir: {app}\Docs |
9633
82a4c54d51e1
Add style.css file to Inno Setup script
Pascal Quantin <pascal.quantin@gmail.com>
parents:
9357
diff
changeset
|
69 Source: doc\style.css; DestDir: {app}\Docs |
10002
66f3b8c95b62
Update win32 installer with changes from f91e5630ce7e
Pascal Quantin <pascal.quantin@gmail.com>
parents:
9911
diff
changeset
|
70 Source: mercurial\help\*.txt; DestDir: {app}\help |
10083
580892d01310
mercurial.iss: update locale location
Patrick Mezard <pmezard@gmail.com>
parents:
10031
diff
changeset
|
71 Source: mercurial\locale\*.*; DestDir: {app}\locale; Flags: recursesubdirs createallsubdirs |
10002
66f3b8c95b62
Update win32 installer with changes from f91e5630ce7e
Pascal Quantin <pascal.quantin@gmail.com>
parents:
9911
diff
changeset
|
72 Source: mercurial\templates\*.*; DestDir: {app}\Templates; Flags: recursesubdirs createallsubdirs |
1844
b768f3ae0c2c
Remove patchbomb from list of contrib files to install since it's now an extension.
Lee Cantey <lcantey@gmail.com>
parents:
1690
diff
changeset
|
73 Source: CONTRIBUTORS; DestDir: {app}; DestName: Contributors.txt |
1290
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
74 Source: COPYING; DestDir: {app}; DestName: Copying.txt |
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
75 |
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
76 [INI] |
8936
1de6e7e1bb9f
change wiki/bts URLs to point to new hostname
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
8058
diff
changeset
|
77 Filename: {app}\Mercurial.url; Section: InternetShortcut; Key: URL; String: http://mercurial.selenic.com/ |
1290
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
78 |
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
79 [UninstallDelete] |
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
80 Type: files; Name: {app}\Mercurial.url |
10235
318d58fe4ceb
Add shrink-revlog.py to win32 installer
Pascal Quantin <pascal.quantin@gmail.com>
parents:
10212
diff
changeset
|
81 Type: files; Name: {app}\Contrib\shrink-revlog.pyc |
1290
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
82 |
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
83 [Icons] |
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
84 Name: {group}\Uninstall Mercurial; Filename: {uninstallexe} |
4822
4da2149b63a1
Add html docs and use for help shortcut
Lee Cantey <lcantey@gmail.com>
parents:
4629
diff
changeset
|
85 Name: {group}\Mercurial Command Reference; Filename: {app}\Docs\hg.1.html |
8056
f614f11a96ca
Win32 installer: add hgrc.5.html and hgignore.5.html links to Start Menu folder
Pascal Quantin <pascal.quantin@gmail.com>
parents:
7809
diff
changeset
|
86 Name: {group}\Mercurial Configuration Files; Filename: {app}\Docs\hgrc.5.html |
f614f11a96ca
Win32 installer: add hgrc.5.html and hgignore.5.html links to Start Menu folder
Pascal Quantin <pascal.quantin@gmail.com>
parents:
7809
diff
changeset
|
87 Name: {group}\Mercurial Ignore Files; Filename: {app}\Docs\hgignore.5.html |
1290
f310f034422f
Add Windows installer file.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
88 Name: {group}\Mercurial Web Site; Filename: {app}\Mercurial.url |
2384
068b32d06873
Automatically add the path of hg to %PATH% using add_path
Marco Barisione <marco@barisione.org>
parents:
2276
diff
changeset
|
89 |
068b32d06873
Automatically add the path of hg to %PATH% using add_path
Marco Barisione <marco@barisione.org>
parents:
2276
diff
changeset
|
90 [Run] |
068b32d06873
Automatically add the path of hg to %PATH% using add_path
Marco Barisione <marco@barisione.org>
parents:
2276
diff
changeset
|
91 Filename: "{app}\add_path.exe"; Parameters: "{app}"; Flags: postinstall; Description: "Add the installation path to the search path" |
068b32d06873
Automatically add the path of hg to %PATH% using add_path
Marco Barisione <marco@barisione.org>
parents:
2276
diff
changeset
|
92 |
068b32d06873
Automatically add the path of hg to %PATH% using add_path
Marco Barisione <marco@barisione.org>
parents:
2276
diff
changeset
|
93 [UninstallRun] |
068b32d06873
Automatically add the path of hg to %PATH% using add_path
Marco Barisione <marco@barisione.org>
parents:
2276
diff
changeset
|
94 Filename: "{app}\add_path.exe"; Parameters: "/del {app}" |
4629
a04b5f37eda7
Fixes to not require administrator privleges and use private copies of DLLs when running the Windows installer.
Lee Cantey <lcantey@gmail.com>
parents:
4385
diff
changeset
|
95 |
a04b5f37eda7
Fixes to not require administrator privleges and use private copies of DLLs when running the Windows installer.
Lee Cantey <lcantey@gmail.com>
parents:
4385
diff
changeset
|
96 [UninstallDelete] |
a04b5f37eda7
Fixes to not require administrator privleges and use private copies of DLLs when running the Windows installer.
Lee Cantey <lcantey@gmail.com>
parents:
4385
diff
changeset
|
97 Type: files; Name: "{app}\hg.exe.local" |
7662
8aa338cd0df3
Update mercurial.ini file packaged in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7659
diff
changeset
|
98 [Code] |
8aa338cd0df3
Update mercurial.ini file packaged in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7659
diff
changeset
|
99 var |
8aa338cd0df3
Update mercurial.ini file packaged in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7659
diff
changeset
|
100 WriteFile: Boolean; |
8aa338cd0df3
Update mercurial.ini file packaged in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7659
diff
changeset
|
101 CheckDone: Boolean; |
4629
a04b5f37eda7
Fixes to not require administrator privleges and use private copies of DLLs when running the Windows installer.
Lee Cantey <lcantey@gmail.com>
parents:
4385
diff
changeset
|
102 |
7662
8aa338cd0df3
Update mercurial.ini file packaged in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7659
diff
changeset
|
103 function CheckFile(): Boolean; |
8aa338cd0df3
Update mercurial.ini file packaged in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7659
diff
changeset
|
104 begin |
8aa338cd0df3
Update mercurial.ini file packaged in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7659
diff
changeset
|
105 if not CheckDone then begin |
8aa338cd0df3
Update mercurial.ini file packaged in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7659
diff
changeset
|
106 WriteFile := True; |
8aa338cd0df3
Update mercurial.ini file packaged in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7659
diff
changeset
|
107 if FileExists(ExpandConstant(CurrentFileName)) then begin |
8aa338cd0df3
Update mercurial.ini file packaged in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7659
diff
changeset
|
108 WriteFile := MsgBox('' + ExpandConstant(CurrentFileName) + '' #13#13 'The file already exists.' #13#13 'Would you like Setup to overwrite it?', mbConfirmation, MB_YESNO) = idYes; |
8aa338cd0df3
Update mercurial.ini file packaged in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7659
diff
changeset
|
109 end; |
8aa338cd0df3
Update mercurial.ini file packaged in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7659
diff
changeset
|
110 CheckDone := True; |
8aa338cd0df3
Update mercurial.ini file packaged in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7659
diff
changeset
|
111 end; |
8aa338cd0df3
Update mercurial.ini file packaged in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7659
diff
changeset
|
112 Result := WriteFile; |
8aa338cd0df3
Update mercurial.ini file packaged in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7659
diff
changeset
|
113 end; |
8aa338cd0df3
Update mercurial.ini file packaged in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7659
diff
changeset
|
114 |
8aa338cd0df3
Update mercurial.ini file packaged in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7659
diff
changeset
|
115 procedure ConcatenateFiles(); |
8aa338cd0df3
Update mercurial.ini file packaged in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7659
diff
changeset
|
116 var |
8aa338cd0df3
Update mercurial.ini file packaged in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7659
diff
changeset
|
117 MergeConfigs: TArrayOfString; |
8aa338cd0df3
Update mercurial.ini file packaged in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7659
diff
changeset
|
118 begin |
8aa338cd0df3
Update mercurial.ini file packaged in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7659
diff
changeset
|
119 if LoadStringsFromFile(ExpandConstant('{tmp}\mergetools.hgrc'),MergeConfigs) then begin |
8aa338cd0df3
Update mercurial.ini file packaged in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7659
diff
changeset
|
120 SaveStringsToFile(ExpandConstant(CurrentFileName),MergeConfigs,True); |
8aa338cd0df3
Update mercurial.ini file packaged in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7659
diff
changeset
|
121 end; |
8aa338cd0df3
Update mercurial.ini file packaged in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7659
diff
changeset
|
122 end; |
8aa338cd0df3
Update mercurial.ini file packaged in win32 installer
Pascal Quantin <pascal.quantin@wavecom.com>
parents:
7659
diff
changeset
|
123 |
4629
a04b5f37eda7
Fixes to not require administrator privleges and use private copies of DLLs when running the Windows installer.
Lee Cantey <lcantey@gmail.com>
parents:
4385
diff
changeset
|
124 procedure Touch(fn: String); |
a04b5f37eda7
Fixes to not require administrator privleges and use private copies of DLLs when running the Windows installer.
Lee Cantey <lcantey@gmail.com>
parents:
4385
diff
changeset
|
125 begin |
a04b5f37eda7
Fixes to not require administrator privleges and use private copies of DLLs when running the Windows installer.
Lee Cantey <lcantey@gmail.com>
parents:
4385
diff
changeset
|
126 SaveStringToFile(ExpandConstant(fn), '', False); |
a04b5f37eda7
Fixes to not require administrator privleges and use private copies of DLLs when running the Windows installer.
Lee Cantey <lcantey@gmail.com>
parents:
4385
diff
changeset
|
127 end; |