summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* ci: Drop the Docker image used by Flatpak jobbarthalion/gnome-runtime-images-quayBartłomiej Piotrowski2022-07-281-1/+0
| | | | | The gnome-runtime-images have been recently migrated to Quay. This is already reflected in the template, so no need to declare it manually.
* Updated Spanish translationDaniel Mustieles2022-07-271-43/+49
|
* Update Friulian translationFabio Tomat2022-07-241-83/+104
|
* Update Georgian translationZurab Kargareteli2022-07-241-95/+98
|
* Update Indonesian translationKukuh Syafaat2022-07-241-40/+49
|
* Update Turkish translationEmin Tufan Çetin2022-07-221-129/+101
|
* Update Persian translationDanial Behzadi2022-07-211-41/+50
|
* Update Russian translationAleksandr Melman2022-07-211-85/+97
|
* Update Hebrew translationYosef Or Boczko2022-07-191-52/+52
|
* Update Portuguese translationHugo Carvalho2022-07-191-48/+54
|
* Update Swedish translationAnders Jonsson2022-07-191-86/+95
|
* Update Ukrainian translationYuri Chornoivan2022-07-181-95/+100
|
* main: Rely on libX11 initialising threadsBastien Nocera2022-07-182-11/+1
|
* backend: Rely on libX11 initialising threadsBastien Nocera2022-07-182-8/+1
|
* build: Require libx11 1.8Bastien Nocera2022-07-181-1/+1
| | | | | | | Require a version of libX11 new enough that it will initialise threads support itself. See https://gitlab.freedesktop.org/xorg/lib/libx11/-/commit/afcdb6fb0045c6186aa83d9298f327a7ec1b2cb9
* ci: Disable pylint againBastien Nocera2022-07-181-0/+2
| | | | | This time, the problem seems to be a regression in astroid: https://github.com/PyCQA/pylint/issues/6352
* ci: Require a newer version of FedoraBastien Nocera2022-07-181-1/+1
| | | | So we can have a newer libX11
* flatpak: Enable inspector-page in devel FlatpakBastien Nocera2022-07-181-0/+1
|
* main: Add playlist page to GTK inspectorBastien Nocera2022-07-186-10/+196
| | | | | | | | | Before this change, it was possible to visualise the playlist as a widget by recompiling totem while uncommenting a couple of lines of code. Move this functionality to the GTK inspector by creating a module that will get loaded when the GTK inspector is.
* backend: Translate DVD/VCD device errorsBastien Nocera2022-07-181-2/+2
| | | | Not sure why those weren't translated in 2012, but here goes.
* backend: Show error page when OpenGL couldn't initBastien Nocera2022-07-181-0/+2
| | | | Better than GTK's "something OpenGL context something".
* backend: Throw a better error if OpenGL couldn't initBastien Nocera2022-07-181-0/+8
| | | | | | | | | | | Throw a better error than "The specified file could not be found" when GTK fails to initialise OpenGL support. This can happen when the version of OpenGL supported by the drivers is too old to work with GTK, for example: MESA_GL_VERSION_OVERRIDE=2.7 totem Closes: #523
* 43.alpha43.alphaBastien Nocera2022-07-162-1/+8
|
* 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
|