aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #33472 from ↵Julius Härtl2022-08-171-9/+9
|\ | | | | | | nextcloud/dependabot/composer/bamarni/composer-bin-plugin-1.8.1
| * Bump bamarni/composer-bin-plugin from 1.8.0 to 1.8.1dependabot[bot]2022-08-091-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [bamarni/composer-bin-plugin](https://github.com/bamarni/composer-bin-plugin) from 1.8.0 to 1.8.1. - [Release notes](https://github.com/bamarni/composer-bin-plugin/releases) - [Commits](https://github.com/bamarni/composer-bin-plugin/compare/1.8.0...1.8.1) --- updated-dependencies: - dependency-name: bamarni/composer-bin-plugin dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
* | Merge pull request #33551 from nextcloud/scanner-dont-update-same-sizeVincent Petry2022-08-173-46/+47
|\ \ | | | | | | don't update the folder size if we know it hasn't changed
| * | don't update the folder size if we know it hasn't changedRobin Appelman2022-08-162-4/+11
| | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * | cleanup scannertest a bitRobin Appelman2022-08-161-42/+36
| | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | [tx-robot] updated from transifexNextcloud bot2022-08-1722-30/+98
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Merge pull request #33549 from nextcloud/enh/perfopt-for-carddavJulius Härtl2022-08-171-1/+6
|\ \ \ | | | | | | | | Performance optimisation for carddav backend blob data read
| * | | performance optimisation for carddav backend blob data readAnna Larch2022-08-151-1/+6
| | | | | | | | | | | | | | | | Signed-off-by: Anna Larch <anna@nextcloud.com>
* | | | Merge pull request #33559 from yeyulantu/bugfix-search-cacheJulius Härtl2022-08-161-1/+1
|\ \ \ \
| * | | | fixed the cache searchBuilder negative mapDavid2022-08-161-1/+1
| | | | | | | | | | | | | | | Signed-off-by: David <37280718+yeyulantu@users.noreply.github.com>
* | | | | Merge pull request #33563 from nextcloud/feat/make-displaynamecache-return-nullCarl Schwan2022-08-165-9/+7
|\ \ \ \ \ | | | | | | | | | | | | Make DisplayNameCache return null if user doesn't exists
| * | | | | Make DisplayNameCache return null if user doesn't existsCarl Schwan2022-08-165-9/+7
|/ / / / / | | | | | | | | | | | | | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | | | | Merge pull request #32461 from nextcloud/display-name-cache-publicCarl Schwan2022-08-166-11/+30
|\ \ \ \ \ | |/ / / / |/| | | | expose display name cache trough a public interface
| * | | | Merge branch 'master' into display-name-cache-publicCarl Schwan2022-08-153056-25969/+60588
| |\ \ \ \ | | | |/ / | | |/| | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
| * | | | expose displayname cache trough a public interfaceRobin Appelman2022-05-186-11/+30
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | | Merge pull request #33556 from nextcloud/fix/themingJohn Molakvoæ2022-08-164-33/+19
|\ \ \ \ \
| * | | | | Automatically enable plain background if primary colour is setJohn Molakvoæ2022-08-162-7/+14
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
| * | | | | Revert "Fix unit tests for the theming app"John Molakvoæ2022-08-164-25/+3
| | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 13ca01ee1256dba54d1e2793bd409d3b7c8d6058.
| * | | | | Revert "First first run wizzard"John Molakvoæ2022-08-161-8/+9
|/ / / / / | | | | | | | | | | | | | | | This reverts commit ba3f5337f356ac51a1b1d012c09f3e4ed6c096e3.
* | | | | [tx-robot] updated from transifexNextcloud bot2022-08-16106-88/+126
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | | Merge pull request #33548 from ↵Julius Härtl2022-08-152-16/+3
|\ \ \ \ \ | |_|/ / / |/| | | | | | | | | nextcloud/bugfix/33547/remove-redundant-files-events
| * | | | Remove redundant eventsVincent Petry2022-08-152-16/+3
|/ / / / | | | | | | | | | | | | Signed-off-by: Vincent Petry <vincent@nextcloud.com>
* | | | Merge pull request #33495 from nextcloud/unify-initial-and-updated-quota-displayVincent Petry2022-08-153-5/+7
|\ \ \ \ | | | | | | | | | | Unify initial and updated quota display
| * | | | Show usage percenteage in the tooltipDaniel Calviño Sánchez2022-08-103-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The tooltip of the initial quota display showed the usage percenteage and the total available space. However, the total available space was redundant, as it was shown just below. The tooltip of the updated quota display showed the usage percenteage, but based on the quota rather than the total available space, so there was a mismatch between the tooltip and the bar below. Now the tooltip of the initial and the updated quota display both show just the usage percenteage based on the total available space. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | | | Use total available space rather than quota when updating the displayDaniel Calviño Sánchez2022-08-102-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The initial quota display uses the total available space rather than the quota. Moreover, the relative usage is based on the total space rather than the quota. Due to this now the total available space is also used when updating the quota display. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | | | | [tx-robot] updated from transifexNextcloud bot2022-08-1598-180/+514
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | | Merge pull request #33519 from nextcloud/rakekniven-patch-2John Molakvoæ2022-08-143-4/+4
|\ \ \ \ \
| * | | | | l10n: Changed plural to singularrakekniven2022-08-143-4/+4
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Here you can select the default theme image, not images. Reported at Transifex. Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com> Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | | | | [tx-robot] updated from transifexNextcloud bot2022-08-1430-120/+126
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | | Merge pull request #33524 from nextcloud/dependabot/npm_and_yarn/karma-6.4.0Julius Härtl2022-08-132-8/+8
|\ \ \ \ \ | | | | | | | | | | | | Bump karma from 6.3.19 to 6.4.0
| * | | | | Bump karma from 6.3.19 to 6.4.0dependabot[bot]2022-08-132-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [karma](https://github.com/karma-runner/karma) from 6.3.19 to 6.4.0. - [Release notes](https://github.com/karma-runner/karma/releases) - [Changelog](https://github.com/karma-runner/karma/blob/master/CHANGELOG.md) - [Commits](https://github.com/karma-runner/karma/compare/v6.3.19...v6.4.0) --- updated-dependencies: - dependency-name: karma dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
* | | | | | Merge pull request #33518 from nextcloud/exif-computedJohn Molakvoæ2022-08-131-1/+1
|\ \ \ \ \ \
| * | | | | | fix exif metadata providerRobin Appelman2022-08-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | | | | Merge pull request #33525 from nextcloud/dependabot/npm_and_yarn/webpack-5.74.0dependabot[bot]2022-08-132-34/+34
|\ \ \ \ \ \ \
| * | | | | | | Bump webpack from 5.73.0 to 5.74.0dependabot[bot]2022-08-132-34/+34
| | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [webpack](https://github.com/webpack/webpack) from 5.73.0 to 5.74.0. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v5.73.0...v5.74.0) --- updated-dependencies: - dependency-name: webpack dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | | | | | | Merge pull request #33517 from nextcloud/bugfix/noid/npm-linkJohn Molakvoæ2022-08-131-2/+4
|\ \ \ \ \ \ \
| * | | | | | | Enforce providing jquery from server node_modulesJulius Härtl2022-08-121-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * | | | | | | Allow symlinks during webpack buildJulius Härtl2022-08-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | | | | | | [tx-robot] updated from transifexNextcloud bot2022-08-1324-60/+144
| |/ / / / / / |/| | | | | | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | | | | Merge pull request #33505 from nextcloud/release/25.0.0beta1v25.0.0beta1John Molakvoæ2022-08-121-2/+2
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | |
| * | | | | | 25.0.0beta1John Molakvoæ2022-08-121-2/+2
|/ / / / / / | | | | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
* | | | | | Merge pull request #33513 from ↵Joas Schilling2022-08-121-4/+17
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | | | | | | | nextcloud/bugfix/noid/recover-installation-when-creating-the-user-failed Recover installation when creating the database user fails and improve password strength
| * | | | | Create more secure passwords by defaultJoas Schilling2022-08-121-4/+10
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | | | Recover installation when creating the user failedJoas Schilling2022-08-121-0/+7
|/ / / / / | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | | [tx-robot] updated from transifexNextcloud bot2022-08-1232-34/+264
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | | Merge pull request #33510 from nextcloud/fix/nodb-testsVincent Petry2022-08-114-3/+25
|\ \ \ \ \ | | | | | | | | | | | | Fix unit tests for the theming app
| * | | | | Fix unit tests for the theming appCarl Schwan2022-08-114-3/+25
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | | | | | Merge pull request #33506 from nextcloud/bugfix/noid/fix-trusted-domain-errorJohn Molakvoæ2022-08-111-1/+1
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | Fix trusted domain error pageJoas Schilling2022-08-111-1/+1
|/ / / / / | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | | Merge pull request #33477 from nextcloud/feat/package-node-npm-engines-updateJohn Molakvoæ2022-08-111-2/+2
|\ \ \ \ \