summaryrefslogtreecommitdiffstats
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* Fix(l10n): Update translations from TransifexNextcloud bot2024-04-2120-12/+278
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-04-2052-22/+532
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-04-19154-538/+704
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* fix(files): Also restore shares after ownership transfer for object storageFerdinand Thiessen2024-04-181-14/+52
| | | | | | | | | When a file is moved between different storages then the file id is not (always) preserved. This means the file id has to be adjusted for all shares. So in case the file id does not exist anymore we try to find the new file id based on the target path of the transfer and the path suffix of the share. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-04-1844-0/+670
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #44472 from nextcloud/backport/44017/stable27Git'Fellow2024-04-172-1/+68
|\ | | | | [stable27] Fix/caldav/eventcomparisionservice uses wrong array comparison
| * fix(dav): wrong comparison method between two eventsRobert C. Schaller2024-03-262-1/+68
| | | | | | | | | | | | | | | | | | Old comparison implementation compares each element of the array against each other with no respect for the associated array label, which leads to wrongful removals because one value is accidentally present in a completely different label. New comparison works 'by-label' individually. Partly fixes #41084 because changes between 'SEQUENCE' not present, 'SEQUENCE:0' and 'SEQUENCE:1' were not detected in the old implementation and thus no email update sent. Co-authored-by: Christoph Wurst <ChristophWurst@users.noreply.github.com> Signed-off-by: Robert C. Schaller <gtbc_robert.schaller@rsxc.de>
* | Merge pull request #44499 from nextcloud/backport/44484/stable27Benjamin Gaussorgues2024-04-171-7/+7
|\ \
| * | fix(share): Send correct share attributes upon share creationfenn-cs2024-04-151-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Send correct share attributes (`share.attributes`) to server upon creation. - Delete parts of code that create or reference, `share.hasDownloadPermission` (Not required by Share API) Resolves : https://github.com/nextcloud/server/issues/44131 Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
* | | Merge pull request #44803 from nextcloud/fix/smartpicker-file-pickerBenjamin Gaussorgues2024-04-171-16/+25
|\ \ \
| * | | fix(files): Allow to pick directories using the file reference pickerFerdinand Thiessen2024-04-151-16/+25
| | | | | | | | | | | | | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | | | Fix(l10n): Update translations from TransifexNextcloud bot2024-04-17120-252/+464
| |/ / |/| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | fix: Fix opening "Remote shares" dialog even if Notifications is availableDaniel Calviño Sánchez2024-04-151-1/+1
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The dialog is supposed to be shown only if the Notifications app is not available, and to know whether it is available or not it is checked if the header contains the Notifications button. However, in Nextcloud 25 the DOM of the Notifications app changed, so the button is no longer found and thus the dialog was always shown when there are pending shares. Even if the correct element query was used the dialog may be still shown anyway if "external.js" is loaded before the notifications button is added to the header. Therefore now it is checked if the Notifications app is available or not from the OC API. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-04-1514-38/+66
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-04-1410-8/+52
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-04-134-40/+338
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-04-1210-10/+208
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Merge pull request #44766 from nextcloud/backport/44350/stable27Arthur Schiwon2024-04-113-1/+21
|\ \ | | | | | | [stable27] fix(LDAP): escape DN on check-user
| * | docs(LDAP): add info on stored DN formArthur Schiwon2024-04-102-0/+19
| | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * | fix(LDAP): escape DN on check-userArthur Schiwon2024-04-101-1/+2
| | | | | | | | | | | | | | | | | | | | | the DN has to be escaped differently when used as a base and we were missing it here in the search method call in the check-user command. Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | | Fix(l10n): Update translations from TransifexNextcloud bot2024-04-1112-2/+124
|/ / | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-04-1022-20/+58
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-04-0962-58/+96
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | fix(share): Send empty expireDate when not expireDate setfenn-cs2024-04-081-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | When creating a new share, if the user unchecks "Set expiry date" no `expireDate` is sent to the server. However, the server then assumes the default configured, hence better to send an empty value. Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-04-088-0/+150
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-04-0722-4/+202
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-04-0612-6/+96
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-04-05128-416/+616
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | chore(dav): Fix tests for length headers on uploadCôme Chilliet2024-04-041-3/+2
| | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | fix(dav): Fix quota check for chunk uploadCôme Chilliet2024-04-041-4/+6
| | | | | | | | | | | | | | Do not ignore OC-Total-Length when Content-Length and X-Expected-Entity-Length are missing Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | fix(encryption): Clicking default module in UI sets bogus valueLouis Chemineau2024-04-041-3/+2
| | | | | | | | | | | | | | | | | | | | Fixes #44532 Likely fixes #43123 Signed-off-by: Josh <josh.t.richards@gmail.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com> Signed-off-by: Louis Chemineau <louis@chmn.me>
* | Merge pull request #44602 from nextcloud/backport/44512/stable27John Molakvoæ2024-04-042-2/+38
|\ \
| * | feat(trashbin): Show original location of deleted fileChristopher Ng2024-04-032-2/+38
| | | | | | | | | | | | | | | Signed-off-by: Christopher Ng <chrng8@gmail.com> (cherry picked from commit 1ae78095c87abb6d7ac8040d4e686f61414be18e)
* | | Fix(l10n): Update translations from TransifexNextcloud bot2024-04-0448-20/+314
|/ / | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | fix(files_sharing): Create passwords when enforced for mail sharesFerdinand Thiessen2024-04-032-10/+7
| | | | | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-04-0358-140/+224
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-04-0284-36/+384
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-04-0148-42/+294
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-03-3168-60/+298
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-03-30190-100/+1072
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-03-29932-5066/+3116
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | fix(security): Update expiration date in security.txtJoas Schilling2024-03-281-1/+1
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-03-2892-6/+186
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-03-2718-16/+62
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-03-2646-130/+170
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #44415 from nextcloud/backport/44132/stable27Stephan Orbaugh2024-03-251-0/+19
|\ | | | | [stable27] fix: don't return null for SharedStorage::getWrapperStorage with share recursion
| * chore: improve typing for SharedStorage::$storageRobin Appelman2024-03-221-0/+9
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * fix: don't return null for SharedStorage::getWrapperStorage with share recursionRobin Appelman2024-03-221-0/+10
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-03-2532-56/+162
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-03-2412-2/+22
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>