From 7fec43c3f49a7cb499c1876c13f682efb6456589 Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Wed, 2 Feb 2022 10:53:48 +0100 Subject: data: Fix desktop filename in devel profile --- data/appdata/org.gnome.Totem.appdata.xml.in.in | 79 ++++++++++++++++++++++++++ data/meson.build | 9 +-- 2 files changed, 84 insertions(+), 4 deletions(-) create mode 100644 data/appdata/org.gnome.Totem.appdata.xml.in.in 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 @@ + + + + org.gnome.Totem.desktop + Videos + Play movies + CC0-1.0 + GPL-2.0+ + +

+ 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. +

+

+ 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. +

+
+ https://wiki.gnome.org/Apps/Videos + https://gitlab.gnome.org/GNOME/totem/issues + https://www.gnome.org/friends/ + https://l10n.gnome.org/module/totem/ + https://help.gnome.org/users/totem/stable/ + + https://gitlab.gnome.org/GNOME/totem/raw/master/data/appdata/ss-videos.png + https://gitlab.gnome.org/GNOME/totem/raw/master/data/appdata/ss-player.png + + hadess@hadess.net + The GNOME developers + GNOME + totem + org.gnome.Totem.desktop + + + +

+ This new version does not rely on Tracker running on the host, + and updates translations. +

+
+
+ + +

+ This new version fixes the top bar icon appearing as a square, + and updates translations. +

+
+
+ + +

+ We are proud to announce Videos 3.34.0 as the latest stable version. +

+

+ This new version fixes a number of bugs, adds an "Open Containing Folder" plugin, + and removes the obsolete Brasero and LIRC plugins. +

+
+
+ + +

+ We are proud to announce Videos 3.32.0 as the latest stable version. +

+
+
+
+ + HiDpiIcon + ModernToolkit + UserDocs + + +
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') -- cgit v1.2.1