OLD | NEW |
1 <?xml version='1.0' encoding='windows-1252'?> | 1 <?xml version='1.0' encoding='windows-1252'?> |
2 | 2 |
3 <!-- | 3 <!-- |
4 Copyright 2009, Google Inc. | 4 Copyright 2009, Google Inc. |
5 All rights reserved. | 5 All rights reserved. |
6 | 6 |
7 Redistribution and use in source and binary forms, with or without | 7 Redistribution and use in source and binary forms, with or without |
8 modification, are permitted provided that the following conditions are | 8 modification, are permitted provided that the following conditions are |
9 met: | 9 met: |
10 | 10 |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 <!-- Copy the plugin to the mozilla plugin folder under | 69 <!-- Copy the plugin to the mozilla plugin folder under |
70 'Documents and Settings' --> | 70 'Documents and Settings' --> |
71 <Directory Id='TARGETDIR' Name='SourceDir'> | 71 <Directory Id='TARGETDIR' Name='SourceDir'> |
72 <Directory Id='AppDataFolder' Name='QFiles'> | 72 <Directory Id='AppDataFolder' Name='QFiles'> |
73 <Directory Id='pu.MozillaDir' Name='Mozilla'> | 73 <Directory Id='pu.MozillaDir' Name='Mozilla'> |
74 <Directory Id='pu.FirefoxPluginsDir' Name='plugins'> | 74 <Directory Id='pu.FirefoxPluginsDir' Name='plugins'> |
75 <Component Id='pu.Npdll' Guid='$(var.NppComponentGuid)'> | 75 <Component Id='pu.Npdll' Guid='$(var.NppComponentGuid)'> |
76 <File Id='pu.GoogleNpapiDll.dll' Name='npo3d.dll' | 76 <File Id='pu.GoogleNpapiDll.dll' Name='npo3d.dll' |
77 LongName='npo3dautoplugin.dll' DiskId='1' | 77 LongName='npo3dautoplugin.dll' DiskId='1' |
78 Source='$(var.NPPluginPath)' Vital='yes' /> | 78 Source='$(var.NPPluginPath)' Vital='yes' /> |
| 79 <Registry Id='pu.NpapiPlugin' Root='HKCU' |
| 80 Key='Software\MozillaPlugins\@google.com/O3DPlugin'> |
| 81 <Registry Id='pu.NpapiPluginPath' Type='string' |
| 82 Action='write' Name='Path' Value='[pu.FirefoxPluginsDir]npo3
dautoplugin.dll' /> |
| 83 <Registry Id='pu.NpapiPluginName' Type='string' |
| 84 Action='write' Name='ProductName' Value='O3D Plugin' /> |
| 85 <Registry Id='pu.NpapiPluginDescription' Type='string' |
| 86 Action='write' Name='Description' Value='O3D Plugin' /> |
| 87 <Registry Id='pu.NpapiPluginVendor' Type='string' |
| 88 Action='write' Name='Vendor' Value='Google' /> |
| 89 <Registry Id='pu.NpapiPluginVersion' Type='string' |
| 90 Action='write' Name='Version' Value='$(var.NppVersion)' /> |
| 91 </Registry> |
79 <Condition>NOT (ALLUSERS)</Condition> | 92 <Condition>NOT (ALLUSERS)</Condition> |
80 </Component> | 93 </Component> |
81 <?if $(var.IncludeSoftwareRenderer) = True ?> | 94 <?if $(var.IncludeSoftwareRenderer) = True ?> |
82 <Directory Id='O3DPrivateDllDir' Name='O3D' | 95 <Directory Id='O3DPrivateDllDir' Name='O3D' |
83 LongName='O3DExtras'> | 96 LongName='O3DExtras'> |
84 <Component Id='SoftwareRenderer' | 97 <Component Id='SoftwareRenderer' |
85 Guid='$(var.SoftwareRendererGuid)'> | 98 Guid='$(var.SoftwareRendererGuid)'> |
86 <File Id='renderer' LongName="swiftshader_d3d9.dll" | 99 <File Id='renderer' LongName="swiftshader_d3d9.dll" |
87 Vital='yes' DiskId='1' Name="ss_d3d9.dll" | 100 Vital='yes' DiskId='1' Name="ss_d3d9.dll" |
88 src='$(var.SoftwareRendererPath)' /> | 101 src='$(var.SoftwareRendererPath)' /> |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
351 (REMOVE="ALL") OR UPGRADING OR UPGRADING_DEPR | 364 (REMOVE="ALL") OR UPGRADING OR UPGRADING_DEPR |
352 </UnregisterClassInfo> | 365 </UnregisterClassInfo> |
353 <RemoveExistingProducts After='InstallInitialize'> | 366 <RemoveExistingProducts After='InstallInitialize'> |
354 UPGRADING OR UPGRADING_DEPR | 367 UPGRADING OR UPGRADING_DEPR |
355 </RemoveExistingProducts> | 368 </RemoveExistingProducts> |
356 <RegisterClassInfo/> | 369 <RegisterClassInfo/> |
357 </InstallExecuteSequence> | 370 </InstallExecuteSequence> |
358 | 371 |
359 </Product> | 372 </Product> |
360 </Wix> | 373 </Wix> |
OLD | NEW |