diff options
author | Anton Fedchin <anightik@gmail.com> | 2017-12-19 20:35:58 +0300 |
---|---|---|
committer | Anton Fedchin <anightik@gmail.com> | 2017-12-19 21:42:13 +0300 |
commit | a1dafa972e52c10bd23786c23cd28e8246e3ead8 (patch) | |
tree | 378782e59cac3d72fc83a06eefb548919a2ca75c /project/Win32BuildSetup | |
parent | c8ac5124a4cb47ca92f7e82c2ea426bd5ea940fc (diff) |
[app] move app brandind to version.txt
Diffstat (limited to 'project/Win32BuildSetup')
-rw-r--r-- | project/Win32BuildSetup/AppxManifest.xml.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/project/Win32BuildSetup/AppxManifest.xml.in b/project/Win32BuildSetup/AppxManifest.xml.in index 6b4d1636b2..e8d0959ab0 100644 --- a/project/Win32BuildSetup/AppxManifest.xml.in +++ b/project/Win32BuildSetup/AppxManifest.xml.in @@ -1,10 +1,10 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <Package IgnorableNamespaces="uap" 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"> - <Identity Name="XBMCFoundation.Kodi" ProcessorArchitecture="@TARGET_ARCHITECTURE@" Publisher="CN=C62BD90A-CDD8-477F-96C3-B25992247B97" Version="@VERSION_NUMBER@" /> + <Identity Name="@PACKAGE_IDENTITY@" ProcessorArchitecture="@TARGET_ARCHITECTURE@" Publisher="CN=@PACKAGE_PUBLISHER@" Version="@VERSION_CODE@.0" /> <Properties> <DisplayName>@APP_NAME@</DisplayName> <PublisherDisplayName>@COMPANY_NAME@</PublisherDisplayName> - <Description>Kodi is an open source (GPL) software media center for playing videos, music, pictures, games, and more.</Description> + <Description>@PACKAGE_DESCRIPTION@</Description> <Logo>media\icon256x256.png</Logo> </Properties> <Dependencies> @@ -16,7 +16,8 @@ </Resources> <Applications> <Application Id="Kodi" Executable="Kodi.exe" EntryPoint="Windows.FullTrustApplication"> - <uap:VisualElements DisplayName="@APP_NAME@" Square150x150Logo="media\icon256x256.png" Square44x44Logo="media\icon48x48.png" Description="Kodi is an open source (GPL) software media center for playing videos, music, pictures, games, and more." BackgroundColor="transparent"> + <uap:VisualElements DisplayName="@APP_NAME@" Description="@PACKAGE_DESCRIPTION@" + Square150x150Logo="media\icon256x256.png" Square44x44Logo="media\icon48x48.png" BackgroundColor="transparent"> <uap:DefaultTile Wide310x150Logo="media\banner.png" /> <uap:InitialRotationPreference> <uap:Rotation Preference="landscape" /> |