aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #33902 from nextcloud/enh/33807/fix-icon-alignmentSimon L2022-09-073-3/+3
|\ | | | | fix top-alignment of icons
| * fix top-alignment of iconsszaimen2022-09-063-3/+3
| | | | | | | | | | Signed-off-by: szaimen <szaimen@e.mail.de> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | [tx-robot] updated from transifexNextcloud bot2022-09-07240-516/+710
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #33903 from nextcloud/enh/33834/fix-dark-contrast-themeSimon L2022-09-072-0/+2
|\ | | | | fix dark-contrast-theme
| * fix dark-contrast-themeszaimen2022-09-062-0/+2
| | | | | | | | Signed-off-by: szaimen <szaimen@e.mail.de>
* | Merge pull request #33804 from nextcloud/version-store-userblizzz2022-09-061-14/+27
|\ \ | |/ |/| always use the default fs owner when storing versions
| * always use the default fs owner when storing versionsRobin Appelman2022-09-061-14/+27
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | Merge pull request #33900 from nextcloud/enh/33802/improve-appsettings-designSimon L2022-09-065-46/+46
|\ \ | | | | | | improve app settings design
| * | improve app settings designszaimen2022-09-065-46/+46
|/ / | | | | | | | | Signed-off-by: szaimen <szaimen@e.mail.de> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | Merge pull request #33813 from nextcloud/fix/infinite_email_change_notificationLouis2022-09-061-1/+1
|\ \ | | | | | | Compare lowercase email when updating from ldap
| * | I dug into it again, and the issue is much simpler than I previously though.Louis Chemineau2022-09-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - LDAP has an email address with capital letters - NC store this address in lower case - When the user logs in, we compare the [stored email with the new lower case email](https://github.com/nextcloud/server/blob/master/lib/private/AllConfig.php#L259-L261) before storing it. Here, both email will be the same, so we won't store the new email address with upper case letters. Which is what we want. - We then [compare emails as they are before triggering an event](https://github.com/nextcloud/server/blob/master/lib/private/User/User.php#L202-L204), they won't match, so the user will receive an email signaling an email change every time he logs in. The fix is to compare the old email with the new lower case email before sending the event. Signed-off-by: Louis Chemineau <louis@chmn.me>
* | | Merge pull request #29881 from nextcloud/fix/setting/accessibility-titleCarl Schwan2022-09-065-17/+35
|\ \ \ | | | | | | | | Improve accessibility of the title of the settings
| * \ \ Merge branch 'master' into fix/setting/accessibility-titleCarl Schwan2022-09-023376-36170/+78686
| |\ \ \ | | | | | | | | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
| * | | | Improve accessibility of the title of the settingsCarl Schwan2022-05-165-17/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before every setting page had the same title and this is causing issues for screenreaders since they can't differenciate the title of page. Now a new variable is available for apps to declare the page subtitle. This new variable is implemented for the settings app and while at it I added a bit more type hinting to the stuff I touched :) Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | | | | Merge pull request #33781 from nextcloud/port/login-form/vue-password-componentsCarl Schwan2022-09-0612-250/+186
|\ \ \ \ \ | |_|_|/ / |/| | | | Use new vue components in login form
| * | | | More cleaning up of the login componentCarl Schwan2022-09-0612-124/+107
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Move css in scopped vue components - Port to NcNoteCard all the warning messages Signed-off-by: Carl Schwan <carl@carlschwan.eu>
| * | | | Use new vue components in login formCarl Schwan2022-09-054-149/+102
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Improve accessibility - Simply code Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | | | | Merge pull request #33904 from nextcloud/enh/33833/box-shadowSimon L2022-09-062-3/+3
|\ \ \ \ \ | | | | | | | | | | | | fix background shadow in high-contrast-mode
| * | | | | fix background shadowszaimen2022-09-052-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: szaimen <szaimen@e.mail.de>
* | | | | | Merge pull request #33905 from ↵blizzz2022-09-061-6/+0
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | nextcloud/fix/fix-dynamic-property-in-files_version-test Fix dynamic property warning in files_version tests
| * | | | | | Fix dynamic property warning in files_version testsCôme Chilliet2022-09-051-6/+0
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The code had no effect as $storage is not an instance of SharedStorage, the call to setValue failed with a warning. Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | | | | | Merge pull request #33910 from nextcloud/update-header-menu-styleCarl Schwan2022-09-065-2/+21
|\ \ \ \ \ \ | | | | | | | | | | | | | | Update header menu style
| * | | | | | Update header menu styleCarl Schwan2022-09-065-2/+21
| | |/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | Make it consistent with nextcloud-vue Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | | | | | Merge pull request #33895 from nextcloud/fix/fix-apps-typosCarl Schwan2022-09-0667-89/+89
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fix typos in apps/ subdirectory
| * | | | | | Fix typos in apps/ subdirectoryluz paz2022-09-0567-89/+89
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Found via `codespell -q 3 -S l10n,./apps/files_external/3rdparty -L adn,ba,boxs,keypair,jus,optionel,ressource,tabel ./apps/` Signed-off-by: luz paz <luzpaz@github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | / / / / [tx-robot] updated from transifexNextcloud bot2022-09-0620-4/+98
| |/ / / / |/| | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | | Merge pull request #33899 from nextcloud/fix/bump-phpseclib/phpseclib-to-2.0.38blizzz2022-09-051-0/+0
|\ \ \ \ \ | | | | | | | | | | | | Bump phpseclib/phpseclib to 2.0.38
| * | | | | Bump phpseclib/phpseclib to 2.0.38Côme Chilliet2022-09-051-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | | | | Bump phpseclib/phpseclib to 2.0.38Côme Chilliet2022-09-051-0/+0
| |/ / / / | | | | | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | | | | Merge pull request #33889 from nextcloud/debt/noid/docblock-cache-forDaniel2022-09-051-2/+4
|\ \ \ \ \ | |/ / / / |/| | | | Update docblock for cacheFor
| * | | | Add description for public and immutableDaniel2022-09-031-2/+2
| | | | | | | | | | | | | | | | | | | | Co-authored-by: Carl Schwan <carl@carlschwan.eu> Signed-off-by: Daniel <mail@danielkesselberg.de>
| * | | | Update docblock for cacheForDaniel Kesselberg2022-09-031-2/+4
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* | | | | [tx-robot] updated from transifexNextcloud bot2022-09-0530-0/+134
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | | [tx-robot] updated from transifexNextcloud bot2022-09-0420-2/+106
|/ / / / | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | [tx-robot] updated from transifexNextcloud bot2022-09-03310-1912/+1934
| | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | Merge pull request #33863 from nextcloud/hash-wrapper-catch-errorsblizzz2022-09-021-2/+7
|\ \ \ \ | | | | | | | | | | handle errors from hash_final
| * | | | handle errors from hash_finalRobin Appelman2022-09-021-2/+7
| | |_|/ | |/| | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | Merge pull request #33692 from nextcloud/update-dirblizzz2022-09-022-2/+11
|\ \ \ \ | | | | | | | | | | Document and use the new updateDirectory if set
| * | | | Fix small typoGit'Fellow2022-08-251-1/+1
| | | | | | | | | | | | | | | Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
| * | | | Document updatedirectory optionGit'Fellow2022-08-251-0/+9
| | | | | | | | | | | | | | | Signed-off-by: Git'Fellow <carlos@reendex.com>
| * | | | Introduce $updateDir to move updates outside $dataDirGit'Fellow2022-08-251-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | To be merged after https://github.com/nextcloud/updater/pull/420 Signed-off-by: Git'Fellow <carlos@reendex.com>
* | | | | Merge pull request #33790 from nextcloud/Valdnet-patch-2Simon L2022-09-025-5/+5
|\ \ \ \ \ | | | | | | | | | | | | l10n: Spelling unification
| * | | | | fix testsszaimen2022-09-023-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: szaimen <szaimen@e.mail.de>
| * | | | | l10n: Spelling unificationValdnet2022-09-022-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Spelling unification in Transifex. Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com> l10n: Change to administration Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com> l10n: Spelling unification Spelling unification in Transifex. Match the menu name to the header name of the settings page. Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
* | | | | | Merge pull request #33827 from nextcloud/bugfix/guest-scrollJohn Molakvoæ2022-09-021-0/+2
|\ \ \ \ \ \
| * | | | | | Bring back scrolling to guest bodyJulius Härtl2022-09-021-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | | | | | Merge pull request #33814 from nextcloud/fix-sidebarJohn Molakvoæ2022-09-023-5/+7
|\ \ \ \ \ \ \ | |_|_|_|/ / / |/| | | | | |
| * | | | | | Fix sidebar toggleJohn Molakvoæ2022-09-023-5/+7
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | | | | | Merge pull request #33826 from nextcloud/enh/a11y-unified-searchVincent Petry2022-09-025-57/+79
|\ \ \ \ \ \ | |_|_|_|_|/ |/| | | | | Accessibility and design improvements to unified search
| * | | | | Accessibility improvements to unified searchChristopher Ng2022-09-025-57/+79
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Christopher Ng <chrng8@gmail.com>