Merge pull request #222 from TheScientist/master

show app name on medium square tile
This commit is contained in:
André Fiedler 2017-07-17 22:11:55 +02:00 коммит произвёл GitHub
Родитель 499da4a453 9034f3821a
Коммит 9fda598c32
1 изменённых файлов: 10 добавлений и 7 удалений

Просмотреть файл

@ -16,7 +16,10 @@
<Applications>
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="Nextcloud.App">
<uap:VisualElements DisplayName="Nextcloud" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" Description="Nextcloud" BackgroundColor="transparent">
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png">
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" ShortName="Nextcloud">
<uap:ShowNameOnTiles>
<uap:ShowOn Tile="square150x150Logo" />
</uap:ShowNameOnTiles>
</uap:DefaultTile>
<uap:SplashScreen Image="Assets\SplashScreen.png" BackgroundColor="#0082C9" />
<uap:InitialRotationPreference>
@ -27,12 +30,6 @@
</uap:InitialRotationPreference>
</uap:VisualElements>
<Extensions>
<uap:Extension Category="windows.protocol">
<uap:Protocol Name="nextcloud">
<uap:Logo>Assets\StoreLogo.png</uap:Logo>
<uap:DisplayName>Nextcloud</uap:DisplayName>
</uap:Protocol>
</uap:Extension>
<uap:Extension Category="windows.shareTarget" EntryPoint="NextcloudApp.ShareTarget">
<uap:ShareTarget>
<uap:SupportedFileTypes>
@ -46,6 +43,12 @@
<uap:DataFormat>RTF</uap:DataFormat>
</uap:ShareTarget>
</uap:Extension>
<uap:Extension Category="windows.protocol">
<uap:Protocol Name="nextcloud">
<uap:Logo>Assets\StoreLogo.png</uap:Logo>
<uap:DisplayName>Nextcloud</uap:DisplayName>
</uap:Protocol>
</uap:Extension>
</Extensions>
</Application>
</Applications>