diff options
author | Paul Rouget <me@paulrouget.com> | 2019-08-20 07:28:00 +0200 |
---|---|---|
committer | Paul Rouget <me@paulrouget.com> | 2019-08-21 11:03:19 +0200 |
commit | 5c1d130217db8ece7313d69a7e76130085d67e94 (patch) | |
tree | 292ed26562dca3f9198abdd78df4082dedf5fc33 /support/hololens/ServoApp/Package.appxmanifest | |
parent | 5f89dc87bd26ddb62931251edf7c76c782b96a94 (diff) | |
download | servo-5c1d130217db8ece7313d69a7e76130085d67e94.tar.gz servo-5c1d130217db8ece7313d69a7e76130085d67e94.zip |
Handle servo:// url
Diffstat (limited to 'support/hololens/ServoApp/Package.appxmanifest')
-rw-r--r-- | support/hololens/ServoApp/Package.appxmanifest | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/support/hololens/ServoApp/Package.appxmanifest b/support/hololens/ServoApp/Package.appxmanifest index c437822284c..52e5909a712 100644 --- a/support/hololens/ServoApp/Package.appxmanifest +++ b/support/hololens/ServoApp/Package.appxmanifest @@ -1,13 +1,10 @@ <?xml version="1.0" encoding="utf-8"?> <Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp"> - <Identity - Name="1d265729-8836-4bd3-9992-4cb111d1068b" - Publisher="CN=paul" - Version="1.0.0.0" /> - <mp:PhoneIdentity PhoneProductId="1d265729-8836-4bd3-9992-4cb111d1068b" PhonePublisherId="00000000-0000-0000-0000-000000000000"/> + <Identity Name="1d265729-8836-4bd3-9992-4cb111d1068b" Publisher="CN=paul" Version="1.0.0.0" /> + <mp:PhoneIdentity PhoneProductId="1d265729-8836-4bd3-9992-4cb111d1068b" PhonePublisherId="00000000-0000-0000-0000-000000000000" /> <Properties> <DisplayName>ServoApp</DisplayName> - <PublisherDisplayName>paul</PublisherDisplayName> + <PublisherDisplayName>Mozilla</PublisherDisplayName> <Logo>Assets\StoreLogo.png</Logo> </Properties> <Dependencies> @@ -18,15 +15,22 @@ </Resources> <Applications> <Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="ServoApp.App"> - <uap:VisualElements DisplayName="ServoApp" Description="Project for a single page C++/WinRT Universal Windows Platform (UWP) app with no predefined layout" - Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" BackgroundColor="transparent"> + <uap:VisualElements DisplayName="ServoApp" Description="A Servo-based browser." Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" BackgroundColor="transparent"> <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"> </uap:DefaultTile> <uap:SplashScreen Image="Assets\SplashScreen.png" /> </uap:VisualElements> + <Extensions> + <uap:Extension Category="windows.protocol"> + <uap:Protocol Name="servo"> + <uap:Logo>Assets\StoreLogo.png</uap:Logo> + <uap:DisplayName>Servo URL</uap:DisplayName> + </uap:Protocol> + </uap:Extension> + </Extensions> </Application> </Applications> <Capabilities> <Capability Name="internetClient" /> </Capabilities> -</Package> +</Package>
\ No newline at end of file |