aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix(l10n): Update translations from TransifexNextcloud bot2024-09-05310-116/+546
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #47733 from nextcloud/backport/46859/stable30Andy Scherzinger2024-09-0412-16/+214
|\ | | | | [stable30] Fix status check and saving of external storages
| * fix: Hide status tooltip in row to add a new mount pointDaniel Calviño Sánchez2024-09-043-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The row to add a new mount point is cloned when a new mountpoint is added, so it is expected that it includes a status span. However, it should not be displayed in that row, only in the cloned row when its status is updated. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
| * fix: Fix unmodified placeholder replacing the actual value when updatingDaniel Calviño Sánchez2024-09-043-0/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | When updating global storages and user storages a property is not updated by "StoragesService::updateStorage()" if the value matches the unmodified placeholder. However, userglobal storages are not updated through the "StoragesService"; as only the authentication mechanism is updated it is directly done with "saveBackendOptions()" in "IUserProvided" or "UserGlobalAuth". Due to this the unmodified placeholder value needs to be explicitly checked in those cases and replaced by the actual value (note that in this case it is not possible to just skip updating a specific property). Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * test: Add integration tests for saving external userglobal storagesDaniel Calviño Sánchez2024-09-045-2/+136
| | | | | | | | | | | | | | | | | | As the external storage uses the Nextcloud server itself the number of workers of the PHP process running the Nextcloud server had to be increased. Otherwise if a request is sent for the external storage while handling a request from the integration tests a deadlock would occur. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * fix: Reset selected backend when adding a new storageDaniel Calviño Sánchez2024-09-041-0/+2
| | | | | | | | | | | | | | | | As a new storage is added by selecting a backend the selected backend needs to be reset. Otherwise it is not possible to add another storage with the same backend. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * fix: Add missing translation for UI stringDaniel Calviño Sánchez2024-09-041-1/+1
| | | | | | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * fix: Restore default status tooltip when no status message is providedDaniel Calviño Sánchez2024-09-041-2/+3
| | | | | | | | | | | | | | | | | | | | If the status is updated but no explicit message is provided (for example, if the status check succeeded) the default tooltip (from the template) is now set to prevent a mismatch between the status and the tooltip (for example, if the configuration is fixed after a failed status check). Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * fix: Set status tooltip to error message on failed actionsDaniel Calviño Sánchez2024-09-041-6/+9
| | | | | | | | | | | | | | | | | | When saving, updating and rechecking an storage fails (which is different to the soft-fail when the action itself succeeds but the status check does not) further details are provided in the error message of the response, which is now set as the tooltip. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * fix: Set status tooltip to status message when saving an storageDaniel Calviño Sánchez2024-09-041-1/+1
| | | | | | | | | | | | | | | | | | When a storage is saved the status check can fail even if saving the storage succeeds. In those cases further details are provided in the status message of the storage, which is now set as the tooltip, similarly to how it is done when rechecking the storage. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * fix: Remove status check when configuration was changedDaniel Calviño Sánchez2024-09-042-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Setting a null status was supposed to remove the status check, but nothing was changed in that case. Now the status check is properly removed, and doing that by hiding the element rather than just turning it invisible also prevents that clicking on the invisible status triggers a check, as until the new configuration is saved the check will still be performed with the old configuration, which could be misleading for the user. Additionally, an explicit width is set to the parent of the span element to prevent its width from changing when the span is shown and hidden. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * fix: Recheck userglobal storages when loadedDaniel Calviño Sánchez2024-09-041-0/+7
| | | | | | | | | | | | | | Userglobal storages are now automatically recheck when loaded, similarly to how it is done for global storages. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * refactor: Store result in its own variableDaniel Calviño Sánchez2024-09-041-1/+2
| | | | | | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | Merge pull request #47751 from nextcloud/backport/47417/stable30Andy Scherzinger2024-09-042-0/+40
|\ \ | | | | | | [stable30] fix(files): Create non-existent parents of mountpoints
| * | fix(files): Create non-existent parents of mountpointsprovokateurin2024-09-042-0/+40
|/ / | | | | | | Signed-off-by: provokateurin <kate@provokateurin.de>
* | Merge pull request #47748 from nextcloud/backport/47738/stable30John Molakvoæ2024-09-043-4/+4
|\ \ | |/ |/|
| * chore(assets): Recompile assetsnextcloud-command2024-09-042-3/+3
| | | | | | | | Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
| * fix(files): undefined sidebarskjnldsv2024-09-041-1/+1
|/ | | | Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
* Merge pull request #47728 from nextcloud/backport/47155/stable30Andy Scherzinger2024-09-041-37/+16
|\ | | | | [stable30] fix(jobs): Switch to executeStatement() while deleting rows
| * fix: lintGit'Fellow2024-09-041-1/+1
| | | | | | Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
| * fix(jobs): Swicth to executeStatement() while deleting rowsGit'Fellow2024-09-041-37/+16
| | | | | | Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
* | Merge pull request #47726 from nextcloud/backport/47285/stable30Andy Scherzinger2024-09-041-1/+2
|\ \ | | | | | | [stable30] fix: Do not throw if appstore is unavailable during upgrade
| * | fix: Do not throw if appstore is unavailable during upgradeJulius Härtl2024-09-041-1/+2
| |/ | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | Merge pull request #47729 from nextcloud/artonge/backport/stable30/47511Andy Scherzinger2024-09-041-1/+3
|\ \ | |/ |/| [stable30] chore: Improve isEncrypted description
| * chore: Improve isEncrypted descriptionLouis Chemineau2024-09-041-1/+3
|/ | | | Signed-off-by: Louis Chemineau <louis@chmn.me>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-09-04324-1190/+952
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #47720 from nextcloud/backport/47709/stable30John Molakvoæ2024-09-033-4/+4
|\
| * chore(assets): Recompile assetsnextcloud-command2024-09-032-3/+3
| | | | | | | | Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
| * fix: only keep major as server versionskjnldsv2024-09-031-1/+1
| | | | | | | | Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
* | Merge pull request #47719 from nextcloud/backport/stable30/47158John Molakvoæ2024-09-033-4/+7
|\ \ | |/ |/|
| * chore(assets): Recompile assetsnextcloud-command2024-09-032-3/+3
| | | | | | | | Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
| * fix(files): Fix navigating with breadcrumbs not highlighting navigation entryChristopher Ng2024-09-031-1/+4
| | | | | | | | Signed-off-by: Christopher Ng <chrng8@gmail.com>
* | Merge pull request #47716 from nextcloud/backport/47674/stable30John Molakvoæ2024-09-035-13/+13
|\ \ | |/ |/|
| * fix(settings): Fix sharing exclude groups from password requirement option ↵provokateurin2024-09-035-13/+13
| | | | | | | | | | | | | | not working Signed-off-by: provokateurin <kate@provokateurin.de> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | Merge pull request #47699 from nextcloud/backport/47635/stable30Andy Scherzinger2024-09-0316-61/+124
|\ \ | |/ |/| [stable30] [oauth2] Store hashed secret instead of encrypted
| * chore(assets): Recompile assetsnextcloud-command2024-09-034-6/+6
| | | | | | | | Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
| * fix(oauth2): fix testsJulien Veyssier2024-09-033-9/+9
| | | | | | | | Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
| * fix(oauth2): store hashed secret instead of encryptedJulien Veyssier2024-09-0312-55/+118
| | | | | | | | Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
* | Merge pull request #47710 from ↵Andy Scherzinger2024-09-033-9/+10
|\ \ | |/ |/| | | | | nextcloud/fix/settings/admin/textprocessing2-stable30 [stable30] fix(settings): Don't display built-in task types in AI settings TextP…
| * chore(assets): Recompile assetsnextcloud-command2024-09-032-3/+3
| | | | | | | | Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
| * fix(settings): Add translators noteMarcel Klehr2024-09-031-0/+1
| | | | | | | | | | Signed-off-by: Marcel Klehr <mklehr@gmx.net> (cherry picked from commit c8f4967ce2a41c19ab17665e3330183b4a133dab)
| * fix(settings): Don't display built-in task types in AI settings TextProcessingMarcel Klehr2024-09-031-6/+6
|/ | | | | Signed-off-by: Marcel Klehr <mklehr@gmx.net> (cherry picked from commit 44a5723973ad93e340fdbc2810c975e667f1e51e)
* Merge pull request #47691 from nextcloud/fix/remote-share-parsingAndy Scherzinger2024-09-035-19/+74
|\ | | | | [stable30] fix(files): Correctly parse external shares for files UI
| * chore(assets): Recompile assetsnextcloud-command2024-09-033-4/+4
| | | | | | | | Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
| * fix(files): Correctly parse external shares for files UIFerdinand Thiessen2024-09-032-15/+70
| | | | | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | Merge pull request #47695 from nextcloud/backport/47627/stable30Andy Scherzinger2024-09-031-5/+15
|\ \ | |/ |/| [stable30] [LinkReferenceProvider] Better size check
| * fix(linkReferenceProvider): better size checkJulien Veyssier2024-09-031-5/+15
|/ | | | Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-09-0326-2/+134
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #47625 from nextcloud/backport/47581/stable30Andy Scherzinger2024-09-032-0/+16
|\ | | | | [stable30] fix: Do not fail to get internal path on NonExistingFile
| * fix: Do not fail to get internal path on NonExistingFile/NonExistingFolderJulius Härtl2024-09-032-0/+16
| | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>