aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* chore(assets): Recompile assetsbackport/44236/stable28Grigorii K. Shartsev2025-02-046-8/+8
| | | | Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
* fix(settings): app list scroll on SafariGrigorii K. Shartsev2025-02-042-9/+60
| | | | Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
* Merge pull request #50638 from nextcloud/backport/50270/stable28-follow-upAndy Scherzinger2025-02-041-1/+1
|\ | | | | ci(cypress): Bump upload action to latest v4 (again)
| * ci(cypress): Bump upload action to latest v4 (again)backport/50270/stable28-follow-upAndy Scherzinger2025-02-041-1/+1
|/ | | | Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
* Merge pull request #50597 from nextcloud/backport/50270/stable28Andy Scherzinger2025-02-049-289/+393
|\ | | | | [stable28] fix(files_sharing): Respect permissions passed when creating link shares
| * ci(cypress): Bump upload action to latest v4Andy Scherzinger2025-02-042-3/+3
| | | | | | | | Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
| * test: Reset sharing app config after testFerdinand Thiessen2025-01-311-0/+1
| | | | | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
| * fix(sharing): Move permission validation to share managerFerdinand Thiessen2025-01-312-5/+36
| | | | | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
| * fix(files_sharing): Respect permissions passed when creating link sharesFerdinand Thiessen2025-01-314-281/+353
|/ | | | | | | | | | | | | | | | | Given: User creates a link or email share with permissions=4 (create only = file drop). Problem: Currently the permissions are automatically extended to permissions = 5 (READ + CREATE). Work around was to create the share and directly update it. Solution: Respect what the user is requesting, create a file drop share. Co-authored-by: Ferdinand Thiessen <opensource@fthiessen.de> Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com> Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* Merge pull request #50521 from nextcloud/backport/50299/stable28Andy Scherzinger2025-01-291-3/+2
|\ | | | | [stable28] fix(files_versions): Update `unencrypted_size` during rollback
| * fix(files_versions): Update `unencrypted_size` during rollbackbackport/50299/stable28Louis Chemineau2025-01-291-1/+2
| | | | | | | | | | | | This prevent restored version of encrypted files from having a wrong reported size. This was blocking download. Signed-off-by: Louis Chemineau <louis@chmn.me>
| * chore(files_versions): Remove unused $node variableLouis Chemineau2025-01-291-2/+0
|/ | | | Signed-off-by: Louis Chemineau <louis@chmn.me>
* Merge pull request #50412 from nextcloud/backport/49639/stable28Andy Scherzinger2025-01-252-4/+4
|\ | | | | [stable28] fix: adjust url for task links
| * fix(TasksSearchProviderTest): adjust deep link to Tasks appbackport/49639/stable28Raimund Schlüßler2025-01-241-3/+3
| | | | | | Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
| * fix: adjust url for task linksRaimund Schlüßler2025-01-241-1/+1
|/ | | Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
* Merge pull request #50384 from ↵Joas Schilling2025-01-241-41/+42
|\ | | | | | | | | nextcloud/automated/noid/stable28-update-code-signing-crl [stable28] fix(security): Update code signing revocation list
| * fix(security): Update code signing revocation listautomated/noid/stable28-update-code-signing-crlnextcloud-command2025-01-241-41/+42
|/ | | | Signed-off-by: GitHub <noreply@github.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-2326-54/+350
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-22124-124/+452
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-21246-370/+686
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-2024-6/+92
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-1916-10/+46
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-1836-14/+230
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-1734-0/+226
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #50202 from nextcloud/backport/50192/stable28Andy Scherzinger2025-01-1614-26/+165
|\ | | | | [stable28] fix(files_sharing): Stop overwriting the share expiration date with the default expiration date
| * chore: Compile assetsFerdinand Thiessen2025-01-167-7/+7
| | | | | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
| * test: Add end-to-end tests for share expiry dateFerdinand Thiessen2025-01-164-5/+151
| | | | | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
| * fix(files_sharing): Remove debounce from expiration date formattingFerdinand Thiessen2025-01-162-4/+6
| | | | | | | | | | | | | | | | This should be done as soon as changed, as the value is not passed to API but needs to be tracked internally (e.g. if you quickly press "save"). Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
| * fix(files_sharing): Stop overwriting the share expiration date with the ↵provokateurin2025-01-161-10/+1
|/ | | | | | default expiration date Signed-off-by: provokateurin <kate@provokateurin.de>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-16102-4/+112
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-1598-98/+98
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-1420-2/+74
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-1340-78/+292
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-1216-2/+44
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-11124-28/+328
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-106-12/+70
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-0946-6/+444
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-08320-558/+902
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #50056 from nextcloud/backport/50035/stable28Joas Schilling2025-01-072-6/+1
|\ | | | | [stable28] fix(HTTP): Adjust JSONResponse data type
| * fix(HTTP): Adjust JSONResponse data typeprovokateurin2025-01-072-6/+1
|/ | | | Signed-off-by: provokateurin <kate@provokateurin.de>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-076-0/+8
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #49931 from nextcloud/backport/49927/stable28Luka Trovic2025-01-063-15/+289
|\ | | | | [stable28] fix: promote re-shares when deleting the parent share
| * chore: Remove syntax incompatible with PHP 8.0backport/49927/stable28Côme Chilliet2024-12-201-2/+5
| | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * fix: Use getRelativePath method to check if node is inside folderCôme Chilliet2024-12-202-11/+16
| | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * fix: Fix promotion of reshares from subsubfoldersCôme Chilliet2024-12-202-26/+101
| | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * fix(tests): Revert changes to tests now that reshares are not deleted but ↵Côme Chilliet2024-12-201-2/+1
| | | | | | | | | | | | promoted Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * fix(tests): Fix share tests to test new reshare promotion systemCôme Chilliet2024-12-201-17/+17
| | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * chore: Add comment to make code clearerCôme Chilliet2024-12-201-0/+1
| | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * chore: Turn method description into phpdocCôme Chilliet2024-12-201-1/+1
| | | | | | | | Co-authored-by: Ferdinand Thiessen <opensource@fthiessen.de> Signed-off-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com>
| * fix(shares): Promote reshares into direct shares when share is deletedCôme Chilliet2024-12-201-6/+13
| | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>