summaryrefslogtreecommitdiffstats
path: root/apps/settings
Commit message (Collapse)AuthorAgeFilesLines
...
* fix: typoGit'Fellow2024-08-011-1/+1
| | | Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
* fix: check both CLI and valueGit'Fellow2024-08-011-1/+1
| | | Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
* fix(setupchecks): Skip checking for OPcache if running from CLIGit'Fellow2024-08-011-0/+5
| | | Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
* fix(AdminSettings/AI): show pref list of only the enabled translation providersAnupam Kumar2024-08-011-1/+6
| | | | Signed-off-by: Anupam Kumar <kyteinsky@gmail.com>
* chore(ShareSettings): Proper wording for share autocompletion settingsfenn-cs2024-07-311-2/+2
| | | | | | The existing is incorrect and can be misleading as seen in : https://github.com/nextcloud/server/issues/42501 Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-07-3130-56/+96
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-07-304-0/+18
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-07-2830-26/+14
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #46582 from nextcloud/backport/45974/stable29John Molakvoæ2024-07-271-2/+6
|\
| * fix(caldav): lower scheduling table size warningAnna Larch2024-07-251-2/+6
| | | | | | | | Signed-off-by: Anna Larch <anna@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-07-2714-0/+32
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | style(settings): align icons at legacy help navigationMaksim Sukharev2024-07-262-5/+13
| | | | | | | | Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-07-2622-8/+88
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* fix(search): show user search provider for deactivated and admin pagesBenjamin Gaussorgues2024-07-241-1/+1
| | | | Signed-off-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-07-2418-10/+210
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-07-234-6/+10
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-07-222-8/+8
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-07-216-0/+22
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-07-2018-2/+122
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* fix(mail): Fix big logos in mail templates for OutlookJoas Schilling2024-07-191-0/+2
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-07-1928-26/+76
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-07-1874-100/+110
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-07-164-0/+8
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-07-152-0/+4
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-07-142-0/+4
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-07-1318-2/+40
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-07-1254-168/+168
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* chore(deps): Update `debounce` to 2.1.0Ferdinand Thiessen2024-07-102-2/+3
| | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* Merge pull request #46298 from nextcloud/backport/46174/stable29Ferdinand Thiessen2024-07-103-1/+147
|\ | | | | [stable29] fix(IntegrityCheck): Ensure the check is run if no results are available
| * fix(IntegrityCheck): Ensure the check is run if no results are availableFerdinand Thiessen2024-07-053-1/+147
| | | | | | | | | | | | | | | | | | If there are no cached results the current implementation was also returning an empty array, but this was the same as when there was a successful run. So to distinguish this we return `null` if there are *no* results. In this case we need to rerun the integrity checker. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-07-104-2/+2
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | fix(settings): make trailing slash for caldav/carddav redirects optionalMichaIng2024-07-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | #43939 moved the CalDAV/CardDAV redirect checks from the frontend to a new backend API. Since the backend does not send an authentication header, checking for the expected response code 207 of the DAV endpoint does not work anymore, hence the URL of the last redirect is checked instead. This URL is expected to contain a trailing slash, which was not required before, since the DAV endpoint works properly without it (when authenticated). While a trailing slash in the redirect does no harm, it causes many setups to throw an admin panel warning, while in fact the redirects work properly. Furthermore, the proposed "/.well-known/carddav" => "/remote.php/dav/" redirect leads to double slashes, when doing a request to "/.well-known/carddav/", which seems more wrong then right. This change makes the trailing slash optional, hence old and adjusted setups won't throw the warning anymore, and the DAV endpoint works well in both cases. Signed-off-by: MichaIng <micha@dietpi.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-07-094-0/+26
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-07-052-0/+2
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-07-042-2/+2
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-07-028-0/+144
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-07-0110-0/+26
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-06-3018-2/+72
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* fix(setupchecks): skip check when disk_free_space is disabledDaniel Kesselberg2024-06-291-2/+6
| | | | | | Make it easier to discover that the check failed because disk_free_space is disabled. Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-06-2928-44/+54
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-06-284-2/+12
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-06-278-8/+26
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-06-2610-4/+68
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-06-2576-154/+182
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-06-234-2/+6
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #45966 from nextcloud/backport/45930/stable29Andy Scherzinger2024-06-214-0/+48
|\ | | | | [stable29] fix: move repair mimetype repair step to the expensive steps
| * feat: add setup check for needed mimetype migrationsRobin Appelman2024-06-194-0/+48
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-06-21140-4/+170
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-06-202-0/+2
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-06-172-4/+4
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>