aboutsummaryrefslogtreecommitdiffstats
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* fix(files): undefined displayname for outdated `@nextcloud/files`<3.6.0 appsskjnldsv2024-09-041-1/+2
| | | | Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
* fix(files): undefined sidebarskjnldsv2024-09-041-1/+1
| | | | Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
* fix: Hide status tooltip in row to add a new mount pointDaniel Calviño Sánchez2024-09-041-1/+1
| | | | | | | | | 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>
* fix: Fix unmodified placeholder replacing the actual value when updatingDaniel Calviño Sánchez2024-09-042-0/+12
| | | | | | | | | | | | | | 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>
* 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-044-2/+8
| | | | | | | | | | | | | | | 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 #47690 from nextcloud/chore/themingJohn Molakvoæ2024-09-041-8/+8
|\
| * chore(theming): Increase app versionFerdinand Thiessen2024-09-021-8/+8
| | | | | | | | | | | | | | There were heavly breaking theming changes so increase the version number to make cache buster work. Also fix order of entries in the appinfo.xml to fix XML validation (the order is fixed in the XSD). Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-09-04206-368/+570
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.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 #47412 from Luka-sama/feat/shares-reminderJohn Molakvoæ2024-09-037-2/+453
|\ \
| * | fix(files_sharing): Add check for nullStefan Cherniakov2024-09-031-0/+3
| | | | | | | | | | | | Signed-off-by: Stefan Cherniakov <luka-sama@pm.me>
| * | fix(files_sharing): Add missing check for null & use bool instead of int for ↵Stefan Cherniakov2024-09-033-3/+5
| | | | | | | | | | | | | | | | | | reminder_sent field Signed-off-by: Stefan Cherniakov <luka-sama@pm.me>
| * | fix(files_sharing): Make share reminders more stable & fix issuesStefan Cherniakov2024-09-033-142/+90
| | | | | | | | | | | | Signed-off-by: Stefan Cherniakov <luka-sama@pm.me>
| * | feat(files_sharing): reminder for link shares with expiration dateStefan Cherniakov2024-09-036-1/+499
| | | | | | | | | | | | Signed-off-by: Stefan Cherniakov <luka-sama@pm.me>
* | | chore: Compile assetsFerdinand Thiessen2024-09-034-4/+4
| | | | | | | | | | | | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | | refactor(IMenuAction): Make public menu actions use the new Vue UIFerdinand Thiessen2024-09-032-10/+4
| | | | | | | | | | | | | | | | | | | | | | | | This removes custom rendering code an replaces it with the declarative menu actions. Also adjust the template to allow the Vue UI to mount. Custom entries still are possible. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | | chore: Remove legacy JS code for public page menu (header actions)Ferdinand Thiessen2024-09-032-145/+0
| | | | | | | | | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | | fix(settings): Fix sharing exclude groups from password requirement option ↵provokateurin2024-09-033-10/+10
|/ / | | | | | | | | | | not working Signed-off-by: provokateurin <kate@provokateurin.de>
* | Merge pull request #46114 from ↵Arthur Schiwon2024-09-036-47/+219
|\ \ | | | | | | | | | | | | nextcloud/enh/improve-ldap-group-members-listing-performances fix(user_ldap): Avoid extra LDAP request when mapping a user for the first time
| * | chore: composer run cs:fixCôme Chilliet2024-08-271-2/+2
| | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | fix(user_ldap): Fix user_ldap tests by mocking new method exists in managerCôme Chilliet2024-08-271-20/+64
| | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | fix(user_ldap): Lowercase value for all attributes in configurationCôme Chilliet2024-08-271-0/+21
| | | | | | | | | | | | | | | | | | | | | Avoid surprises by making sure these are lowercased apart from documented special case user displayname. Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | fix(ldap): Fix user_ldap attribute casing to fix testsCôme Chilliet2024-08-272-4/+5
| | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | fix(user_ldap): Correctly cache that user exists to avoid a request on ↵Côme Chilliet2024-08-273-4/+1
| | | | | | | | | | | | | | | | | | mapping new user Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | fix(user_ldap): Avoid extra LDAP request when mapping a user for the first timeCôme Chilliet2024-08-273-24/+133
| | | | | | | | | | | | | | | | | | | | | | | | Avoids using several LDAP searches to get UUID, display name and internal name, now gets all attributes at the same time. Also avoids extra request to build an unused user object in userExists. Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | | fix(settings): Add translators noteMarcel Klehr2024-09-031-0/+1
| | | | | | | | | Signed-off-by: Marcel Klehr <mklehr@gmx.net>
* | | 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>
* | | Fix(l10n): Update translations from TransifexNextcloud bot2024-09-0324-2/+132
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Merge pull request #47665 from nextcloud/fix/files-remote-sharesFerdinand Thiessen2024-09-022-10/+65
|\ \ \ | |_|/ |/| | fix(files): Correctly parse external shares for files UI
| * | fix(files): Correctly parse external shares for files UIFerdinand Thiessen2024-09-022-10/+65
| | | | | | | | | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | | fix(css): refine css cleanupprotoclown2024-09-022-0/+3
| | | | | | | | | | | | Signed-off-by: protoclown <ornano@felinn.org>
* | | fix(css): re-use old --color-scrollbar variableprotoclown2024-09-025-7/+2
|/ / | | | | | | Signed-off-by: protoclown <ornano@felinn.org>
* | fix(oauth2): fix testsJulien Veyssier2024-09-023-9/+9
| | | | | | | | Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
* | fix(oauth2): store hashed secret instead of encryptedJulien Veyssier2024-09-0212-55/+118
| | | | | | | | Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
* | Merge pull request #47670 from nextcloud/fix/touchicon-calcJulius Härtl2024-09-021-17/+12
|\ \ | | | | | | fix: Properly calculate intermediate icon for touch icon generation
| * | fix: Properly calculate intermediate icon for touch icon generationJulius Härtl2024-09-011-17/+12
| | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | Fix(l10n): Update translations from TransifexNextcloud bot2024-09-0216-6/+56
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Fix(l10n): Update translations from TransifexNextcloud bot2024-09-016-6/+8
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | fix(files): Node loading information should be accessibleFerdinand Thiessen2024-08-311-1/+6
| | | | | | | | | | | | | | | | | | | | | The loading icon visually informs that the node is currently loading, but there is no non-visual information (accessible information). Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | | test: Update snapshotsFerdinand Thiessen2024-08-311-459/+15
| | | | | | | | | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | | Fix(l10n): Update translations from TransifexNextcloud bot2024-08-312-0/+2
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | fix(settings): Hide forbidden UI elements for line managersFerdinand Thiessen2024-08-302-8/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | 1. The "recent" accounts API only works for admin and delegated admin -> hide for line managers 2. Line managers can not create new groups -> Hide the UI to add a new group for them 3. Accounts created by line managers require one of the groups, which is managed by the line manager, assigned. So if the line manager only manageres a single group, we should preselect that group. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | | fix: Properly handle share attributes if set to nullJulius Härtl2024-08-301-2/+11
| | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>