aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix(l10n): Update translations from TransifexNextcloud bot2025-02-0410-0/+54
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #50594 from nextcloud/backport/50424/stable31Stephan Orbaugh2025-02-035-191/+294
|\ | | | | [stable31] fix(settings): Clarify peculiarities of enabling encryption
| * fix(settings): Clarify peculiarities of enabling encryptionFerdinand Thiessen2025-01-315-191/+294
| | | | | | | | | | | | | | | | | | | | | | - Clarify that enabling server side encryption will not encrypt existing files but only new or changed files. - Clarify that server side encryption can only be disabled using OCC - Ensure there is accessible information of encryption state (`disabled` input will not be announced so make it `aria-disabled` instead) - Make warning more prominent by moving it into a dialog Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | Fix(l10n): Update translations from TransifexNextcloud bot2025-02-036-12/+32
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2025-02-0214-2/+76
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2025-02-01144-476/+798
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-3142-38/+172
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* fix(settings): Fix setup check when mail_smptmode is set to "null"backport/50281/stable31Côme Chilliet2025-01-301-1/+3
| | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-296-0/+104
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-2818-12/+26
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-2768-118/+148
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #50450 from nextcloud/backport/48672/stable31Andy Scherzinger2025-01-261-1/+1
|\ | | | | [stable31] fix(settings): Add some context to the PHP memory limit error
| * fix(settings): Add some context to the PHP memory limit errorbackport/48672/stable31Josh2025-01-261-1/+1
| | | | | | Signed-off-by: Josh <josh.t.richards@gmail.com>
* | fix(settings): Add back adminstration scope for LogSettingsControllerprovokateurin2025-01-261-0/+2
|/ | | | Signed-off-by: provokateurin <kate@provokateurin.de>
* fix(SetupChecks): Pass webfinger if a handler is therebackport/49440/stable31Josh2025-01-261-1/+1
| | | Signed-off-by: Josh <josh.t.richards@gmail.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-264-0/+56
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-2512-10/+220
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-248-4/+216
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #50332 from nextcloud/backport/50330/stable31Joas Schilling2025-01-231-1/+1
|\ | | | | [stable31] fix(security): Update .well-known/security.txt expiration date
| * fix(security): Update .well-known/security.txt expiration datebackport/50330/stable31Joas Schilling2025-01-231-1/+1
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2025-01-23144-5228/+494
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-234-0/+110
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* feat(systemtags): toggle for system tag creation in admin settingsnfebe2025-01-221-0/+4
| | | | Signed-off-by: nfebe <fenn25.fn@gmail.com>
* feat(systemtags): add setting to block non admin to create system tagsBenjamin Gaussorgues2025-01-221-2/+1
| | | | Signed-off-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-01-2212-14/+210
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* chore: Only show hours and minutes in first login timestampChristopher Ng2025-01-211-1/+7
| | | | Signed-off-by: Christopher Ng <chrng8@gmail.com>
* chore: Compile assetsFerdinand Thiessen2025-01-212-2/+2
| | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* Merge pull request #49820 from nextcloud/fixHeaderStyleSettingsLouis2025-01-211-1/+3
|\ | | | | fix(settings): Make header style inline with other pages
| * fix(settings): Make header style inline with other pagesfixHeaderStyleSettingsGit'Fellow2024-12-121-1/+3
| | | | | | Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2025-01-21144-340/+434
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | feat(app_api): Advanced deploy optionsAndrey Borysenko2025-01-205-6/+370
| | | | | | | | Signed-off-by: Andrey Borysenko <andrey18106x@gmail.com>
* | fix(encryption): handle empty encryptionModules fineMax2025-01-201-1/+1
| | | | | | | | | | | | | | | | `[].find(...)` will return `undefined`. `undefined[0]` throws an exception. Handle this case more gracefully. Signed-off-by: Max <max@nextcloud.com>
* | chore(i18n): Improved grammarrakekniven2025-01-201-1/+1
| | | | | | | | | | | | | | Reported at Transifex Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2025-01-204-2/+16
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2025-01-192-4/+4
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2025-01-1812-0/+36
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2025-01-176-0/+20
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | fix(settings): Correctly parse and display default quotaFerdinand Thiessen2025-01-161-11/+28
| | | | | | | | | | | | | | | | | | | | | | In the account management settings (default settings) the quota was parsed not consistently with how we do it everywhere else. Meaning `1 KB` should be 1024 bytes not 1000 bytes. Also this fixes an issue where searching "1KB" does not yield any output because of the space in the parsed value "1 KB". Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | Merge pull request #49317 from nextcloud/feat/edit-share-tokenPytal2025-01-152-0/+26
|\ \ | | | | | | feat: Make it possible to customize share link tokens
| * | feat(sharing): Toggle custom tokens setting as adminChristopher Ng2025-01-152-0/+26
| | | | | | | | | | | | Signed-off-by: Christopher Ng <chrng8@gmail.com>
* | | Fix(l10n): Update translations from TransifexNextcloud bot2025-01-1612-0/+16
|/ / | | | | | | 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>
* | Merge pull request #50130 from nextcloud/feat/rich-profile-biographyPytal2025-01-141-1/+1
|\ \ | | | | | | feat: Allow rich formatting of profile text
| * | feat: Allow rich formatting of profile textChristopher Ng2025-01-101-1/+1
| | | | | | | | | | | | Signed-off-by: Christopher Ng <chrng8@gmail.com>
* | | fix(settings): Fix mail server settings formprovokateurin2025-01-141-29/+16
| | | | | | | | | | | | Signed-off-by: provokateurin <kate@provokateurin.de>
* | | fix(apps): Add back `<main>` element to dashboard and settingsFerdinand Thiessen2025-01-141-2/+2
| | | | | | | | | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | | Fix(l10n): Update translations from TransifexNextcloud bot2025-01-142-0/+4
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Fix(l10n): Update translations from TransifexNextcloud bot2025-01-134-0/+8
|/ / | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2025-01-112-0/+4
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | fix(setupchecks): Binary data can have problems with serializesetupChecksMoveFromBinaryGit'Fellow2025-01-091-2/+2
| | | | | | | | Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>