diff options
author | 2023-10-08 20:29:44 +0600 | |
---|---|---|
committer | 2023-10-08 20:29:44 +0600 | |
commit | aed2bee1401c250140035d4f9cdf50b8ef3c4697 (patch) | |
tree | 3fe78b126fc6ea06f3b13e56bfc467c50e74731c | |
parent | 0a994adf3c6feab7d50b4bea01659436e4c695b4 (diff) | |
download | jadupc-remote-support-console-aed2bee1401c250140035d4f9cdf50b8ef3c4697.tar.gz jadupc-remote-support-console-aed2bee1401c250140035d4f9cdf50b8ef3c4697.zip |
Update metadata
Signed-off-by: Mubashshir <ahm@jadupc.com>
-rw-r--r-- | data/com.jadupc.support.appdata.xml.in.in | 26 | ||||
-rw-r--r-- | data/com.jadupc.support.desktop.in.in | 2 | ||||
-rw-r--r-- | data/meson.build | 2 | ||||
-rw-r--r-- | meson.build | 2 |
4 files changed, 28 insertions, 4 deletions
diff --git a/data/com.jadupc.support.appdata.xml.in.in b/data/com.jadupc.support.appdata.xml.in.in index bafc901..963354c 100644 --- a/data/com.jadupc.support.appdata.xml.in.in +++ b/data/com.jadupc.support.appdata.xml.in.in @@ -1,9 +1,33 @@ <?xml version="1.0" encoding="UTF-8"?> <component type="desktop"> <id>@APPLICATION_ID@.desktop</id> + <name>JaduPC Remote Support Console</name> + <summary>Ask JaduPC for remote support.</summary> + <content_rating type="oars-1.0" /> <metadata_license>CC0-1.0</metadata_license> <project_license>@LICENSE@</project_license> <description> - <p>@PROJECT_INFO@</p> + <p>@PROJECT_INFO@</p> </description> + + <launchable type="desktop-id">com.jadupc.support.desktop</launchable> + <url type="homepage">https://git.jadupc.com/pkgs/jadupc-remote-support-console</url> + + <screenshots> + <screenshot type="default"> + <caption>Start-up Window</caption> + <image>https://dev.jadupc.com/screenshots/jadupc-remote-support-console/start-up.png</image> + </screenshot> + <screenshot> + <caption>Remote Session Window</caption> + <image>https://dev.jadupc.com/screenshots/jadupc-remote-support-console/remote-session.png</image> + </screenshot> + </screenshots> + <releases> + <release version="0.9.0" date="2023-10-08"> + <description> + <p>Initial Release</p> + </description> + </release> + </releases> </component> diff --git a/data/com.jadupc.support.desktop.in.in b/data/com.jadupc.support.desktop.in.in index 1bfad53..7db9ae2 100644 --- a/data/com.jadupc.support.desktop.in.in +++ b/data/com.jadupc.support.desktop.in.in @@ -4,5 +4,5 @@ Exec=@EXEC@ Icon=@APPLICATION_ID@ Terminal=false Type=Application -Categories=GTK; +Categories=Network;RemoteAccess; StartupNotify=true diff --git a/data/meson.build b/data/meson.build index 65ddc4b..7b1e2ec 100644 --- a/data/meson.build +++ b/data/meson.build @@ -41,7 +41,7 @@ appstream_file = i18n.merge_file( output: '@BASENAME@', po_dir: '../po', install: true, - install_dir: join_paths(get_option('datadir'), 'appdata') + install_dir: join_paths(get_option('datadir'), 'metainfo') ) appstream_util = find_program('appstream-util', required: false) diff --git a/meson.build b/meson.build index 78dac0a..a333fa8 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('support', ['c', 'vala'], - version: '0.1.0', + version: '0.9.0', meson_version: '>= 0.52.0', license: 'GPL-3.0-or-later', default_options: [ |