summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* flatpak: Remove unused gcovr modulewip/oholy/ci-stableOndrej Holy2020-08-194-27/+0
| | | | | The coverage is not computed since the commit a5a405d. Let's remove the unused gcovr module also.
* ci: Remove dead codeOndrej Holy2020-08-191-53/+1
| | | | | | The coverage is not computed since the commit a5a405d, but .gitlab-ci.yml still contains some coverage related code which is not currently used. Let's remove that code to make it more readable.
* ci: Remove obsolete review jobsOndrej Holy2020-08-191-8/+0
| | | | | Teh review and stop_review jobs are no more needed as per flatpak_ci_initiative.yml comments. Let't remove them to make the file more readable.
* batch-rename-utilities: Use string literal instead of IRIMax2020-08-191-1/+1
| | | | | | | | | | | | | The batch rename feature supports renaming files by common metadata stored in Tracker's database. This was previously broken because a filter in the SPARQL query that intends to limit the file selection to the current directory was always returning 0 results. Changing the string quote type from IRI syntax to a regular string literal within that filter call fixes the problem. Fixes #1025. (cherry picked from commit 1a75eeb555af6c7e467b0a46c7db6e71896bf625)
* Update Japanese translationsicklylife2020-08-141-12/+13
|
* Update Catalan translationJordi Mas2020-08-091-977/+945
|
* Update Catalan translationJordi Mas2020-08-091-940/+972
|
* Update Catalan translationJordi Mas2020-07-231-5/+5
|
* Update Chinese (China) translationBoyuan Yang2020-07-211-1096/+1408
|
* Update Kazakh translationBaurzhan Muftakhidinov2020-06-261-686/+683
|
* Fixed bad French translationClaude Paroz2020-06-191-1/+1
| | | | | Fixes https://gitlab.gnome.org/Teams/Translation/fr/-/issues/6 Backport of 1ef4b87d2b7961c03630a7efd231cb1eb3fa25d2 from master.
* Update Kazakh translationBaurzhan Muftakhidinov2020-06-151-863/+927
|
* Release version 3.36.33.36.3Ondrej Holy2020-05-292-1/+5
|
* file: Fix reference leakAntónio Fernandes2020-05-291-4/+4
| | | | | | | | | | | | | | | We are missing a "nautilus_file_unref(parent);" statement is missing in the get_filesystem_remote() method, leaking a reference. This was detected by a failing self-check test in a branch: https://gitlab.gnome.org/GNOME/nautilus/-/jobs/720894 Let's fix this with autocleanup. For consistency, change the neighboor get_filesystem_type() to use autocleanup too, instead of the explicit nautilus_file_unref(). (cherry picked from commit 9ef5d8344bf8355eceff291d9cd7029b532b9933)
* search-engine-tracker: Expand macro as stringAntónio Fernandes2020-05-291-1/+1
| | | | | | | | | | | We have changed the FILENAME_RANK constant from being used as a format string argument to be concatenated as a string during compilation, as detailed in 7f00ede9b410e88106cef34c634cb46e46015e37 However, I have forgotten to quote the constant, which otherwise cannot be treated as a string to concatenate. Fix that now.
* search-engine-tracker: Fix broken query under some localesCristiano Nunes2020-05-291-4/+3
| | | | | | | | | | | | | | | | | | We set a 5.0 rank for filename matches in the SPARQL query as a float argument in a format string. However, the floats in format strings are translated with the decimal separator from the locale. This means in some locales the rank has a comma instead of a dot, which results in a query error. In turn, this effectively broke the shell search provider. Instead of using a format specifier and passing the value as an argument, we should just use compile-time concatenation to insert '5.0' in the query unmodified. Fixes https://gitlab.gnome.org/GNOME/nautilus/-/issues/1412 and #1437 Cherry-picked from 7f00ede9b410e88106cef34c634cb46e46015e37
* Update Catalan translationJordi Mas2020-05-231-761/+735
|
* Update Catalan translationJordi Mas2020-05-231-735/+761
|
* Update Japanese translationsicklylife2020-05-211-9/+9
|
* Update Japanese translationsicklylife2020-05-211-80/+80
|
* Update Basque translationIbai Oihanguren Sala2020-04-281-3/+3
|
* Release version 3.36.23.36.2Ondrej Holy2020-04-242-1/+6
|
* files-view: Cancel kinetic deceleration on loadingAntónio Fernandes2020-04-211-0/+20
| | | | | | | | | | | | | | | If we change location while the view is still scrolling due to kinetic deceleration, we get a sudden jump to the same scrolling position as the previous location, as well as residual scrolling movement in the new location. This is both undesirable and unexpected from a user POV. Workaround that by canceling deceleration when switching locations. Fixes https://gitlab.gnome.org/GNOME/nautilus/-/issues/1452 (cherry picked from commit a4d7148210970c5eb874df736b900f577684a13b)
* Update Croatian translationGoran Vidović2020-04-181-91/+91
|
* flatpak: Fix typosAntónio Fernandes2020-04-153-5/+5
| | | | | | | Pipeline failed. Cause: invalid URLs resulting from faulty select-copy-paste operation. (cherry picked from commit 65c338384c26a1af131c8cbcaf4a7832f4e2a122)
* flatpak: Unpin tracker[-miners]António Fernandes2020-04-153-18/+18
| | | | | | | | | We've pinned to specific versions, because their git master branches have API-breaking changes. Instead, let's follow from the tracker[-miners]-2.3 branches, where the stable API is still maintained. (cherry picked from commit 90cc5fed28ef97cb862c1b71f899db49d4f37770)
* Update Basque translationIbai Oihanguren Sala2020-04-141-4/+4
|
* Update Basque translationIbai Oihanguren Sala2020-04-131-83/+83
|
* Revert "file: use emblems for files that use default icon"António Fernandes2020-04-101-22/+1
| | | | | | | | This reverts commit 8efe35665368539de0e15f150292996cb0ab9121. It aggravated a performance bug. Reverting only on stable branches. https://gitlab.gnome.org/GNOME/nautilus/-/issues/1226
* Updated Slovenian translationMatej Urbančič2020-04-101-341/+356
|
* Update Italian translationMilo Casagrande2020-04-091-125/+125
|
* file: Fallback to fast-content-type if content-type is not setOndrej Holy2020-04-051-0/+4
| | | | | | | | | | | | | The G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE attribute doesn't have to be always set. See https://gitlab.gnome.org/GNOME/gvfs/-/merge_requests/68 for more details. In that case, Nautilus fallbacks to the "application/octet-stream" type, which causes issues when opening the files. Let's fallback to the "standard::fast-content-type" attribute instead to fix issues when opening such files. Fixes: https://gitlab.gnome.org/GNOME/nautilus/-/issues/1425 (cherry picked from commit 0e5978035b0fc87c91d7b93ed79c64d51b6d6825)
* Update Slovak translationDušan Kazik2020-04-051-193/+198
|
* Update Latvian translationRūdolfs Mazurs2020-04-031-1/+3
|
* Update Latvian translationRūdolfs Mazurs2020-04-031-356/+358
|
* Update Turkish translationEmin Tufan Çetin2020-04-011-207/+207
|
* Update Chinese (Taiwan) translationCheng-Chia Tseng2020-03-311-259/+279
|
* Release version 3.36.1.13.36.1.1Ondrej Holy2020-03-302-1/+4
| | | | | This is because of some important changes in Lithuanian translation, which was delayed due to l10n.gnome.org maintenance.
* Update Hebrew translationYosef Or Boczko2020-03-291-122/+120
|
* Update Hebrew translationYosef Or Boczko2020-03-281-2342/+3290
|
* Update Lithuanian translationMantas Kriaučiūnas2020-03-271-169/+168
|
* Release version 3.36.13.36.1Ondrej Holy2020-03-272-1/+7
|
* Update Basque translationIbai Oihanguren Sala2020-03-261-25/+26
|
* clipboard: Fix incorrect item URIs collision checkArtem Serostanov2020-03-261-1/+1
| | | | | | | | | | | | | Nautilus is supposed to clear items in the clipboard in case when items moved by drag-and-drop were were present in the clipboard. However, the item URI collision check algorithm compares moved (or copied) items with themselves instead of clipboard contents, resulting in the clipboard being cleared on every drag-and-drop operation. Fix the algorithm to address this issue. Closes: https://gitlab.gnome.org/GNOME/nautilus/issues/1235
* files-view: Ignore hidden directories in the templates folderOndrej Holy2020-03-251-1/+46
| | | | | | | | | | | | | | | | | | The hidden files can now be used as templates since commit 967b9d7. This change also caused that also hidden directories and their content is offered in the "New Document" right click menu. This change was not intentional and causes issues when for example git is used to manage the templates as the while .git file tree is offered there. The similar issue can happen also with some hidden files like .gitignore, but there is not much we can do with it. Let's ignore the hidden directories as a compromise. Fixes: https://gitlab.gnome.org/GNOME/nautilus/-/issues/1413 (Cherry-picked from dfe2ce60503112c8986224ad4eebe8609a303570)
* Update Basque translationIbai Oihanguren Sala2020-03-211-194/+366
|
* Update Japanese translationsicklylife2020-03-181-3/+3
|
* Update Japanese translationsicklylife2020-03-181-70/+70
|
* Update Romanian translationDaniel Șerbănescu2020-03-181-332/+353
|
* Update Occitan translationQuentin PAGÈS2020-03-171-1689/+1766
|