summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update Abkhazian translationgnome-43Nart Tlisha2023-04-051-13/+4134
|
* Update Vietnamese translationNgọc Quân Trần2023-04-011-151/+157
|
* Update British English translationBruce Cowan2023-03-231-344/+458
|
* Update Chinese (Taiwan) translationChao-Hsiung Liao2023-03-181-348/+458
|
* Update Korean translationSeong-ho Cho2023-03-091-41/+41
|
* Update Friulian translationFabio Tomat2023-02-261-12/+12
|
* Update Danish translationAlan Mortensen2023-02-251-53/+53
|
* flatpak: Fix tracker-miners buildBastien Nocera2023-02-131-0/+1
| | | | | Disable battery detection, we only mine when totem is running, and upower-glib can't run inside a sandbox without poking holes.
* flatpak: Build libsoup-2.4 ourselvesBastien Nocera2023-02-131-0/+18
| | | | | It was removed from the GNOME SDK in: https://gitlab.gnome.org/GNOME/gnome-build-meta/-/merge_requests/1959
* appdata: Update screenshot tagsJake Dane2023-02-131-2/+6
| | | | | | Insert mandatory `<image/>` child in each `<screenshot/> tag. (Hopefully) Fixes #574.
* libgd: Update libgd to fix filenames in icon viewBastien Nocera2023-02-131-0/+0
| | | | | | | | | | | | 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
* flatpak: Update to lua 5.4Bastien Nocera2023-02-132-1/+1
| | | | Closes: #560
* Revert "ci: Disable pylint again"Bastien Nocera2023-02-131-2/+0
| | | | | The regression seems to have been fixed. This reverts commit c98f0f633d6a4841ee3ea65a6b6a0df707897ff5.
* plugins: Remove ignore for removed pylint checkerBastien Nocera2023-02-131-1/+1
| | | | 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)
* pythonconsole: Remove ignore for removed checkersBastien Nocera2023-02-132-7/+7
| | | | | | | | | | 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)
* opensubtitles: Re-enable menu item after DownloadKrifa752023-02-131-0/+2
| | | | | | After downloading a subtitle, the menu was disabled. Closes: #532
* opensubtitles: Fix invalid format specifierKrifa752023-02-131-1/+1
| | | | Fixes: 267f18b ("opensubtitles: Fix some pylint warnings")
* opensubtitles: Re-fix blank dialogue (and traceback)Bastien Nocera2023-02-132-2/+6
| | | | | | | | | | | | 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")
* opensubtitles: Fix blank dialogue when reopenedBastien Nocera2023-02-131-0/+1
| | | | | | | | | | | | | | | | 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: 2001dfe ("opensubtitles: Fix dialogue not showing up") Closes: #549
* mpris: Work-around some players not handling empty TrackIdBastien Nocera2023-02-131-0/+5
| | | | | | | | | | | | | 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
* Update Abkhazian translationNart Tlisha2023-01-051-3/+3
|
* Update Belarusian translationVasil Pupkin2022-12-151-440/+540
|
* Add Interlingue translationOlga Smirnova2022-12-092-0/+2026
|
* Update Abkhazian translationNart Tlisha2022-12-021-866/+129
|
* Update Indonesian translationAndika Triwidada2022-12-011-9/+9
|
* Update Dutch translationNathan Follens2022-11-011-67/+83
|
* Update Russian translationSergej A2022-10-311-121/+127
|
* Update Abkhazian translationNart Tlisha2022-10-311-3128/+8
|
* Update Italian translationGianvito Cavasoli2022-10-211-150/+142
|
* main: Fix scroll-by-page GTK setting breaking sliderAlban Browaeys2022-10-211-0/+4
| | | | | | | | | | | | | 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
* build: Use i18n.merge_file() for plugin filesGeorges Basile Stavracas Neto2022-10-2118-106/+89
| | | | | | | | | | 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.
* Update Icelandic translationSveinn í Felli2022-10-171-159/+170
|
* mpris: Fix artist not showing in gnome-shellBastien Nocera2022-10-171-9/+22
| | | | | | | | | 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
* Update German translationChristian Kirbach2022-10-081-9/+9
|
* Update Abkhazian translationNart Tlisha2022-09-291-71/+3937
|
* Update Brazilian Portuguese translationLeônidas Araújo2022-09-281-91/+102
|
* Update Slovak translationDušan Kazik2022-09-271-199/+225
|
* Update Friulian translationFabio Tomat2022-09-251-81/+76
|
* Updated Spanish translationDaniel Mustieles2022-09-191-931/+994
|
* Update Kazakh translationBaurzhan Muftakhidinov2022-09-181-144/+152
|
* Update French translationIrénée THIRION2022-09-171-15/+22
|
* Update French translationCharles Monzat2022-09-171-8/+7
| | | | (cherry picked from commit 1b226b84335d62800dd94f1771e33ff363b673ea)
* 43.043.0Bastien Nocera2022-09-163-1/+13
|
* desktop: Remove obsolete Bugzilla entriesJake Dane2022-09-112-6/+0
| | | | | The X-GNOME-Bugzilla-* entries were for use by bug-buddy, a GNOME 2 technology that's been gone for over a decade. These entries are obsolete and can be removed.
* Update Bulgarian translationAlexander Shopov2022-09-101-191/+171
|
* Update Slovenian translationMatej Urbančič2022-09-091-142/+1011
|
* Update Greek translationEfstathios Iosifidis2022-09-091-50/+24
|
* Update Greek translationEfstathios Iosifidis2022-09-091-343/+489
|
* Add Nepali translationPawan Chitrakar2022-09-072-0/+1012
|
* 43.rc43.rcBastien Nocera2022-09-062-1/+5
|