LEFT | RIGHT |
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 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
351 <ComponentRef Id="html_static_img_background.png"/> | 351 <ComponentRef Id="html_static_img_background.png"/> |
352 <ComponentRef Id="html_static_img_bb_disable.png"/> | 352 <ComponentRef Id="html_static_img_bb_disable.png"/> |
353 <ComponentRef Id="html_static_img_bb_disable_active.png"/> | 353 <ComponentRef Id="html_static_img_bb_disable_active.png"/> |
354 <ComponentRef Id="html_static_img_bb_donate.png"/> | 354 <ComponentRef Id="html_static_img_bb_donate.png"/> |
355 <ComponentRef Id="html_static_img_bb_enable.png"/> | 355 <ComponentRef Id="html_static_img_bb_enable.png"/> |
356 <ComponentRef Id="html_static_img_bb_enable_active.png"/> | 356 <ComponentRef Id="html_static_img_bb_enable_active.png"/> |
357 <ComponentRef Id="html_static_img_checkmark.png"/> | 357 <ComponentRef Id="html_static_img_checkmark.png"/> |
358 <ComponentRef Id="html_static_img_features_language.png"/> | 358 <ComponentRef Id="html_static_img_features_language.png"/> |
359 <ComponentRef Id="html_static_img_features_adblocking.png"/> | 359 <ComponentRef Id="html_static_img_features_adblocking.png"/> |
360 <ComponentRef Id="html_static_img_social_facebook.png"/> | 360 <ComponentRef Id="html_static_img_social_facebook.png"/> |
361 <ComponentRef Id="html_static_img_social_facebook_old.png"/> | |
362 <ComponentRef Id="html_static_img_social_gplus.png"/> | 361 <ComponentRef Id="html_static_img_social_gplus.png"/> |
363 <ComponentRef Id="html_static_img_social_gplus_old.png"/> | |
364 <ComponentRef Id="html_static_img_social_twitter.png"/> | 362 <ComponentRef Id="html_static_img_social_twitter.png"/> |
365 <ComponentRef Id="html_static_img_social_twitter_old.png"/> | |
366 <ComponentRef Id="html_static_js_firstRun.js"/> | 363 <ComponentRef Id="html_static_js_firstRun.js"/> |
367 <ComponentRef Id="html_static_js_IESettings.js"/> | 364 <ComponentRef Id="html_static_js_IESettings.js"/> |
368 <ComponentRef Id="html_static_js_ieFirstRun.js"/> | 365 <ComponentRef Id="html_static_js_ieFirstRun.js"/> |
369 <ComponentRef Id="html_static_js_settings.js"/> | 366 <ComponentRef Id="html_static_js_settings.js"/> |
370 <ComponentRef Id="html_static_js_vendor_DD.belatedPNG.js"/> | 367 <ComponentRef Id="html_static_js_vendor_DD.belatedPNG.js"/> |
371 <ComponentRef Id="html_static_js_vendor_html5shiv.js"/> | 368 <ComponentRef Id="html_static_js_vendor_html5shiv.js"/> |
372 <ComponentRef Id="html_templates_firstRun.html"/> | 369 <ComponentRef Id="html_templates_firstRun.html"/> |
373 <ComponentRef Id="html_templates_index.html"/> | 370 <ComponentRef Id="html_templates_index.html"/> |
374 </ComponentGroup> | 371 </ComponentGroup> |
375 | 372 |
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
809 </ComponentGroup> | 806 </ComponentGroup> |
810 <DirectoryRef Id="ABP_APPDATA_FOLDER"> | 807 <DirectoryRef Id="ABP_APPDATA_FOLDER"> |
811 <Directory Id="ini" FileSource="$(var.plugin_dir)\files"> | 808 <Directory Id="ini" FileSource="$(var.plugin_dir)\files"> |
812 <Component Id="ini_settings.ini" Guid="dc30c3b0-d713-11e2-8b8b-0800200c9
a66"> | 809 <Component Id="ini_settings.ini" Guid="dc30c3b0-d713-11e2-8b8b-0800200c9
a66"> |
813 <File Name="settings.ini"/> | 810 <File Name="settings.ini"/> |
814 </Component> | 811 </Component> |
815 </Directory> | 812 </Directory> |
816 </DirectoryRef> | 813 </DirectoryRef> |
817 </Product> | 814 </Product> |
818 </Wix> | 815 </Wix> |
LEFT | RIGHT |