summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2022-02-02 10:53:48 +0100
committerBastien Nocera <hadess@hadess.net>2022-02-02 12:25:21 +0100
commit7fec43c3f49a7cb499c1876c13f682efb6456589 (patch)
tree10193eca808714770758c262d855773053bb9f6c
parent3c407a7ed95474aedd16fa494c628201769fd062 (diff)
downloadtotem-7fec43c3f49a7cb499c1876c13f682efb6456589.tar.gz
data: Fix desktop filename in devel profile
-rw-r--r--data/appdata/org.gnome.Totem.appdata.xml.in.in79
-rw-r--r--data/meson.build9
2 files changed, 84 insertions, 4 deletions
diff --git a/data/appdata/org.gnome.Totem.appdata.xml.in.in b/data/appdata/org.gnome.Totem.appdata.xml.in.in
new file mode 100644
index 000000000..c73543cd5
--- /dev/null
+++ b/data/appdata/org.gnome.Totem.appdata.xml.in.in
@@ -0,0 +1,79 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright 2013 Richard Hughes <richard@hughsie.com>
+ Copyright 2013 William Jon McCann <william.jon.mccann@gmail.com> -->
+<component type="desktop-application">
+ <id>org.gnome.Totem.desktop</id>
+ <name>Videos</name>
+ <summary>Play movies</summary>
+ <metadata_license>CC0-1.0</metadata_license>
+ <project_license>GPL-2.0+</project_license><!-- with the GStreamer exception -->
+ <description>
+ <p>
+ Videos is the official movie player of the GNOME desktop environment.
+ It features a searchable list of local videos, and DVDs, as well as local
+ network video shares (using UPnP/DLNA) and video highlights from a number
+ of web sites.
+ </p>
+ <p>
+ Videos comes with added functionality such as a subtitle downloader,
+ the ability to speed up or down playback, create screenshot galleries,
+ and support for recording DVDs.
+ </p>
+ </description>
+ <url type="homepage">https://wiki.gnome.org/Apps/Videos</url>
+ <url type="bugtracker">https://gitlab.gnome.org/GNOME/totem/issues</url>
+ <url type="donation">https://www.gnome.org/friends/</url>
+ <url type="translate">https://l10n.gnome.org/module/totem/</url>
+ <url type="help">https://help.gnome.org/users/totem/stable/</url>
+ <screenshots>
+ <screenshot type="default" width="1024" height="576">https://gitlab.gnome.org/GNOME/totem/raw/master/data/appdata/ss-videos.png</screenshot>
+ <screenshot width="1024" height="576">https://gitlab.gnome.org/GNOME/totem/raw/master/data/appdata/ss-player.png</screenshot>
+ </screenshots>
+ <update_contact>hadess@hadess.net</update_contact>
+ <developer_name>The GNOME developers</developer_name>
+ <project_group>GNOME</project_group>
+ <translation type="gettext">totem</translation>
+ <launchable type="desktop-id">org.gnome.Totem.desktop</launchable>
+ <releases>
+ <release version="3.38.0" date="2020-09-10">
+ <description>
+ <p>
+ This new version does not rely on Tracker running on the host,
+ and updates translations.
+ </p>
+ </description>
+ </release>
+ <release version="3.34.1" date="2019-10-04">
+ <description>
+ <p>
+ This new version fixes the top bar icon appearing as a square,
+ and updates translations.
+ </p>
+ </description>
+ </release>
+ <release version="3.34.0" date="2019-09-06">
+ <description>
+ <p>
+ We are proud to announce Videos 3.34.0 as the latest stable version.
+ </p>
+ <p>
+ This new version fixes a number of bugs, adds an "Open Containing Folder" plugin,
+ and removes the obsolete Brasero and LIRC plugins.
+ </p>
+ </description>
+ </release>
+ <release version="3.32.0" date="2019-03-08">
+ <description>
+ <p>
+ We are proud to announce Videos 3.32.0 as the latest stable version.
+ </p>
+ </description>
+ </release>
+ </releases>
+ <kudos>
+ <kudo>HiDpiIcon</kudo>
+ <kudo>ModernToolkit</kudo>
+ <kudo>UserDocs</kudo>
+ </kudos>
+ <content_rating type="oars-1.1" />
+</component>
diff --git a/data/meson.build b/data/meson.build
index 8eebe3db1..f8c2cd792 100644
--- a/data/meson.build
+++ b/data/meson.build
@@ -67,18 +67,19 @@ desktop_conf.set('VERSION', totem_version)
desktop_conf.set('APPLICATION_ID', application_id)
desktop_conf.set('MIME_TYPE', r.stdout().strip())
-desktop = 'org.gnome.Totem.desktop'
+source_desktop = 'org.gnome.Totem.desktop'
+dest_desktop = application_id + '.desktop'
desktop_in = configure_file(
- input: desktop + '.in.in',
- output: desktop + '.in',
+ input: source_desktop + '.in.in',
+ output: source_desktop + '.in',
configuration: desktop_conf
)
desktop_file = i18n.merge_file (
type: 'desktop',
input: desktop_in,
- output: desktop,
+ output: dest_desktop,
po_dir: po_dir,
install: true,
install_dir: join_paths(totem_datadir, 'applications')