-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcom.pojtinger.felicitas.connmapper.main.metainfo.xml
88 lines (78 loc) · 3.73 KB
/
com.pojtinger.felicitas.connmapper.main.metainfo.xml
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?xml version="1.0" encoding="UTF-8"?>
<component type="desktop-application">
<id>{{ .AppID }}</id>
<name>{{ .AppName }}</name>
<summary>{{ .AppSummary }}</summary>
<metadata_license>CC0-1.0</metadata_license>
<project_license>{{ .AppSPDX }}</project_license>
<developer id="{{ DeveloperID .AppID }}">
<name translatable="no">{{ (LastRelease .AppReleases).Author }}</name>
</developer>
<content_rating type="oars-1.1"/>
<url type="bugtracker">https://github.com/pojntfx/connmapper/issues</url>
<url type="homepage">{{ .AppURL }}</url>
<url type="donation">https://github.com/sponsors/pojntfx</url>
<url type="contact">https://felicitas.pojtinger.com/imprint</url>
<url type="faq">https://github.com/pojntfx/connmapper#tutorial</url>
<url type="vcs-browser">{{ .AppGit }}</url>
<launchable type="desktop-id">{{ .AppID }}.desktop</launchable>
<provides>
<binary>{{ .AppID }}</binary>
</provides>
<branding>
<color type="primary" scheme_preference="light">#040615</color>
<color type="primary" scheme_preference="dark">#000107</color>
</branding>
<description>
<p>Connmapper is an app to visualize your system's internet connections on a globe.</p>
<p>It enables you to:</p>
<ul>
<li>Perform real-time analysis of your system's internet packets</li>
<li>Visualize the source and destination of connections on a globe</li>
<li>Export and explore historical connection data for external analysis</li>
</ul>
</description>
<screenshots>
<screenshot type="default">
<image>https://raw.githubusercontent.com/pojntfx/connmapper/main/docs/screenshot-globe.png</image>
<caption>Visualizing internet connections on the globe</caption>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/pojntfx/connmapper/main/docs/screenshot-db-download.png</image>
<caption>Database download screen</caption>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/pojntfx/connmapper/main/docs/screenshot-permissions.png</image>
<caption>Capture device selection dialog</caption>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/pojntfx/connmapper/main/docs/screenshot-globe-info.png</image>
<caption>Globe showing active connections with additional information</caption>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/pojntfx/connmapper/main/docs/screenshot-traffic-inspector.png</image>
<caption>Traffic inspector in full-screen mode</caption>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/pojntfx/connmapper/main/docs/screenshot-traffic-inspector-summarized.png</image>
<caption>Traffic inspector in summarized mode</caption>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/pojntfx/connmapper/main/docs/screenshot-csv.png</image>
<caption>CSV export displayed in LibreOffice</caption>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/pojntfx/connmapper/main/docs/screenshot-settings.png</image>
<caption>Settings dialog</caption>
</screenshot>
</screenshots>
<releases>
{{ range $release := .AppReleases }}
<release version="{{ $release.Version }}" date='{{ $release.Date.Format "2006-01-02T15:04:05Z07:00" }}'>
<description>
<p>{{ $release.Description }}</p>
</description>
</release>
{{ end }}
</releases>
</component>