mirror of
https://github.com/kiwix/kiwix-js-pwa.git
synced 2025-09-11 05:08:43 -04:00
Bin
Former-commit-id: 78e27610f6697ca8b0082b370d1767f526ef6b94 [formerly 1df6719041b188ec11cfd59db0b9df4800c7826e] Former-commit-id: fc08084da410aa3ab8a87b5119d14ddf3a6419c8
This commit is contained in:
parent
2635d564fd
commit
b9e988dcad
@ -14,7 +14,7 @@
|
||||
<AppxPackageIsForStore>False</AppxPackageIsForStore>
|
||||
<AppxShowAllApps>False</AppxShowAllApps>
|
||||
<AppxBuildConfigurationSelection>neutral</AppxBuildConfigurationSelection>
|
||||
<PackageOptionalProjectsInIdeBuilds>True</PackageOptionalProjectsInIdeBuilds>
|
||||
<PackageOptionalProjectsInIdeBuilds>False</PackageOptionalProjectsInIdeBuilds>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||
<DebuggerFlavor>AppHostLocalDebugger</DebuggerFlavor>
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
For more information on package manifest files, see http://go.microsoft.com/fwlink/?LinkID=241727
|
||||
-->
|
||||
<Identity Name="a1a5e0b9-13d4-41fb-810d-518949f03df4" Version="0.7.8.0" Publisher="CN=geoff" ProcessorArchitecture="neutral" />
|
||||
<Identity Name="a1a5e0b9-13d4-41fb-810d-518949f03df4" Version="0.7.9.0" Publisher="CN=geoff" ProcessorArchitecture="neutral" />
|
||||
<mp:PhoneIdentity PhoneProductId="a1a5e0b9-13d4-41fb-810d-518949f03df4" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
|
||||
<Properties>
|
||||
<DisplayName>Kiwix JS</DisplayName>
|
||||
|
@ -20,19 +20,19 @@
|
||||
<WindowsSdkPath>
|
||||
</WindowsSdkPath>
|
||||
<LayoutDir>C:\Users\geoff\Source\Repos\kiwix-js-windows\bin\Release\AppX</LayoutDir>
|
||||
<RegisteredManifestChecksum>FC84D54C3CB93DCEECDA38109B66AAAC606513716087165A0127AECF9B4E8402</RegisteredManifestChecksum>
|
||||
<RegisteredPackageMoniker>a1a5e0b9-13d4-41fb-810d-518949f03df4_0.7.8.0_neutral__zfxmafgedzx24</RegisteredPackageMoniker>
|
||||
<RegisteredManifestChecksum>5791E8547E4DD2D620043E19F8A597E9FFB007B58A729C2B5056B69A0798C084</RegisteredManifestChecksum>
|
||||
<RegisteredPackageMoniker>a1a5e0b9-13d4-41fb-810d-518949f03df4_0.7.9.0_neutral__zfxmafgedzx24</RegisteredPackageMoniker>
|
||||
<RegisteredUserModeAppID>a1a5e0b9-13d4-41fb-810d-518949f03df4_zfxmafgedzx24!App</RegisteredUserModeAppID>
|
||||
<RegisteredPackageID>a1a5e0b9-13d4-41fb-810d-518949f03df4</RegisteredPackageID>
|
||||
<RegisteredPackagePublisher>CN=geoff</RegisteredPackagePublisher>
|
||||
<RegisteredVersion>0.7.8.0</RegisteredVersion>
|
||||
<RegisteredVersion>0.7.9.0</RegisteredVersion>
|
||||
<JitOptimizationSuppressed>True</JitOptimizationSuppressed>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<AppXManifest Include="C:\Users\geoff\Source\Repos\kiwix-js-windows\bin\Release\AppxManifest.xml">
|
||||
<PackagePath>AppxManifest.xml</PackagePath>
|
||||
<ReRegisterAppIfChanged>true</ReRegisterAppIfChanged>
|
||||
<Modified>2017-08-07T07:17:46.496</Modified>
|
||||
<Modified>2017-08-07T13:53:19.053</Modified>
|
||||
</AppXManifest>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@ -603,7 +603,7 @@
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\Users\geoff\Source\Repos\kiwix-js-windows\www\js\MathJax\config\config.js">
|
||||
<PackagePath>www\js\MathJax\config\config.js</PackagePath>
|
||||
<Modified>2017-08-07T07:17:27.329</Modified>
|
||||
<Modified>2017-08-07T13:52:25.285</Modified>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\Users\geoff\Source\Repos\kiwix-js-windows\www\js\MathJax\extensions\a11y\accessibility-menu.js">
|
||||
<PackagePath>www\js\MathJax\extensions\a11y\accessibility-menu.js</PackagePath>
|
||||
@ -1456,7 +1456,7 @@
|
||||
<AppxPackagedFile Include="C:\Users\geoff\Source\Repos\kiwix-js-windows\bin\Release\ReverseMap\resources.pri">
|
||||
<PackagePath>resources.pri</PackagePath>
|
||||
<ReRegisterAppIfChanged>true</ReRegisterAppIfChanged>
|
||||
<Modified>2017-08-07T06:40:52.194</Modified>
|
||||
<Modified>2017-08-07T13:53:18.828</Modified>
|
||||
</AppxPackagedFile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
@ -2,7 +2,14 @@ MathJax.Hub.Config({
|
||||
extensions: ["tex2jax.js"],
|
||||
jax: ["input/TeX", "output/HTML-CSS"],
|
||||
TeX: {
|
||||
extensions: ["AMSmath.js", "AMSsymbols.js"]
|
||||
extensions: ["AMSmath.js", "AMSsymbols.js", "noUndefined.js"],
|
||||
noUndefined: {
|
||||
attributes: {
|
||||
mathcolor: "red",
|
||||
mathbackground: "#FFEEEE",
|
||||
mathsize: "90%"
|
||||
}
|
||||
}
|
||||
},
|
||||
"HTML-CSS": {
|
||||
availableFonts: ["TeX"],
|
||||
|
@ -1099,7 +1099,7 @@
|
||||
<AppxPackagedFile Include="C:\Users\geoff\Source\Repos\kiwix-js-windows\www\js\MathJax\extensions\a11y\mathmaps\.htaccess">
|
||||
<PackagePath>www\js\MathJax\extensions\a11y\mathmaps\.htaccess</PackagePath>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\Users\geoff\Source\Repos\kiwix-js-windows\bin\Release\resources.pri">
|
||||
<AppxPackagedFile Include="C:\Users\geoff\Source\Repos\kiwix-js-windows\bin\Release\ReverseMap\resources.pri">
|
||||
<PackagePath>resources.pri</PackagePath>
|
||||
<ReRegisterAppIfChanged>true</ReRegisterAppIfChanged>
|
||||
</AppxPackagedFile>
|
||||
|
Binary file not shown.
@ -45,4 +45,4 @@ C:\Users\geoff\Source\Repos\kiwix-js-windows\bld\Release\qualifiers.txt
|
||||
C:\Users\geoff\Source\Repos\kiwix-js-windows\bld\Release\qualifiers.txt.intermediate
|
||||
C:\Users\geoff\Source\Repos\kiwix-js-windows\bld\Release\MultipleQualifiersPerDimensionFound.txt
|
||||
C:\Users\geoff\Source\Repos\kiwix-js-windows\bld\Release\ProjectArchitectures.txt
|
||||
C:\Users\geoff\Source\Repos\kiwix-js-windows\bin\Release\resources.pri
|
||||
C:\Users\geoff\Source\Repos\kiwix-js-windows\bin\Release\ReverseMap\resources.pri
|
||||
|
@ -2,7 +2,14 @@ MathJax.Hub.Config({
|
||||
extensions: ["tex2jax.js"],
|
||||
jax: ["input/TeX", "output/HTML-CSS"],
|
||||
TeX: {
|
||||
extensions: ["AMSmath.js", "AMSsymbols.js"]
|
||||
extensions: ["AMSmath.js", "AMSsymbols.js", "noUndefined.js"],
|
||||
noUndefined: {
|
||||
attributes: {
|
||||
mathcolor: "red",
|
||||
mathbackground: "#FFEEEE",
|
||||
mathsize: "90%"
|
||||
}
|
||||
}
|
||||
},
|
||||
"HTML-CSS": {
|
||||
availableFonts: ["TeX"],
|
||||
|
Loading…
x
Reference in New Issue
Block a user