Skip to content

Commit

Permalink
chore: app information was added (#393)
Browse files Browse the repository at this point in the history
  • Loading branch information
ValeraFinebits authored Oct 30, 2024
1 parent 631d691 commit fca1ab9
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 13 deletions.
14 changes: 7 additions & 7 deletions source/Eppie.App/Eppie.App.UWP/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
IgnorableNamespaces="uap mp">

<Identity
Name="920fe17e-d6c7-44cf-b13d-8ba5259d4999"
Publisher="CN=alex"
Name="Tuvisoft.Eppie"
Publisher="CN=DAC4344D-4C49-4539-938D-A1947B946DCD"
Version="1.0.0.0" />

<mp:PhoneIdentity PhoneProductId="920fe17e-d6c7-44cf-b13d-8ba5259d4999" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
<mp:PhoneIdentity PhoneProductId="d0dcdbce-b73c-4b0f-8253-32ee2bcf4831" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>

<Properties>
<DisplayName>Eppie.App.UWP</DisplayName>
<PublisherDisplayName>alex</PublisherDisplayName>
<DisplayName>Eppie</DisplayName>
<PublisherDisplayName>Finebits</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo>
</Properties>

Expand All @@ -32,10 +32,10 @@
Executable="$targetnametoken$.exe"
EntryPoint="Eppie.App.UWP.App">
<uap:VisualElements
DisplayName="Eppie.App.UWP"
DisplayName="Eppie"
Square150x150Logo="Assets\Square150x150Logo.png"
Square44x44Logo="Assets\Square44x44Logo.png"
Description="Eppie.App.UWP"
Description="Eppie App (UWP)"
BackgroundColor="transparent">
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"/>
<uap:SplashScreen Image="Assets\SplashScreen.png" />
Expand Down
4 changes: 2 additions & 2 deletions source/Eppie.App/Eppie.App.UWP/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
[assembly: AssemblyConfiguration("")]

// ToDo: Company name
[assembly: AssemblyCompany("<ToDo>")]
[assembly: AssemblyCompany("Tuvisoft")]
[assembly: AssemblyProduct("Eppie.App.UWP")]

// ToDo: Company name
[assembly: AssemblyCopyright("Copyright © <ToDo> 2024")]
[assembly: AssemblyCopyright("Copyright © Tuvisoft 2024")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down
13 changes: 9 additions & 4 deletions source/Eppie.App/Eppie.App/Package.appxmanifest
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<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"
IgnorableNamespaces="uap rescap">

<Identity />
<Properties />
<Identity Name="Tuvisoft.Eppie" Version="0.0.0"/>
<Properties >
<DisplayName>Eppie</DisplayName>
<PublisherDisplayName>Finebits</PublisherDisplayName>
</Properties >

<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
Expand All @@ -21,7 +24,9 @@
<Application Id="App"
Executable="$targetnametoken$.exe"
EntryPoint="$targetentrypoint$">
<uap:VisualElements />
<uap:VisualElements Description="Eppie App" DisplayName="Eppie">
<uap:DefaultTile/>
</uap:VisualElements >
</Application>
</Applications>

Expand Down

0 comments on commit fca1ab9

Please sign in to comment.