aboutsummaryrefslogtreecommitdiffstats
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* fix(AppDiscover): Ensure created cache folder is safe-chars onlybackport/51379/stable31Git'Fellow10 days1-1/+3
| | | | Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
* Fix(l10n): Update translations from TransifexNextcloud bot11 days10-12/+36
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot12 days12-36/+88
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot13 days12-2/+38
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot14 days38-104/+256
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-03-07208-380/+178
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* fix(systemtags): prevent tag edition if restrictedskjnldsv2025-03-064-21/+41
| | | | | | Signed-off-by: skjnldsv <skjnldsv@protonmail.com> [skip ci]
* fix(systemtags): unify restrict_creation_to_admin handlingskjnldsv2025-03-067-15/+41
| | | | Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
* Merge pull request #50932 from nextcloud/backport/50910/stable31Andy Scherzinger2025-03-066-42/+71
|\ | | | | [stable31] fix(files_external): request strict password auth on credentials enter action
| * fix(systemtags): Fix invalid dompurify importFerdinand Thiessen2025-03-061-2/+2
| | | | | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
| * fix(l10n): Fix triple dot in translationJoas Schilling2025-03-061-1/+1
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * fix(files_external): inline storage check improvementsskjnldsv2025-03-063-35/+45
| | | | | | | | Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
| * chore(files_external): add cypress tests for user credentials actionskjnldsv2025-03-062-3/+12
| | | | | | | | Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
| * fix(files_external): request strict password auth on credentials enter actionskjnldsv2025-03-061-2/+12
| | | | | | | | Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2025-03-0628-24/+62
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-03-06452-772/+1442
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* fix(l10n): Remove leading space from translation stringbackport/51287/stable31Joas Schilling2025-03-051-1/+1
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* fix(dav): Use IUser::getDisplayName directlybackport/51258/stable31Christoph Wurst2025-03-053-10/+2
| | | | | | | No need to send this from the client. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* Merge pull request #51268 from nextcloud/backport/51239/stable31Maksim Sukharev2025-03-051-19/+32
|\ | | | | [stable31] fix(Comment): replace richEditor mixin with NcRichText
| * fix(Comment): replace richEditor mixin with NcRichTextMaksim Sukharev2025-03-051-19/+32
| | | | | | | | Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
* | fix(dav): Handle long absence status earlierChristoph Wurst2025-03-052-4/+9
| | | | | | | | | | | | Validate the request early. Don't let this cause a database error. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | fix(files_sharing): ensure downloaded file has the correct filenameFerdinand Thiessen2025-03-052-5/+30
|/ | | | | | | | Single file shares use the share token as source name, so we need to use the displayname. To do so we need to set the download attribute to the displayname of the file to download. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-03-0576-250/+142
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #51236 from nextcloud/backport/51151/stable31Andy Scherzinger2025-03-041-6/+28
|\ | | | | [stable31] fix(files_sharing): ignore duplicated navigation when replacing current route
| * fix(files_sharing): ignore duplicated navigation when replacing current routeFerdinand Thiessen2025-03-041-6/+28
| | | | | | | | | | | | | | | | Missing piece from https://github.com/nextcloud/server/pull/50669 as we also need to adjust the files sharing router otherwiese we can get those exceptions. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | fix(files_sharing): Map sharee information for `shared-by-you` viewFerdinand Thiessen2025-03-042-1/+20
|/ | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* Merge pull request #51015 from nextcloud/backport/50979/stable31Ferdinand Thiessen2025-03-049-169/+423
|\ | | | | [stable31] feat(files): allow to ignore warning to change file type
| * feat(files): allow to ignore warning to change file typeFerdinand Thiessen2025-03-049-169/+423
| | | | | | | | | | | | | | | | | | | | | | | | | | * Missing pieces of https://github.com/nextcloud/server/issues/46528 * Add checkbox to not show this dialog again * Add user config as suggested by designers in files settings to reenable or diable this behavior. * Fix behavior of dialog: It says "keep .ext" but it does not keep the extension but cancels the operation. From the button label the user expects that the operation is continued but with the old extension. * Added more test coverage by adding component tests. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | Merge pull request #51091 from nextcloud/backport/51069/stable31Andy Scherzinger2025-03-041-3/+3
|\ \ | | | | | | [stable31] Fix SQL query so that it is ansi safe fixing #51067
| * | fix: Change SQL query so that it is ansi safebackport/51069/stable31Johan Bernhardsson2025-02-271-3/+3
| | | | | | | | | | | | Signed-off-by: Johan Bernhardsson <johan.bernhardsson@redpill-linpro.com>
* | | fix(lookup_server_connector): fixed publishing of user properties to ↵backport/51229/stable31AbangTor2025-03-041-2/+6
| |/ |/| | | | | | | | | | | | | | | lookup-server Fix of the bug in the lookup_server_connector module to publish public user information to the lookup-server. As described in issue [#25290](https://github.com/nextcloud/server/issues/25290) Signed-off-by: AbangTor <63029179+abangtor@users.noreply.github.com>
* | feat: Add bases and gidNumber attribute to ldap:test-user-settings outputbackport/51218/stable31Côme Chilliet2025-03-041-2/+14
| | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | feat: Support deleting metadata from WebDAVLouis Chemineau2025-03-041-0/+6
| | | | | | | | | | | | The `$value` will be `null` if the update is wrapped inside a `<d:remove>...</d:remove>` block. Signed-off-by: Louis Chemineau <louis@chmn.me>
* | fix(FederatedShareProvider): Delete external shares when groups are deleted ↵backport/51000/stable31provokateurin2025-03-041-14/+44
| | | | | | | | | | | | or users removed from a group Signed-off-by: provokateurin <kate@provokateurin.de>
* | Fix(l10n): Update translations from TransifexNextcloud bot2025-03-0462-44/+454
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | fix(files_trashbin): disable bulk download for trashbinFerdinand Thiessen2025-03-031-2/+8
| | | | | | | | | | | | | | The backend does not allow bulk download within the trashbin, so we need to disable this also on the frontend. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | refactor: use eventbus for updated filtersFerdinand Thiessen2025-03-033-15/+7
| | | | | | | | | | | | | | prevent filters not applied if `filtersChanged` was set before file list mounted. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | fix(files): Ensure the filter instance is mountedFerdinand Thiessen2025-03-032-2/+7
| | | | | | | | | | | | | | | | `reset` could be called before the filters are mounted, in this case it is valid to update the presets, but we must not try to access the vue instance (as it does not exist yet). Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | Merge pull request #51106 from nextcloud/backport/51019/stable31Stephan Orbaugh2025-03-033-4/+8
|\ \ | | | | | | [stable31] fix(files_external): Move definition parameter to the correct place
| * | fix(files_external): Move definition parameter to the correct placebackport/51019/stable31provokateurin2025-02-273-4/+8
| | | | | | | | | | | | Signed-off-by: provokateurin <kate@provokateurin.de>
* | | Merge pull request #51111 from nextcloud/backport/47513/stable31Kate2025-03-032-17/+1
|\ \ \
| * | | fix: remove caching in fetchListOfGroupsDaniel Kesselberg2025-02-272-17/+1
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When using nested groups without a memberof overlay, then fetchListOfGroups is called from getGroupsByMember without applying the group filter. In some setups, the "unfiltered" result is then written back to the group mapping table. That might cause random "An administrator removed you from group" activities. I was unable to replicate it locally, but we got the feedback that the random activities stopped with the patch applied. Ref: https://github.com/nextcloud/server/issues/42195 Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* | | Fix(l10n): Update translations from TransifexNextcloud bot2025-03-0340-214/+348
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Merge pull request #51186 from nextcloud/backport/50970/stable31Ferdinand Thiessen2025-03-023-10/+110
|\ \ \ | | | | | | | | [stable31] chore(deps): bump webdav from 5.7.1 to 5.8.0
| * | | fix(systemtags): support new attribute parsing of webdav propsFerdinand Thiessen2025-03-023-10/+110
| | | | | | | | | | | | | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | | | Merge pull request #51149 from nextcloud/backport/51142/stable31Ferdinand Thiessen2025-03-024-4/+4
|\ \ \ \ | | | | | | | | | | [stable31] Remove space
| * | | | fix(eslint): Strings must use singlequoteJohn Molakvoæ2025-03-021-1/+1
| | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
| * | | | fix(l10n): use `do not` instead of `don't`Valdnet2025-03-024-4/+4
| |/ / / | | | | | | | | | | | | Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
* | | | Merge pull request #51121 from nextcloud/backport/51079/stable31Andy Scherzinger2025-03-021-2/+3
|\ \ \ \ | |/ / / |/| | | [stable31] fix(files_reminders): Do not attempt to send reminders after a user has left a share
| * | | fix(files_reminders): Do not attempt to send reminders after a user has left ↵backport/51079/stable31Christopher Ng2025-02-271-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | a share Signed-off-by: Christopher Ng <chrng8@gmail.com>