summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* gst: Use playbin's convert-frame feature againwip/hadess/screenshot-againBastien Nocera2022-07-162-291/+6
| | | | | | Now that GStreamer support for processing GL memory has been merged. See https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1916
* flatpak: Require soup2 for nowBastien Nocera2022-07-151-1/+5
| | | | libgdata and the grilo opensubtitles plugins aren't ported yet.
* flatpak: Update grilo-plugins optionsBastien Nocera2022-07-151-1/+0
|
* Update Indonesian translationKukuh Syafaat2022-07-121-164/+153
|
* Update Georgian translationZurab Kargareteli2022-06-301-1725/+1405
|
* Update Dutch translationNathan Follens2022-06-291-5/+2
|
* Add Dutch translationNathan Follens2022-06-282-0/+1200
|
* Update Dutch translationNathan Follens2022-06-281-118/+113
|
* man: Update modification dateBastien Nocera2022-06-271-1/+1
|
* man: Point to Flathub to download the latest versionBastien Nocera2022-06-271-2/+2
|
* man: Point to Ctrl+? for keybindingsBastien Nocera2022-06-271-62/+5
| | | | One less place to maintain a keybingings list.
* man: Make programme name boldBastien Nocera2022-06-271-4/+6
| | | | As in the other entries.
* man: Rename "Totem" to "Videos"Bastien Nocera2022-06-271-24/+24
| | | | | The app changed name in 2012 (see 9dc401b1213aa9fec2f5274d0e6cb8dcefba486f), update man page to match.
* man: Update what we can playBastien Nocera2022-06-271-6/+3
|
* Revert "ci: Disable pylint checks"Bastien Nocera2022-06-271-2/+0
| | | | This reverts commit 8afd18d0b832489714bf02526e88da7800a7f7b1.
* build: Disable MALLOC_PERTURB_ when running pylintBastien Nocera2022-06-273-0/+3
| | | | | | | | | By default, meson will set MALLOC_PERTURB_ to a non-zero value when running tests, which had the effect of making a pylint run take 200 seconds instead of around 15. Disabling that envvar makes the tests take a more reasonable amount of time.
* opensubtitles: Ignore "Too many instance attributes" warningBastien Nocera2022-06-271-0/+1
| | | | src/plugins/opensubtitles/opensubtitles.py:157:0: R0902: Too many instance attributes (8/7) (too-many-instance-attributes)
* opensubtitles: Use "with" for locking when usefulBastien Nocera2022-06-271-39/+30
| | | | | | | | | | | | src/plugins/opensubtitles/opensubtitles.py:173:8: R1732: Consider using 'with' for resource-allocating operations (consider-using-with) src/plugins/opensubtitles/opensubtitles.py:184:8: R1732: Consider using 'with' for resource-allocating operations (consider-using-with) src/plugins/opensubtitles/opensubtitles.py:194:8: R1732: Consider using 'with' for resource-allocating operations (consider-using-with) src/plugins/opensubtitles/opensubtitles.py:204:8: R1732: Consider using 'with' for resource-allocating operations (consider-using-with) src/plugins/opensubtitles/opensubtitles.py:223:8: R1732: Consider using 'with' for resource-allocating operations (consider-using-with) src/plugins/opensubtitles/opensubtitles.py:232:8: R1732: Consider using 'with' for resource-allocating operations (consider-using-with) src/plugins/opensubtitles/opensubtitles.py:242:8: R1732: Consider using 'with' for resource-allocating operations (consider-using-with) src/plugins/opensubtitles/opensubtitles.py:252:8: R1732: Consider using 'with' for resource-allocating operations (consider-using-with) src/plugins/opensubtitles/opensubtitles.py:317:8: R1732: Consider using 'with' for resource-allocating operations (consider-using-with)
* opensubtitles: Work-around pylint not knowing about GI bindingsBastien Nocera2022-06-271-4/+4
| | | | | | | | src/plugins/opensubtitles/opensubtitles.py:450:14: E1101: Instance of 'Property' has no 'get_current_mrl' member (no-member) src/plugins/opensubtitles/opensubtitles.py:452:54: E1101: Instance of 'Property' has no 'get_current_mrl' member (no-member) src/plugins/opensubtitles/opensubtitles.py:794:22: E1101: Instance of 'Property' has no 'get_title_at_playlist_pos' member (no-member) src/plugins/opensubtitles/opensubtitles.py:794:60: E1101: Instance of 'Property' has no 'get_playlist_pos' member (no-member) src/plugins/opensubtitles/opensubtitles.py:16:0: W0611: Unused Totem imported from gi.repository (unused-import)
* pythonconsole: Fix some pylint warningsBastien Nocera2022-06-271-5/+3
| | | | | | src/plugins/pythonconsole/console.py:173:13: R1714: Consider merging these comparisons with "in" to 'event.keyval in (Gdk.KEY_KP_Down, Gdk.KEY_Down)' (consider-using-in) src/plugins/pythonconsole/console.py:180:13: R1714: Consider merging these comparisons with "in" to 'event.keyval in (Gdk.KEY_KP_Up, Gdk.KEY_Up)' (consider-using-in) src/plugins/pythonconsole/console.py:187:13: R1714: Consider merging these comparisons with "in" to 'event.keyval in (Gdk.KEY_KP_Left, Gdk.KEY_Left, Gdk.KEY_BackSpace)' (consider-using-in)
* opensubtitles: Fix some pylint warningsBastien Nocera2022-06-271-17/+15
| | | | | src/plugins/opensubtitles/hash.py:44:19: C0209: Formatting a regular string which could be a f-string (consider-using-f-string) src/plugins/opensubtitles/hash.py:24:18: R1732: Consider using 'with' for resource-allocating operations (consider-using-with)•
* opensubtitles: Fix "string statement with no effect"Bastien Nocera2022-06-271-1/+1
| | | | src/plugins/opensubtitles/opensubtitles.py:345:12: W0105: String statement has no effect (pointless-string-statement)
* opensubtitles: Remove "u" string prefixBastien Nocera2022-06-271-13/+13
| | | | | | | | | | | | | | | | src/plugins/opensubtitles/opensubtitles.py:192:20: W1406: The u prefix for strings is no longer necessary in Python >=3.0 (redundant-u-string-prefix) src/plugins/opensubtitles/opensubtitles.py:240:20: W1406: The u prefix for strings is no longer necessary in Python >=3.0 (redundant-u-string-prefix) src/plugins/opensubtitles/opensubtitles.py:305:25: W1406: The u prefix for strings is no longer necessary in Python >=3.0 (redundant-u-string-prefix) src/plugins/opensubtitles/opensubtitles.py:338:28: W1406: The u prefix for strings is no longer necessary in Python >=3.0 (redundant-u-string-prefix) src/plugins/opensubtitles/opensubtitles.py:351:28: W1406: The u prefix for strings is no longer necessary in Python >=3.0 (redundant-u-string-prefix) src/plugins/opensubtitles/opensubtitles.py:357:24: W1406: The u prefix for strings is no longer necessary in Python >=3.0 (redundant-u-string-prefix) src/plugins/opensubtitles/opensubtitles.py:369:26: W1406: The u prefix for strings is no longer necessary in Python >=3.0 (redundant-u-string-prefix) src/plugins/opensubtitles/opensubtitles.py:502:39: W1406: The u prefix for strings is no longer necessary in Python >=3.0 (redundant-u-string-prefix) src/plugins/opensubtitles/opensubtitles.py:508:39: W1406: The u prefix for strings is no longer necessary in Python >=3.0 (redundant-u-string-prefix) src/plugins/opensubtitles/opensubtitles.py:513:39: W1406: The u prefix for strings is no longer necessary in Python >=3.0 (redundant-u-string-prefix) src/plugins/opensubtitles/opensubtitles.py:553:23: W1406: The u prefix for strings is no longer necessary in Python >=3.0 (redundant-u-string-prefix) src/plugins/opensubtitles/opensubtitles.py:592:35: W1406: The u prefix for strings is no longer necessary in Python >=3.0 (redundant-u-string-prefix) src/plugins/opensubtitles/opensubtitles.py:635:39: W1406: The u prefix for strings is no longer necessary in Python >=3.0 (redundant-u-string-prefix)
* Add Turkish translationSabri Ünal2022-06-262-0/+1200
|
* Updated Lithuanian translationAurimas Černius2022-06-201-130/+118
|
* Update Italian translationGianvito Cavasoli2022-06-141-284/+372
|
* Update Friulian translationFabio Tomat2022-06-031-162/+147
|
* Update Catalan translationJordi Mas2022-06-021-226/+174
|
* Update Hebrew translationYosef Or Boczko2022-05-301-177/+166
|
* Update German translationJürgen Benvenuti2022-05-291-111/+113
|
* open-directory: Use libportal to open containing folderBastien Nocera2022-05-245-53/+45
| | | | | This should make the 'Open Containing Folder' functionality carry on working when we've restricted filesystem access further.
* im-status: Simplify cancellable unrefBastien Nocera2022-05-241-2/+1
|
* Update French translationIrénée THIRION2022-05-241-129/+108
|
* Update Chinese (China) translationLuming Zh2022-05-231-175/+155
|
* Updated Spanish translationDaniel Mustieles2022-05-191-125/+105
|
* Update Portuguese translationHugo Carvalho2022-05-181-182/+166
|
* Update Turkish translationSabri Ünal2022-05-171-154/+143
|
* Update Persian translationDanial Behzadi2022-05-161-110/+106
|
* Update Swedish translationAnders Jonsson2022-05-101-100/+96
|
* grilo: Fix crash when scrolling for more content in some casesBastien Nocera2022-05-031-1/+2
| | | | | | | | | | | When popping down the search entry, and scrolling down to activate the "load content" action, we would try and load more search results but we never really started a search, leading to a crash. Make sure that a search is only considered to be started when the search entry has been activated. Closes: https://bugzilla.redhat.com/show_bug.cgi?id=2079657
* COPYING: Use "this project" rather than "totem" in license exceptionBastien Nocera2022-04-271-7/+6
| | | | | | | This makes it easier to copy/paste the license exception without any need to template its contents. See https://github.com/spdx/license-list-XML/issues/1442
* mpris: Fix exported movie lengthAndy Holmes2022-04-251-1/+1
| | | | | The metadata property `mpris:length` should be in microseconds, but was being exported in milliseconds.
* icon-helpers: adjust for gnome-desktop thumbnail API changesMichael Catanzaro2022-04-111-0/+22
| | | | See gnome-desktop!132
* main: Stop exporting seek_slider_*_cb()Bastien Nocera2022-04-071-2/+2
| | | | They're not used in GtkBuilder anymore.
* main: Make macro totem_object_set_sensitivity2() privateBastien Nocera2022-04-072-25/+25
| | | | Took the opportunity to rename it to something clearer.
* main: Remove unused macro totem_controls_set_sensitivity()Bastien Nocera2022-04-071-2/+0
|
* main: Use gtk_widget_set_sensitive() directlyBastien Nocera2022-04-071-2/+2
| | | | As we already have a pointer to the right GtkWidget.
* main: Remove unused macro totem_set_sensitivity()Bastien Nocera2022-04-071-6/+0
|
* main: Make totem_object_set_zoom() privateBastien Nocera2022-04-072-2/+1
|
* main: Remove unused declaration of totem_object_show_properties()Bastien Nocera2022-04-071-1/+0
|