Commit Graph

34382 Commits (2fa1bf0306f3d05ed8e4dafd3e23636ea91f151e)

Author SHA1 Message Date
Nextcloud bot 2fa1bf0306
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-09-17 00:13:43 +07:00
SebastianKrupinski e25d0dbf2d fix: aliases and capitalization of emails
Signed-off-by: SebastianKrupinski <krupinskis05@gmail.com>
2025-09-16 22:05:47 +07:00
Nextcloud bot ada7e9f192
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-09-16 00:13:48 +07:00
Louis Chemineau d7775cba6a
fix: Dispatch favorite event with an actual path
The `$path` argument was added in https://github.com/nextcloud/server/pull/48612, but was never actually used by the callers. The path was therefore missing in the favorite/unfavorite events, which lead to a broken activity information.

I also added a fallback to handle `addToFavorites` and `removeFromFavorites`, which are part of a public API, and are calling `tagAs` and `untag` without `$path`.

Fix https://github.com/nextcloud/activity/issues/2134

Signed-off-by: Louis Chemineau <louis@chmn.me>
2025-09-15 16:52:28 +07:00
Andy Scherzinger d0966a74c6
Merge pull request #54947 from nextcloud/backport/54565/stable31
[stable31] feat(file_sharing): Provide template creator list in public shares
2025-09-15 16:17:08 +07:00
Kate 0e73460198
Merge pull request #54999 from nextcloud/backport/54950/stable31 2025-09-15 10:04:23 +07:00
Louis a9daf61e09
Merge pull request #53026 from nextcloud/backport/52825/stable31 2025-09-15 09:51:05 +07:00
Nextcloud bot 616d72ff8b
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-09-15 00:13:29 +07:00
provokateurin 5f3e1f2e63 fix(files_trashbin): Fix size propagation when moving file to trash
Signed-off-by: provokateurin <kate@provokateurin.de>
2025-09-14 21:30:38 +07:00
Andy Scherzinger de5b40e37f
Merge pull request #54901 from nextcloud/backport/54853/stable31
[stable31] fix: TypeError: this.fetchDisplayName is not a function
2025-09-14 20:19:15 +07:00
Nextcloud bot d3c492baaf
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-09-14 00:13:29 +07:00
Nextcloud bot b091e77f99
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-09-13 00:13:32 +07:00
SebastianKrupinski 766cc99c9b fix: TypeError: this.fetchDisplayName is not a function
Signed-off-by: SebastianKrupinski <krupinskis05@gmail.com>
2025-09-12 18:37:52 +07:00
Andy Scherzinger 107a7c5d3b
Merge pull request #55070 from nextcloud/backport/55016/stable31
[stable31] fix: update transifex link
2025-09-12 16:20:23 +07:00
Nextcloud bot 1b3afd8b7b
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-09-12 14:08:42 +07:00
Ferdinand Thiessen ee9733026e fix(files_sharing): use `newPassword` always for the unsaved password
`newPassword` is the unsaved password, while `share.password` is the
current saved password.

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2025-09-12 12:13:28 +07:00
Daniel Kesselberg 9d790e424b
fix: update transifex link
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2025-09-12 11:28:08 +07:00
Andy Scherzinger 1c59c1054a
Merge pull request #54975 from nextcloud/backport/54653/stable31
[stable31] fix: Avoid internal error when logging in with the wrong account to verify email address
2025-09-12 08:28:36 +07:00
Nextcloud bot b00bbe6e3a
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-09-12 00:13:48 +07:00
Côme Chilliet a648715edc fix: Use HintException instead of InvalidArgumentException
To carry translated error messages intended for the end user,
 HintException is the correct class.

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2025-09-11 21:33:36 +07:00
Côme Chilliet 21e5f6e6d1 fix: Avoid internal error when logging in with the wrong account to verify email address
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2025-09-11 21:33:36 +07:00
Louis Chemineau ff6d316fd6 feat(file_sharing): Provide template creator list in public shares
Signed-off-by: Louis Chemineau <louis@chmn.me>
2025-09-11 16:10:31 +07:00
Louis Chemineau 60455d724b feat(files_trashbin): Refactor expire background job to support parallel run
- Follow-up of #51600

The original PR introduced the possibility to continue an `ExpireTrash` job by saving the offset. This was to prevent having to start over the whole user list when the job crashed or was killed.

But on big instances, one process is not enough to go through all the users in a timely manner. Supporting parallel run allows covering more ground faster.

This PR introduced this possibility. We are now storing the offset right away to allow another parallel job to pick up the task at that point. We are arbitrarily cutting the user list in chunk of 10 to not drastically overflow the 30 minutes time limit.

Signed-off-by: Louis Chemineau <louis@chmn.me>
2025-09-11 16:10:25 +07:00
Nextcloud bot 1ea42f7df4
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-09-11 00:14:01 +07:00
Nextcloud bot cc46ca1f28
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-09-10 19:34:49 +07:00
provokateurin 48fe23e772
Revert "fix(files_trashbin): Fix size propagation when moving file to trash"
This reverts commit b0a27e4dc4.

Signed-off-by: provokateurin <kate@provokateurin.de>
2025-09-10 09:00:41 +07:00
Andy Scherzinger 808cb1f72c
Merge pull request #54971 from nextcloud/backport/54950/stable31
[stable31] fix(files_trashbin): Fix size propagation when moving file to trash
2025-09-10 08:31:27 +07:00
provokateurin b0a27e4dc4
fix(files_trashbin): Fix size propagation when moving file to trash
Signed-off-by: provokateurin <kate@provokateurin.de>
2025-09-10 07:27:23 +07:00
Nextcloud bot 5f4eb6b493
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-09-10 00:14:09 +07:00
Nextcloud bot ceb65eb1ff
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-09-09 00:15:41 +07:00
Nextcloud bot c864273219
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-09-08 00:13:48 +07:00
Nextcloud bot 6505dfc796
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-09-07 00:14:54 +07:00
Nextcloud bot 4b0655a255
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-09-06 00:13:47 +07:00
Nextcloud bot 50c4c82562
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-09-05 00:14:02 +07:00
Joas Schilling 1435a680e6 fix(security): Update Expires time
Signed-off-by: Joas Schilling <coding@schilljs.com>
2025-09-04 09:26:26 +07:00
Nextcloud bot 55f3eceec6
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-09-04 00:13:07 +07:00
Ferdinand Thiessen cc273ac1a6 fix: the account files filter should also work in trashbin
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2025-09-03 18:46:01 +07:00
Joas Schilling f82fe528f0 fix(dashboard): Fix missing weather icon
Signed-off-by: Joas Schilling <coding@schilljs.com>
2025-09-03 14:52:33 +07:00
Joas Schilling 08df13a7cc fix(dashboard): Fix favorite dashboard icon
Signed-off-by: Joas Schilling <coding@schilljs.com>
2025-09-03 14:52:33 +07:00
Daniel Kesselberg 59a901c9bd
fix(comments): use showFile route to reference files with a matching comment
The files.view.index route with dir and scrollto is deprecated and
opening the actual does not work anymore.

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2025-09-03 11:58:35 +07:00
Andy Scherzinger 785f50941d
Merge pull request #54824 from nextcloud/backport/50391/stable31
[stable31] fix(dav): Mark removal of dav object properties as expensive
2025-09-03 09:03:52 +07:00
Nextcloud bot 4ec5aa8702
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-09-03 00:12:46 +07:00
Christoph Wurst e08dfab30f fix(dav): Mark removal of dav object properties as expensive
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2025-09-02 19:36:26 +07:00
Ferdinand Thiessen bd397aee01
fix(dav): ensure moving or copying a file is possible
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2025-09-02 18:01:10 +07:00
SebastianKrupinski 8008ae84b9 fix: add missing listener
Signed-off-by: SebastianKrupinski <krupinskis05@gmail.com>
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
2025-09-02 12:26:04 +07:00
Nextcloud bot bb0f8e9e47
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-09-02 00:12:22 +07:00
Luka Trovic fd3ca18df0 fix: resolving conflict when uploading multiple files via drag&drop
Signed-off-by: Luka Trovic <luka@nextcloud.com>
2025-09-01 13:14:05 +07:00
Kate 66df8eabf6
Merge pull request #54714 from nextcloud/fix/deps/nextcloud-vue-8.29.2-stable31 2025-09-01 09:08:33 +07:00
Nextcloud bot d57baa9f1c
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-09-01 00:12:21 +07:00
provokateurin 85936ffd76
fix(deps): Update @nextcloud/vue to v8.29.2
Signed-off-by: provokateurin <kate@provokateurin.de>
2025-08-31 16:29:41 +07:00