Loading
Commits on Source 71
-
Charles Monzat authored
(cherry picked from commit 1b226b84335d62800dd94f1771e33ff363b673ea)
-
Irénée THIRION authored
-
Baurzhan Muftakhidinov authored
-
Daniel Mustieles authored
-
Fabio Tomat authored
-
Dušan Kazik authored
-
Leônidas Araújo authored
-
Nart Tlisha authored
-
Christian Kirbach authored
-
Bastien Nocera authored
https://www.freedesktop.org/wiki/Specifications/mpris-spec/metadata/#xesam:artist defines xesam:artist as a string list, rather than a string. Fix this so the artist appears correctly when set. Closes: #542
-
Sveinn í Felli authored
-
Georges Basile Stavracas Neto authored
Even though we still need to preserve the *.plugin.desktop.in workaround, we can easily use Meson's native i18.merge_file() to generate translations, instead of the custom_target(). Switch plugins to generate translations using i18.merge_file(), and make sure to generate and install those files by setting the `install` argument to true.
-
Alban Browaeys authored
gtk-primary-button-warps-slider can be set to FALSE , a click will cause the slider/value to move by the range’s page-size towards the point clicked. totem expects that a click will "warp" the slider to the location. Fix by forcing this setting to TRUE for the GtkRange when the slider is clicked. Closes: #541
-
Gianvito Cavasoli authored
-
Nart Tlisha authored
-
Sergej A authored
-
Nathan Follens authored
-
Andika Triwidada authored
-
Nart Tlisha authored
-
Olga Smirnova authored
-
Vasil Pupkin authored
-
Nart Tlisha authored
-
Bastien Nocera authored
It's unclear what to pass to the SetPosition() method when the application doesn't implement the TrackList interface and so doesn't have TrackId metadata. Export placeholder "/org/mpris/MediaPlayer2/TrackList/NoTrack" in the meanwhile, which we'll ignore in when SetPosition() is called. See https://gitlab.freedesktop.org/mpris/mpris-spec/-/issues/19 Closes: #538
-
Bastien Nocera authored
totem_plugin_load_interface() used to call totem_interface_load_with_full_path() which itself called gtk_builder_connect_signals(). And as we didn't do that anymore when we started loading the file ourselves, gtk_widget_hide_on_delete() wasn't called so the dialogue was destroyed which we didn't expect. With help from Krifa75 <yahiaoui.fakhri@gmail.com> Fixes: 2001dfee ("opensubtitles: Fix dialogue not showing up") Closes: #549
-
Bastien Nocera authored
Traceback (most recent call last): File "/usr/lib/python3.11/site-packages/gi/overrides/Gtk.py", line 85, in _builder_connect_callback handler, args = _extract_handler_and_args(obj_or_map, handler_name) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib64/python3.11/site-packages/gi/_gtktemplate.py", line 34, in _extract_handler_and_args raise AttributeError('Handler %s not found' % handler_name) AttributeError: Handler Gtk.Widget.hide_on_delete not found Fixes: f2ae04f ("opensubtitles: Fix blank dialogue when reopened") -
Krifa75 authored
After downloading a subtitle, the menu was disabled. Closes: #532
-
Bastien Nocera authored
Command line:1:0: R0022: Useless option value for '-d', 'bad-continuation' was removed from pylint, see https://github.com/PyCQA/pylint/pull/3571. (useless-option-value) totem/src/plugins/pythonconsole/console.py:319:0: R0022: Useless option value for 'disable', 'R0201' was moved to an optional extension, see https://pylint.pycqa.org/en/latest/whatsnew/2/2.14/summary.html#removed-checkers. (useless-option-value) totem/src/plugins/pythonconsole/console.py:321:0: R0022: Useless option value for 'disable', 'R0201' was moved to an optional extension, see https://pylint.pycqa.org/en/latest/whatsnew/2/2.14/summary.html#removed-checkers. (useless-option-value) totem/src/plugins/pythonconsole/console.py:323:0: R0022: Useless option value for 'disable', 'R0201' was moved to an optional extension, see https://pylint.pycqa.org/en/latest/whatsnew/2/2.14/summary.html#removed-checkers. (useless-option-value) totem/src/plugins/pythonconsole/console.py:325:0: R0022: Useless option value for 'disable', 'R0201' was moved to an optional extension, see https://pylint.pycqa.org/en/latest/whatsnew/2/2.14/summary.html#removed-checkers. (useless-option-value) totem/src/plugins/pythonconsole/console.py:331:0: R0022: Useless option value for 'disable', 'R0201' was moved to an optional extension, see https://pylint.pycqa.org/en/latest/whatsnew/2/2.14/summary.html#removed-checkers. (useless-option-value) totem/src/plugins/pythonconsole/console.py:333:0: R0022: Useless option value for 'disable', 'R0201' was moved to an optional extension, see https://pylint.pycqa.org/en/latest/whatsnew/2/2.14/summary.html#removed-checkers. (useless-option-value)
-
Bastien Nocera authored
Command line:1:0: R0022: Useless option value for '-d', 'C0326' was removed from pylint, see https://github.com/PyCQA/pylint/pull/3577. (useless-option-value)
-
Bastien Nocera authored
The regression seems to have been fixed. This reverts commit c98f0f63.
-
Bastien Nocera authored
Closes: #560
-
Bastien Nocera authored
With pango 1.44, Totem shows additional hyphen in video file names which is misleading because file's name itself does not contain that additional hyphen but Totem draws it because of pango new default behavior. Update libgd to get a version of the icon view renderer that will disable this feature. Closes: #349
-
Jake Dane authored
Insert mandatory `<image/>` child in each `<screenshot/> tag. (Hopefully) Fixes #574.
-
Bastien Nocera authored
It was removed from the GNOME SDK in: https://gitlab.gnome.org/GNOME/gnome-build-meta/-/merge_requests/1959
-
Bastien Nocera authored
Disable battery detection, we only mine when totem is running, and upower-glib can't run inside a sandbox without poking holes.
-
Alan Mortensen authored
-
Fabio Tomat authored
-
Seong-ho Cho authored
-
Chao-Hsiung Liao authored
-
Bruce Cowan authored
-
Trần Ngọc Quân authored
-
Nart Tlisha authored
-
Bastien Nocera authored
Use the new "va" GStreamer plugin from -bad instead of the older gstreamer-vaapi plugin. This fixes a deadlock on wayland with gstreamer-vaapi: https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/2720 Re-adds DMABuf support removed to work-around scrambled video on Intel: https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2459
-
Bastien Nocera authored
The error was: failed to add UI: .:339:1 Duplicate object ID 'dvd-menu' (previously on line 307) Rename the dvd-menu group in the shortcuts UI file. Fixes: a35c00f94ed6 ("main: Document M for the DVD main menu") -
Bastien Nocera authored
Some backends just don't manage to filter media types to our expected standards, and despite our best efforts, this would still causes assertions, whether in the tracker or the dleyna plugins. Closes: #330
-
Bastien Nocera authored
Same as 774c76dd3d59 ("grilo: Don't assert for audio and images") but for searches. -
Bastien Nocera authored
-
Bastien Nocera authored
-
Bastien Nocera authored
Failed to download sources: module liboauth: Could not resolve host: netix.dl.sourceforge.net
-
Bastien Nocera authored
Those tests need GTK, thus a display environment, which might not be easily available in some places (like Flatpak), so add an option for it.
-
Bastien Nocera authored
We don't have a display in Flatpak, so we can't run tests that need GTK.
-
Christian Kirbach authored
-
Christian Kirbach authored
-
Florentina Mușat authored
-
Simon McVittie authored
Closes: #1082017
-
Simon McVittie authored
-
Simon McVittie authored
Gbp-Dch: ignore
-
Simon McVittie authored
-
Bastien Nocera authored
Use an older version of tracker-miners that does not require tinysparql for tests.
-
Bastien Nocera authored
Closes: #624
-
Simon McVittie authored
-
Simon McVittie authored
Update to upstream version '43.1' with Debian dir fbb0786f8966258224084ea79b67f161c0e8a7d2
-
Simon McVittie authored
-
Simon McVittie authored
* Build-Depends: Drop dependency on essential package dpkg-dev (>= 1.16.1). * Build-Depends: Drop versioned constraint on gstreamer1.0-plugins-base (>= 1.6.0). * Build-Depends: Drop versioned constraint on gtk-doc-tools (>= 1.14). * Build-Depends: Drop versioned constraint on libatk1.0-dev (>= 1.29.4). * Build-Depends: Drop versioned constraint on libcairo2-dev (>= 1.14.0). * Build-Depends: Drop versioned constraint on libgdk-pixbuf-2.0-dev (>= 2.23.0). * Build-Depends: Drop versioned constraint on libgirepository1.0-dev (>= 0.9.12). * Build-Depends: Drop versioned constraint on libgrilo-0.3-dev (>= 0.3.0). * Build-Depends: Drop versioned constraint on libgstreamer1.0-dev (>= 1.6.0). * Build-Depends: Drop versioned constraint on libgtk-3-dev (>= 3.22.0). * Build-Depends: Drop versioned constraint on libpeas-dev (>= 1.1.0). * Build-Depends: Drop versioned constraint on librsvg2-dev (>= 2.16.0-2). * Build-Depends: Drop versioned constraint on libtotem-plparser-dev (>= 3.26.5). * Build-Depends: Drop versioned constraint on libxml2-dev (>= 2.6.0). * Build-Depends: Drop versioned constraint on python3 (>= 3.2). * Build-Depends: Drop versioned constraint on python-gi-dev (>= 2.90.3). * Build-Depends: Drop versioned constraint on shared-mime-info (>= 0.22). * totem: Drop versioned constraint on gstreamer1.0-plugins-base (>= 1.6.0) in Depends. * totem: Drop versioned constraint on gstreamer1.0-plugins-good (>= 1.10) in Depends. * totem-plugins: Drop versioned constraint on python3-gi (>= 2.90.3) in Depends. Changes-By: deb-scrub-obsolete
-
Simon McVittie authored
-
Simon McVittie authored
-
Simon McVittie authored
-
Simon McVittie authored
-
Simon McVittie authored
-
Nathan Teodosio authored
-
Nathan Teodosio authored