Welcome to mirror list, hosted at ThFree Co, Russian Federation.

appxmanifest.xml « misc « win - dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4df7277f6d2b9bb560d16252c68e53a1212a0d59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?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:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
  xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities">
  <Identity
    Name="2126Gajim.Gajim"
    Version="QL_VERSION"
    Publisher="CN=7BA5D718-F03F-4E0C-BC3A-3CBC8E87B36A"
    ProcessorArchitecture="x64" />
  <Properties>
    <DisplayName>Gajim</DisplayName>
    <PublisherDisplayName>Gajim</PublisherDisplayName>
    <Description>A fully-featured XMPP client</Description>
    <Logo>gajim50x50.png</Logo>
  </Properties>
  <Resources>
    <Resource Language="en-us" />
  </Resources>
  <Dependencies>
    <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.22621.0" />
  </Dependencies>
  <Capabilities>
    <rescap:Capability Name="runFullTrust"/>
  </Capabilities>
  <Applications>
    <Application Id="Gajim" Executable="bin\Gajim.exe" EntryPoint="Windows.FullTrustApplication">
      <uap:VisualElements
        BackgroundColor="transparent"
        DisplayName="Gajim"
        Square44x44Logo="gajim44x44.png"
        Square150x150Logo="gajim150x150.png"
        Description="Gajim">
      </uap:VisualElements>
      <Extensions>
        <desktop:Extension Category="windows.startupTask" Executable="bin\Gajim.exe" EntryPoint="Windows.FullTrustApplication">
          <desktop:StartupTask TaskId="Gajim" Enabled="true" DisplayName="Gajim"/>
        </desktop:Extension>
        <uap:Extension Category="windows.protocol">
          <uap:Protocol Name="xmpp">
            <uap:DisplayName>XMPP URI Scheme</uap:DisplayName>
          </uap:Protocol>
        </uap:Extension>
      </Extensions>
    </Application>
  </Applications>
</Package>