summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #33242 from nextcloud/enh/email-material-iconsPytal2022-07-205-19/+12
|\
| * Use material design icons in Email componentChristopher Ng2022-07-215-19/+12
|/ | | | | Signed-off-by: Christopher Ng <chrng8@gmail.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* Merge pull request #33266 from nextcloud/bugfix/noid/skip-content-publicVincent Petry2022-07-202-2/+7
|\ | | | | Add skip content buttons to the public page layout
| * Add skip content buttons to the public page layoutJulius Härtl2022-07-182-2/+7
| | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | Merge pull request #33286 from nextcloud/dependabot/npm_and_yarn/terser-4.8.1Julius Härtl2022-07-201-6/+6
|\ \ | | | | | | Bump terser from 4.8.0 to 4.8.1
| * | Bump terser from 4.8.0 to 4.8.1dependabot[bot]2022-07-201-6/+6
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [terser](https://github.com/terser/terser) from 4.8.0 to 4.8.1. - [Release notes](https://github.com/terser/terser/releases) - [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md) - [Commits](https://github.com/terser/terser/commits) --- updated-dependencies: - dependency-name: terser dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
* | [tx-robot] updated from transifexNextcloud bot2022-07-208-4/+8
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Merge pull request #33260 from nextcloud/fix/carl/quotaVincent Petry2022-07-196-47/+35
|\ \ | | | | | | Fix quota nav item
| * | Fix quota nav itemCarl Schwan2022-07-186-47/+35
| | | | | | | | | | | | | | | | | | - Spacing was not correctly set Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | | Merge pull request #33270 from nextcloud/fix/noid/location-legacy-appfileJulius Härtl2022-07-191-1/+1
|\ \ \ | | | | | | | | fix loading legacy app.php with multi app dir
| * | | fix loading legacy app.php with multi app dirArthur Schiwon2022-07-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - requireAppFile() only appends /appinfo/app.php - without the absolute path, require_once looks into include_path - the first match in inlcude_path however migth be different from appPath - fixed by providing the tested(!), full path to the app Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | | | Merge pull request #33267 from nextcloud/bugfix/noid/button-hoverJulius Härtl2022-07-195-8/+42
|\ \ \ \ | | | | | | | | | | Use hover css variable for primary buttons
| * | | | Use hover css variable for primary buttons and add proper focus outlineJulius Härtl2022-07-185-8/+42
| | |_|/ | |/| | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | | [tx-robot] updated from transifexNextcloud bot2022-07-194-0/+8
| | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | Merge pull request #33268 from ↵dependabot[bot]2022-07-181-11/+18
|\ \ \ \ | |_|/ / |/| | | | | | | nextcloud/dependabot/composer/bamarni/composer-bin-plugin-1.8.0
| * | | Bump bamarni/composer-bin-plugin from 1.5.0 to 1.8.0dependabot[bot]2022-07-181-11/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [bamarni/composer-bin-plugin](https://github.com/bamarni/composer-bin-plugin) from 1.5.0 to 1.8.0. - [Release notes](https://github.com/bamarni/composer-bin-plugin/releases) - [Commits](https://github.com/bamarni/composer-bin-plugin/compare/v1.5.0...1.8.0) --- updated-dependencies: - dependency-name: bamarni/composer-bin-plugin dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
* | | | Merge pull request #33246 from nextcloud/bugfix/noid/dark-primary-lightPytal2022-07-181-2/+4
|\ \ \ \ | |/ / / |/| | |
| * | | Properly set --color-primary-light-hover on dark themesJulius Härtl2022-07-161-2/+4
| | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | | Merge pull request #33240 from nextcloud/fix/login-input-focusPytal2022-07-181-1/+1
|\ \ \ \ | |_|/ / |/| | |
| * | | Fix login input focus borderChristopher Ng2022-07-151-1/+1
| |/ / | | | | | | | | | Signed-off-by: Christopher Ng <chrng8@gmail.com>
* | | Merge pull request #33255 from nextcloud/fix/login-password-translationJulius Härtl2022-07-183-4/+4
|\ \ \ | | | | | | | | LoginForm: Fix password label translation call
| * | | LoginForm: Fix password label translation callMarcel Klehr2022-07-183-4/+4
| | | | | | | | | | | | | | | | Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | | | Merge pull request #32981 from nextcloud/typing/carl/simplefsCarl Schwan2022-07-189-107/+70
|\ \ \ \ | |_|_|/ |/| | | Add typing to SimpleFS
| * | | Add typing to SimpleFSCarl Schwan2022-07-149-111/+74
| | | | | | | | | | | | | | | | | | | | | | | | - Fix putContent sometimes return a bool and sometimes nothing Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | | | Merge pull request #27929 from nextcloud/enh/allowSsoToProvideSecretblizzz2022-07-184-2/+49
|\ \ \ \ | | | | | | | | | | Allow SSO authentication to provide a user secret
| * | | | Allow SSO authentication to provide a user secretMichaIng2022-07-124-2/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implementing PR #24837 from immerda Signed-off-by: MichaIng <micha@dietpi.com>
* | | | | Merge pull request #32521 from nextcloud/cleanup/oauth2-admin-settingCarl Schwan2022-07-188-29/+66
|\ \ \ \ \ | | | | | | | | | | | | Cleanup oauth2 admin settings
| * | | | | Cleanup oauth2 admin settingsCarl Schwan2022-07-148-29/+66
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Use more vue components - Add link to doc Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | | | | | Merge pull request #33064 from nextcloud/feat/capped-memorycache-ocpCarl Schwan2022-07-1831-30/+193
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | Move CappedMemoryCache to OCP
| * | | | | Move CappedMemoryCache to OCPCarl Schwan2022-07-1431-30/+193
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is an helpful helper that should be used in more place than just server and this is already the case with groupfodlers, deck, user_oidc and more using it, so let's make it public Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | | | | Merge pull request #32963 from nextcloud/s3-crt-bundle-downloadDaniel2022-07-182-12/+24
|\ \ \ \ \ | | | | | | | | | | | | also use nextcloud certificate bundle when downloading from s3
| * | | | | only use nextcloud bundle when explicitly enabledRobin Appelman2022-07-052-10/+15
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * | | | | also use nextcloud certificate bundle when downloading from s3Robin Appelman2022-07-052-10/+17
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | | | Merge pull request #33247 from nextcloud/bugfix/noid/skip-button-idsVincent Petry2022-07-1811-103/+26
|\ \ \ \ \ \ | | | | | | | | | | | | | | Allow to override #app-content and #app-navigation hrefs for content skipping
| * | | | | | Fix styling for single skip buttons globallyJulius Härtl2022-07-169-102/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * | | | | | Allow to override #app-content and #app-navigation hrefs for content skippingJulius Härtl2022-07-163-3/+9
| | |_|_|_|/ | |/| | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | | | | [tx-robot] updated from transifexNextcloud bot2022-07-1820-4/+48
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | | | [tx-robot] updated from transifexNextcloud bot2022-07-176-2/+62
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | | | [tx-robot] updated from transifexNextcloud bot2022-07-1614-6/+26
|/ / / / / | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | | Merge pull request #33238 from ↵Carl Schwan2022-07-156-16/+8
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | nextcloud/bugfix/noid/fix-html-validation-of-material-design-icons Fix html validation of material design icons
| * | | | | RecompileJoas Schilling2022-07-154-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | | | Fix HTML validation of material design iconsJoas Schilling2022-07-152-10/+2
|/ / / / / | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | | [tx-robot] updated from transifexNextcloud bot2022-07-1540-0/+84
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | | Merge pull request #33222 from ↵Pytal2022-07-144-5/+13
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | nextcloud/bugfix/noid/fix-translation-of-user-exists-error
| * | | | | RecompileJoas Schilling2022-07-142-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | | | Translate error when user already existsJoas Schilling2022-07-142-2/+10
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | | | Merge pull request #33235 from nextcloud/bugfix/noid/fix-duplicate-id-holeJoas Schilling2022-07-144-9/+9
|\ \ \ \ \ \ | |/ / / / / |/| | | | | Fix duplicate id "hole"
| * | | | | RecompileJoas Schilling2022-07-142-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | | | Fix duplicate id "hole"Joas Schilling2022-07-142-6/+6
|/ / / / / | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | | Merge pull request #33214 from nextcloud/fix/bump-sabre/dav-to-4.4.0Carl Schwan2022-07-141-0/+0
|\ \ \ \ \ | | | | | | | | | | | | Bump sabre/dav to 4.4.0