| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|
|
|
|
|
| |
We don't need to the flatpak devel bits in the tarball, and neither
do we need the flathub shared-modules, including some Qt patches
with complicated licenses.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
When playing audio-only, we would only try to draw an image when there
was a cover, which means we never saw the application logo as a filler.
Fixes: c0eb016979
|
| |
|
|
|
|
|
|
|
| |
Because the file to validate wasn't created yet.
/run/build/totem/_flatpak_build/data/appdata/org.gnome.Totem.appdata.xml: /run/build/totem/_flatpak_build/data/appdata/org.gnome.Totem.appdata.xml could not be read: Failed to open file “/run/build/totem/_flatpak_build/data/appdata/org.gnome.Totem.appdata.xml”: No such file or directory
/run/build/totem/_flatpak_build/data/org.gnome.Totem.desktop: file does not exist
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
Oops.
src/backend/bacon-video-widget.c: In function ‘bacon_video_widget_swipe’:
src/backend/bacon-video-widget.c:966:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
966 | if ((direction & CLUTTER_SWIPE_DIRECTION_LEFT) ||
| ^~
src/backend/bacon-video-widget.c:969:7: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’
969 | return CLUTTER_EVENT_PROPAGATE;
| ^~~~~~
|
|
|
|
| |
Using G_DECLARE_FINAL_TYPE().
|
|
|
|
|
|
| |
They are going to be removed from the runtime
See https://gitlab.gnome.org/GNOME/gnome-build-meta/-/merge_requests/1092
|
|
|
|
| |
See link to upstream issues from tracker-miners.
|
|
|
|
|
|
|
| |
We need access to $XDG_RUNTIME_DIR/gvfsd because of:
https://gitlab.gnome.org/GNOME/gvfs/-/issues/515#note_919326
but we were lacking access to $XDG_RUNTIME_DIR/gvfs which meant no FUSE
access to files.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
| |
https://gitlab.gnome.org/GNOME/gnome-software/-/issues/445
|
|
|
|
|
|
|
|
|
|
| |
Both the audio/ogg and video/ogg mime-types are subclasses of
application/ogg. Seeing as we only support the video subclass (see
e4a1aaf7d9d3b2c50e2540d5d7f0059ffa30c26b), remove application/ogg
from the supported mime-types.
This will also stop the “Default Applications” panel in GNOME's Settings
from listing Videos as a potential audio player.
|
|
|
|
|
|
|
| |
pylint's performance has regressed so much that it needs 10 times longer
to process files, which butts against any reasonable CI test timeouts.
See https://bugzilla.redhat.com/show_bug.cgi?id=1896438
|
|
|
|
|
| |
It seems the error disabling markup doesn't work with newer versions of
pylint (pylint 2.6.0).
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
The CI template was reworked to be able to parse the build
args from the manifest itself so we no longer need to
write them manually.
The template is no longer making use of the MESON_ARGS var.
If you need to override the args of the manifest use CONFIG_OPTS [2]
[1] https://gitlab.gnome.org/GNOME/citemplates/-/merge_requests/15
[2] https://gitlab.gnome.org/GNOME/citemplates/-/merge_requests/23#note_881242
|
| |
|
|
|
|
|
|
|
| |
When seeking an MPEG file past the end, mpeg2dec would throw an error
about "No valid frames decoded before end of stream". Catch that error
and emit an EOS message instead, so that we don't block MPEG playback
every second.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Currently XF86Back key triggers the same action as XF86AudioPrev, which
is seeking previous media in current playlist.
In other GNOME apps like epiphany and nautilus XF86Back is used to
navigate back in the UI, which makes totem behaviour inconsistent.
On the other hand, totem doesn't have a strong spatial navigation
between sections so navigating the playlist is more useful than between
pages.
With that in mind, make it possible to use XF86Back to go back up a
level when in the library.
Fixes https://gitlab.gnome.org/GNOME/totem/-/issues/367
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
Due to recent changes in gst-plugins-base, some languages without a 2
letter-code are now getting mapped to languages using
gst_tag_get_language_name(). Which isn't a problem, except that we were
relying on gst_tag_get_language_name("und") returning NULL.
Check for "und" manually so that track menus get named properly.
See https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/merge_requests/785
|
| |
|
| |
|