aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* fix: content info footer on guest pagesRichard Steinmetz2023-09-207-35/+20
| | | | Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
* Fix(l10n): Update translations from TransifexNextcloud bot2023-09-20150-694/+1012
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* use user_saml from gitRobin Appelman2023-09-191-0/+6
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* kerberos sso ci fixesRobin Appelman2023-09-198-44/+88
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* Fix(l10n): Update translations from TransifexNextcloud bot2023-09-1932-20/+76
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #40433 from nextcloud/backport/40416/stable27Daniel2023-09-181-1/+1
|\
| * fix: use faster method to fetch user countDaniel Kesselberg2023-09-181-1/+1
|/ | | | | | | | | | countUsers: the actual user count reported by the backend. countSeenUsers: count every user who was logged in once. 1: We should avoid expensive operations (like asking every backend for it's user count) in migrations. 2: The current check is wrong because countUsers returns an array. var_dump([] > 1000) => true ;) Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* Merge pull request #40444 from nextcloud/backport/40418/stable27Daniel2023-09-181-4/+1
|\
| * fix: don't use davtags for tag searchDaniel Kesselberg2023-09-151-4/+1
| | | | | | | | | | | | | | | | | | 1. https://github.com/nextcloud/server/pull/26813 Initial implementation with support for systemtags and davtags (vcategory) 2. https://github.com/nextcloud/server/pull/39062 Additional check if the given tag exists, though ISystemTagManager.getAllTags only looks for systemtags Therefore it's not possible anymore to search for davtags and unnecessary to join the other tables. Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* | Merge pull request #40473 from nextcloud/backport/39860/stable27Robin Appelman2023-09-181-6/+10
|\ \ | | | | | | [stable27] don't preload metadata for the sub-childen
| * | only triger metadata preload logic when at least one metadata is requestedRobin Appelman2023-09-181-6/+10
| | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * | don't preload metadata for the sub-childenRobin Appelman2023-09-181-1/+1
| | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | Merge pull request #40448 from nextcloud/manual/backport/stable27/40440Louis2023-09-183-6/+13
|\ \ \ | |/ / |/| | [stable27] Backport consider link shares in removeShare method in SharingTab #40440
| * | Consider link shares in removeShare method in SharingTabfenn-cs2023-09-183-6/+13
| |/ | | | | | | | | | | | | | | | | | | | | | | | | Currently, the `removeShare` method in the `SharingTab` view, does not take into account `linkShares`. Since link shares now shares thesame detail view with other share types, it should therefore be considered hence this commit. Resolves : https://github.com/nextcloud/server/issues/40396 Signed-off-by: fenn-cs <fenn25.fn@gmail.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2023-09-182-0/+2
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Merge pull request #40461 from nextcloud/backport/40203/stable27Simon L2023-09-171-19/+17
|\ \ | | | | | | [stable27] fix(mimetype): Fix aborted transaction on PostgreSQL when storing mimetype
| * | Wrap mimetype insert and getLastInsertId in a transactionLucas Azevedo2023-09-161-7/+9
| | | | | | | | | | | | Signed-off-by: Lucas Azevedo <lhs_azevedo@hotmail.com>
| * | fix(mimetype): Remove unnecessary transaction when storing a mime typeLucas Azevedo2023-09-161-26/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #40064. This could be fixed by adding a rollback and starting a new transaction before the SELECT query, but in this case that would have the same effect as not using one. See https://dev.mysql.com/doc/refman/8.0/en/innodb-autocommit-commit-rollback.html and https://www.postgresql.org/docs/7.1/sql-begin.html#R1-SQL-BEGIN-1 Signed-off-by: Lucas Azevedo <lhs_azevedo@hotmail.com>
* | | Fix(l10n): Update translations from TransifexNextcloud bot2023-09-17166-276/+332
|/ / | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* / Fix(l10n): Update translations from TransifexNextcloud bot2023-09-1662-2/+62
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #40432 from nextcloud/release/27.1.0v27.1.0Arthur Schiwon2023-09-151-2/+2
|\ | | | | 27.1.0
| * 27.1.0Arthur Schiwon2023-09-151-2/+2
| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | Merge pull request #40437 from nextcloud/backport/40434/stable27Arthur Schiwon2023-09-153-6/+8
|\ \ | |/ |/| [stable27] Correctly switch/revert from custom to bundled perms
| * Correctly switch/revert from custom to bundled permsfenn-cs2023-09-153-6/+8
|/ | | | | | | | | | | | | | | | | | We have a set custom permissions checkbox, that when selected should set the quick permissions settings to custom as well as show the custom permission settings. When the checkbox is unchecked the quick permissions have to be reset to the default, `bundledPermissions.ALL` but also users can switch from custom permissions to `bundled` by just changing the radio select, hence we need a mechanism to set the permissions back to the correct fallback depending on where the user has toggled the the custom permission from. The mechanism is `revertSharingPermission` and this commit, makes sure revert values are correctly set upon toggle. Resolves : https://github.com/nextcloud/server/issues/40431 Signed-off-by: fenn-cs <fenn25.fn@gmail.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2023-09-1514-8/+44
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #40399 from nextcloud/release/27.1.0_rc4v27.1.0rc4Arthur Schiwon2023-09-141-2/+2
|\ | | | | 27.1.0 RC4
| * 27.1.0 RC4Arthur Schiwon2023-09-131-2/+2
| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | Merge pull request #40417 from nextcloud/artonge/bump/nextcloud_dialogs_4_2_0Arthur Schiwon2023-09-148-95/+70
|\ \ | | | | | | [stable27] Bump @nc/dialogs to 4.2.0
| * | Bump @nc/dialogs to 4.2.0Louis Chemineau2023-09-148-95/+70
| | | | | | | | | | | | Signed-off-by: Louis Chemineau <louis@chmn.me>
* | | Merge pull request #40415 from nextcloud/artonge/backport/stable27/40389Andy Scherzinger2023-09-144-16/+25
|\| | | | | | | | [stable27] Fix invite guest for new sharing flow
| * | Fix invite guest for new sharing flowfenn-cs2023-09-144-16/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | Call external handlers such as the one in the guess app https://github.com/nextcloud/guests/blob/master/src/main.js#L30 if present. Signed-off-by: fenn-cs <fenn25.fn@gmail.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | | Merge pull request #40414 from nextcloud/artonge/backport/stable27/40365Andy Scherzinger2023-09-143-58/+60
|\| | | | | | | | [stable27] Hide additional content when share details is open
| * | Hide additional content when share details is openLouis Chemineau2023-09-143-58/+60
| | | | | | | | | | | | | | | Signed-off-by: Louis Chemineau <louis@chmn.me> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | | Merge pull request #40402 from nextcloud/backport/40301/stable27Arthur Schiwon2023-09-142-1/+3
|\ \ \ | |/ / |/| | [stable27] fix(caldav): add webroot to objectid for activities
| * | fix(caldav): add webroot to objectid for activitiesDaniel Kesselberg2023-09-132-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | A calendar uri includes the webroot: example.com/cloud/remote.php/dav/calendars/alice/personal/ The calendar app uses base64(calendar uri) as identifier for calendar objects. Without this patch the links from activity app to calendar app don't work for installations in a subdirectory. Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* | | Merge pull request #40412 from nextcloud/manual/backport/stable27/40404Andy Scherzinger2023-09-143-30/+28
|\ \ \ | | | | | | | | [stable27] Ellipsize user status in sharing entry
| * | | Ellipsize user status in sharing entryfenn-cs2023-09-143-30/+28
|/ / / | | | | | | | | | | | | Signed-off-by: fenn-cs <fenn25.fn@gmail.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | | Merge pull request #40405 from nextcloud/manual/backport/stable27/40393Andy Scherzinger2023-09-145-12/+16
|\ \ \ | | | | | | | | [stable27] Display user status by the side in sharing flow
| * | | Display user status by the side in sharing flowfenn-cs2023-09-145-12/+16
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The quick share drop down now takes the place where the user status would show in the past, so we have the option of removing it (as it's available in the profile dropdown) or putting it at the side as such. It's put on the side without the icon, as the status icon appears on the avatar when set. Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
* / / Fix(l10n): Update translations from TransifexNextcloud bot2023-09-14146-134/+308
|/ / | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Merge pull request #40390 from nextcloud/manual/backport/stable27/40372Arthur Schiwon2023-09-138-31/+51
|\ \ | |/ |/| [stable27] Backport polish sharing flow bugs
| * Consistent delete button in share detailsfenn-cs2023-09-135-7/+6
| | | | | | | | | | | | | | Delete button text should have same size as other buttons. Signed-off-by: fenn-cs <fenn25.fn@gmail.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
| * Enfore allowPublicShares admin settingfenn-cs2023-09-134-6/+30
| | | | | | | | | | | | | | Use the the modern intial-state library to pass data about `allowPublicUploads` to the sharing frontend. Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
| * Refactor migrated addShare methodfenn-cs2023-09-131-18/+15
|/ | | | Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2023-09-138-2/+104
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #40344 from nextcloud/release/27.1.0_rc3v27.1.0rc3Arthur Schiwon2023-09-121-2/+2
|\ | | | | 27.1.0 RC3
| * 27.1.0 RC3Arthur Schiwon2023-09-081-2/+2
| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | Merge pull request #40343 from nextcloud/40289-stable27-fix-appearanceArthur Schiwon2023-09-123-24/+33
|\ \ | | | | | | [stable27] 40289 fix appearance
| * | chore(assets): Recompile assetsnextcloud-command2023-09-112-3/+3
| | | | | | | | | | | | Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
| * | Add icons for bundled permissionsfenn-cs2023-09-113-25/+32
| | | | | | | | | | | | | | | Signed-off-by: fenn-cs <fenn25.fn@gmail.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>