mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
dd1bf3b998
* This is a "stealth" update for the 3.0 release * The issue was that we are picking the UTF16 file system name from the dropdown, and where we use the "(Default)" suffixed version, it now has an RLE at the beginning which we must skip. * This prevented RTL languages from being able to format a drive as FAT32...
51 lines
2 KiB
XML
51 lines
2 KiB
XML
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
|
<Package
|
|
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
|
|
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
|
|
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities">
|
|
<!-- NB: If you're signing with Authenticode, then the Publisher *MUST* match the LDAP fields from the
|
|
signature certificate exactly, else SignTool will fail with error 0x8007000b. Note that this makes
|
|
for an interesting struggle, when you also happen to have a comma in one of the fields... -->
|
|
<Identity
|
|
Name="Rufus"
|
|
Version="3.0.1304.0"
|
|
ProcessorArchitecture="x86"
|
|
Publisher='CN=Akeo Consulting, O=Akeo Consulting, STREET=24 Grey Rock, L=Milford, S=Co. Donegal, PostalCode=F92 D667, C=IE' />
|
|
<Properties>
|
|
<DisplayName>Rufus</DisplayName>
|
|
<PublisherDisplayName>Akeo Consulting</PublisherDisplayName>
|
|
<Description>Rufus</Description>
|
|
<Logo>Assets\Square44x44Logo.png</Logo>
|
|
</Properties>
|
|
<Resources>
|
|
<Resource Language="en-US" />
|
|
</Resources>
|
|
<Dependencies>
|
|
<TargetDeviceFamily
|
|
Name="Windows.Desktop"
|
|
MinVersion="10.0.14316.0"
|
|
MaxVersionTested="10.0.15063.0" />
|
|
</Dependencies>
|
|
<Capabilities>
|
|
<rescap:Capability Name="runFullTrust"/>
|
|
</Capabilities>
|
|
<Applications>
|
|
<Application
|
|
Id="Rufus"
|
|
Executable="rufus.exe"
|
|
EntryPoint="Windows.FullTrustApplication">
|
|
<uap:VisualElements
|
|
BackgroundColor="transparent"
|
|
DisplayName="Rufus"
|
|
Square150x150Logo="Assets\Square150x150Logo.png"
|
|
Square44x44Logo="Assets\Square44x44Logo.png"
|
|
Description="Rufus">
|
|
<uap:DefaultTile>
|
|
<uap:ShowNameOnTiles>
|
|
<uap:ShowOn Tile="square150x150Logo" />
|
|
</uap:ShowNameOnTiles>
|
|
</uap:DefaultTile>
|
|
</uap:VisualElements>
|
|
</Application>
|
|
</Applications>
|
|
</Package>
|