OLD | NEW |
1 <?xml version="1.0" encoding="UTF-8"?> | 1 <?xml version="1.0" encoding="UTF-8"?> |
2 <!-- | 2 <!-- |
3 Compilation Note: | 3 Compilation Note: |
4 You may see linking errors that look like these: | 4 You may see linking errors that look like these: |
5 <quote>LGHT0217 : Error executing ICE action 'ICExx' [...] The error code is
2738.</quote> | 5 <quote>LGHT0217 : Error executing ICE action 'ICExx' [...] The error code is
2738.</quote> |
6 The documentation for this error code talks about custom actions, | 6 The documentation for this error code talks about custom actions, |
7 even though the CustomAction keyword does not appear in this source. | 7 even though the CustomAction keyword does not appear in this source. |
8 Certain WiX elements are implemented by MSI custom actions, | 8 Certain WiX elements are implemented by MSI custom actions, |
9 which means this source implicitly declares some insofar as the Windows Inst
aller sees it. | 9 which means this source implicitly declares some insofar as the Windows Inst
aller sees it. |
10 These errors are benign and can be avoided by some fiddling with the registry
on the development machine. | 10 These errors are benign and can be avoided by some fiddling with the registry
on the development machine. |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 The build system presently embeds transforms for them, but without their L
CID in this list, they won't be recognized. | 105 The build system presently embeds transforms for them, but without their L
CID in this list, they won't be recognized. |
106 These embedded transforms, however, can be explicitly applied on the comma
nd line of msiexec. | 106 These embedded transforms, however, can be explicitly applied on the comma
nd line of msiexec. |
107 --> | 107 --> |
108 <Package | 108 <Package |
109 SummaryCodepage="1252" | 109 SummaryCodepage="1252" |
110 Keywords="Installer, Adblock Plus" | 110 Keywords="Installer, Adblock Plus" |
111 Description="Adblock Plus for IE" | 111 Description="Adblock Plus for IE" |
112 Comments="Thank you for using Adblock Plus." | 112 Comments="Thank you for using Adblock Plus." |
113 Manufacturer="Eyeo GmbH" | 113 Manufacturer="Eyeo GmbH" |
114 InstallerVersion="$(var.Minimum_Version)" | 114 InstallerVersion="$(var.Minimum_Version)" |
115 Languages="7,1,9,12,16,19,1026,1027,1028,1029,1030,1032,1034,1035,1037,103
8,1041,1044,1045,1046,1048,1049,1050,1051,1053,1054,1055,1058,1061,1081,2052,207
0" | 115 Languages="9,1,7,12,16,19,1026,1027,1029,1030,1032,1034,1035,1037,1038,104
1,1044,1045,1046,1048,1049,1050,1051,1053,1054,1055,1058,1061,2052,2070" |
116 Compressed="yes" | 116 Compressed="yes" |
117 InstallScope="perMachine" InstallPrivileges="elevated" | 117 InstallScope="perMachine" InstallPrivileges="elevated" |
118 /> | 118 /> |
119 <!-- | 119 <!-- |
120 The MajorUpgrade tag allows us to specify the relationship between our | 120 The MajorUpgrade tag allows us to specify the relationship between our |
121 version number and the one installed. The attribute Disallow="no" is | 121 version number and the one installed. The attribute Disallow="no" is |
122 implied and allows major upgrades to be performed. Downgrades aren't | 122 implied and allows major upgrades to be performed. Downgrades aren't |
123 allowed by default. | 123 allowed by default. |
124 | 124 |
125 The @Schedule attribute looks a little opaque. | 125 The @Schedule attribute looks a little opaque. |
(...skipping 695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
821 </ComponentGroup> | 821 </ComponentGroup> |
822 <DirectoryRef Id="ABP_APPDATA_FOLDER"> | 822 <DirectoryRef Id="ABP_APPDATA_FOLDER"> |
823 <Directory Id="ini" FileSource="$(var.plugin_dir)\files"> | 823 <Directory Id="ini" FileSource="$(var.plugin_dir)\files"> |
824 <Component Id="ini_settings.ini" Guid="dc30c3b0-d713-11e2-8b8b-0800200c9
a66"> | 824 <Component Id="ini_settings.ini" Guid="dc30c3b0-d713-11e2-8b8b-0800200c9
a66"> |
825 <File Name="settings.ini"/> | 825 <File Name="settings.ini"/> |
826 </Component> | 826 </Component> |
827 </Directory> | 827 </Directory> |
828 </DirectoryRef> | 828 </DirectoryRef> |
829 </Product> | 829 </Product> |
830 </Wix> | 830 </Wix> |
OLD | NEW |