From 149ebda5e1649bb1cf77373486405f3d0bfc50c0 Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Fri, 18 Mar 2022 23:20:33 +0100 Subject: [PATCH 1/2] build: Fix appdata path for check-news.sh Fixes: 30253c7d9c --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 1a7e58740..f8dd567c4 100644 --- a/meson.build +++ b/meson.build @@ -241,7 +241,7 @@ if is_stable find_program('check-news.sh').path(), '@0@'.format(meson.project_version()), 'NEWS', - 'data/appdata/org.gnome.Totem.appdata.xml.in' + 'data/appdata/org.gnome.Totem.appdata.xml.in.in' ) else meson.add_dist_script( -- GitLab From d578333de76dc51f7a58bd84edee8ee93f5050e3 Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Fri, 25 Feb 2022 15:18:27 +0100 Subject: [PATCH 2/2] 42.0 --- NEWS | 6 ++++++ data/appdata/org.gnome.Totem.appdata.xml.in.in | 17 +++++++++++++++++ meson.build | 2 +- 3 files changed, 24 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 3c99644d8..7e2e11720 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,11 @@ New features and significant updates in version... +Major changes in 42.0: +- Updated appdata screenshots +- Fix screenshot functionality not working since the port to + the OpenGL video widget +- Translations updates + Major changes in 42.beta: - Port video widget from obsolete Clutter to OpenGL - Move subtitles and audio track selection to its own menu diff --git a/data/appdata/org.gnome.Totem.appdata.xml.in.in b/data/appdata/org.gnome.Totem.appdata.xml.in.in index ffd32d354..2f0cb312f 100644 --- a/data/appdata/org.gnome.Totem.appdata.xml.in.in +++ b/data/appdata/org.gnome.Totem.appdata.xml.in.in @@ -35,6 +35,23 @@ totem @APPLICATION_ID@.desktop + + +

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

+

+ This new version stops relying on clutter for its video output. The + old GNOME media-keys API was removed, and replaced by builtin MPRIS + support. +

+

+ The subtitles and audio tracks selections are now made through a separate + menu. A number of new keyboard shortcuts were also added, which can + be found in the keyboard shortcuts dialog. +

+
+

diff --git a/meson.build b/meson.build index f8dd567c4..e0945335c 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project( 'totem', 'c', - version: '42.beta', + version: '42.0', license: 'GPL2+ with exception', default_options: 'buildtype=debugoptimized', meson_version: '>= 0.50.0' -- GitLab