summaryrefslogtreecommitdiffstats
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
* Fix(l10n): Update translations from TransifexNextcloud bot2025-02-054-26/+32
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* feat(core): offer clipboard fallback for non-secure environmentsskjnldsv2025-02-042-0/+49
| | | | Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
* fix(unified-search): filteredProviders now inherits all provider propsnfebe2025-02-031-6/+6
| | | | | | | | | | | | | | | | | The main providers come from both the backend and client side plugins such as `in-folder` search. The main providers may carry callbacks functions and other information that should be passed to the `filteredProviders`. This is important because the current code does not make a distinction between `filteredProviders` and `providers` rightly so, becuase they are the same thing! Without the mentioned distinction above, sooner or later, we try to access a property on the `filteredProviders` which we did not transfer with the manual property copy. ---- This fix prevents in-folder search from searching everywhere when "load more results" is clicked; Essentially ignoring the in-folder search filter. Signed-off-by: nfebe <fenn25.fn@gmail.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-02-034-6/+6
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-02-014-4/+4
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* fix: Use `searchFrom` property for client side pluginsnfebe2025-01-313-13/+17
| | | | | | | | | | | | | | The client-side plugin `in-folder` uses the `files` provider, this makes it overlap with the main files provider itself. This change follows eecda06f1ad2832cc2a7b31d646458f730c8412a after it was discovered that some apps/providers like `dav` use providers from another app like `contacts` Signed-off-by: nfebe <fenn25.fn@gmail.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* fix: unified search provider idSebastianKrupinski2025-01-311-1/+1
| | | | | Signed-off-by: SebastianKrupinski <krupinskis05@gmail.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* Merge pull request #50564 from nextcloud/backport/50530/stable30Kate2025-01-311-8/+1
|\
| * fix(ConvertType): Read dbtype in createConnectionParams and remove safeguardbackport/50530/stable30Nils Wenninghoff2025-01-301-8/+1
| | | | | | | | Signed-off-by: Nils Wenninghoff <nils@ungemein.cool>
* | Fix(l10n): Update translations from TransifexNextcloud bot2025-01-316-22/+36
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* fix(unified-search): Prevent multiple file picker triggers in in-folder searchbackport/50129/stable30nfebe2025-01-291-1/+6
| | | | | Signed-off-by: nfebe <fenn25.fn@gmail.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* refactor: Drop deprecated use of defineStorenfebe2025-01-291-3/+1
| | | | Signed-off-by: nfebe <fenn25.fn@gmail.com>
* fix(unified-search): Use appId for searchingnfebe2025-01-291-2/+8
| | | | | | | | | | | | | | Each provider may search from a particular app so we should use that for searching. Before this commit, we used `provider.id` instead of `provider.appId` the problem with the previous approach is that it forces the provider id to be a valid search provider (an app that supports search) limiting the developers ability to use unique IDs to identify the different providers (especially plugin providers) inside the places filter. For example the Files search plugin "In folder" (search in folder plugin) was required to have id as `files` while the files provider itself already has id as `files`. Signed-off-by: nfebe <fenn25.fn@gmail.com>
* fix: `user:settings` command when user is not availablebackport/47889/stable30Ferdinand Thiessen2025-01-281-2/+5
| | | | | | | If `ignore-missing-user` all sub commands work, except listing all settings for a user like `occ user:settings --ignore-missing-user user core`. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-262-2/+12
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-258-4/+28
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-248-0/+90
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-23114-3046/+120
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-222-0/+2
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-214-6/+18
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* fix: Apply enforce theme config for anonymous users as wellbackport/50076/stable30Kostiantyn Miakshyn2025-01-181-1/+3
| | | | Signed-off-by: Kostiantyn Miakshyn <molodchick@gmail.com>
* fix(UnifiedSearch): request data only when opening modalMaksim Sukharev2025-01-181-12/+13
| | | | Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-182-0/+6
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* feat: Adapt providers `disabled` property to match user applied filtersnfebe2025-01-171-6/+19
| | | | | | | | | | Some filters are only available for certain providers, the UI should give the user a hint to what providers such filters are available in. Currently, if a filter (date or person) is not support by an a provider, the provider is blurred out in the places dropdown. Signed-off-by: nfebe <fenn25.fn@gmail.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-172-0/+6
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #49940 from nextcloud/backport/49208/stable30Ferdinand Thiessen2025-01-161-6/+53
|\ | | | | [stable30] fix: Redirect user to login if session is terminated
| * fix: Redirect user to login if session is terminatedFerdinand Thiessen2025-01-091-6/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | If a session timed out or was closed in another tab, then currently the user gets random error messages. This intercepts 401 responses (should only happen if logged out, or the users does something wrong). If we get a 401, we make sure its because of the session, by checking if the user can access the files app. If that is also the case we forward the user to the login page and set the redirect URL to the last used URL. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | Merge pull request #49680 from nextcloud/backport/49677/stable30Ferdinand Thiessen2025-01-161-0/+2
|\ \ | | | | | | [stable30] fix(db): Create the systag_by_objectid index for new installations
| * | fix(db): Create the systag_by_objectid index for new installationsbackport/49677/stable30Christoph Wurst2024-12-051-0/+2
| | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | Fix(l10n): Update translations from TransifexNextcloud bot2025-01-162-0/+4
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Fix(l10n): Update translations from TransifexNextcloud bot2025-01-142-0/+6
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Fix(l10n): Update translations from TransifexNextcloud bot2025-01-136-0/+20
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Fix(l10n): Update translations from TransifexNextcloud bot2025-01-122-0/+2
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Fix(l10n): Update translations from TransifexNextcloud bot2025-01-114-0/+12
| |/ |/| | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2025-01-0918-2/+50
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2025-01-08114-114/+114
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | fix(setup): clarify installation wording to be clear that it is about ↵backport/49962/stable30Jan C. Borchardt2025-01-071-3/+3
| | | | | | | | | | | | account creation Signed-off-by: Jan C. Borchardt <925062+jancborchardt@users.noreply.github.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2025-01-056-14/+18
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2025-01-032-2/+2
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-12-254-0/+26
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-12-232-4/+4
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-12-222-0/+2
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-12-212-72/+76
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | fix(share): render conflict modal in public sharesMax2024-12-191-1/+10
| | | | | | | | | | | | Handle templates with license comments in `octemplate.js`. Signed-off-by: Max <max@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-12-192-2/+2
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-12-186-14/+16
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Merge pull request #49884 from nextcloud/backport/49801/stable30Jonas2024-12-171-1/+1
|\ \ | | | | | | [stable30] fix(ReferenceApiController): Bump rate limit for public resolve endpoint
| * | fix(ReferenceApiController): Bump rate limit for public resolve endpointbackport/49801/stable30Jonas2024-12-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | E.g. text documents might contain hundreds of links whose previews need to get loaded. Fixes: nextcloud/collectives#1607 Signed-off-by: Jonas <jonas@freesources.org>
* | | Fix(l10n): Update translations from TransifexNextcloud bot2024-12-172-0/+4
|/ / | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-12-164-62/+64
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>