aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings
Commit message (Collapse)AuthorAgeFilesLines
...
| * 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(l10n): Update translations from TransifexNextcloud bot2024-08-0214-0/+26
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.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>
* Merge pull request #46899 from nextcloud/backport/46830/stable28F. E Noel Nfebe2024-07-311-2/+2
|\ | | | | [stable28] chore(ShareSettings): Proper wording for share autocompletion settings
| * chore(ShareSettings): Proper wording for share autocompletion settingsfenn-cs2024-07-301-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>
* fix(search): show user search provider for deactivated and admin pagesBenjamin Gaussorgues2024-07-271-1/+1
| | | | Signed-off-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
* Merge pull request #46580 from nextcloud/backport/45974/stable28John 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(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>
* Merge pull request #46628 from nextcloud/backport/46419/stable28Joas Schilling2024-07-221-0/+2
|\ | | | | [stable28] fix(mail): Fix big logos in mail templates for Outlook
| * 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-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(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>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-07-104-2/+2
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #46297 from nextcloud/backport/46174/stable28Git'Fellow2024-07-093-1/+147
|\ | | | | [stable28] 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>
* | Merge pull request #46302 from nextcloud/fix/noid/jsm-check-pickinessGit'Fellow2024-07-091-1/+5
|\ \ | | | | | | [stable28] fix(SetupCheck): jsm test shall not give up with first no-response
| * | fix(SetupCheck): jsm test shall not give up with first no-responseArthur Schiwon2024-07-041-1/+5
| |/ | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | 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(settings): Use axios directly for health check to preven URL sanitizingFerdinand Thiessen2024-07-031-2/+3
| | | | | | | | | When using Apache with `DirectorySlash` it will respond with 301 and the URL with trailing slash. But when using traefik as the reverse proxy it can not rewrite redirects, this leads to the problem that the Apache response is using HTTP in the redirect but the real server (traefik) is only listening on HTTPS. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* fix(setupchecks): skip check when disk_free_space is disabledDaniel Kesselberg2024-07-021-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-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(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>
* feat: add setup check for needed mimetype migrationsRobin Appelman2024-06-214-0/+48
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>