summaryrefslogtreecommitdiffstats
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2018-09-092-0/+2
|
* [tx-robot] updated from transifexNextcloud bot2018-09-082-12/+12
|
* Improve class import and strict typing for generated migration classChristoph Wurst2018-09-071-6/+10
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Do not invalidate main token on OAuthRoeland Jago Douma2018-09-061-3/+3
| | | | | | | | | | | | | | | | Fixes #10584 We deleted the main token when using the login flow else mutliple tokens would show up for a single user. However in the case of OAuth this is perfectly fine as the authentication happens really in your browser: 1. You are already logged in, no need to log you out 2. You are not logged in yet, but since you log in into the exact same browser the expected behavior is to stay logged in. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Merge pull request #11054 from ↵Roeland Jago Douma2018-09-051-0/+21
|\ | | | | | | | | nextcloud/fix-size-of-icons-in-menus-inside-apps-when-shown-as-images Fix size of icons in menus inside apps when shown as images
| * Fix size of icons in menus inside apps when shown as imagesDaniel Calviño Sánchez2018-09-041-0/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some popover menus, like the contacts menu, still show their icon using an img element. The main CSS rules assume that a "content-box" sizing is being used, and thus set the size and padding of the image to add up to the line height. However, ".app-*" descendants use a "border-box" sizing, so when a menu with an image was shown in an app the icon was not properly shown. Now both the width and height of the image is set to the item height in those cases, which causes the visible size of the icon to be the item height minus the padding (the same as when "content-box" sizing is used). Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | Merge pull request #11048 from nextcloud/stable14-10963Julius Härtl2018-09-041-3/+3
|\ \ | |/ |/| [stable14] Updates logo scss to regard default values
| * Updates logo scss to regard default valuesMichael Weimann2018-09-041-3/+3
| | | | | | | | Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
* | [tx-robot] updated from transifexNextcloud bot2018-09-042-0/+22
| |
* | [tx-robot] updated from transifexNextcloud bot2018-09-016-2/+66
|/
* Merge pull request #10944 from nextcloud/content-list-overflow-fixRoeland Jago Douma2018-08-311-3/+3
|\ | | | | Fix overflow x scroll on app content list
| * Fix overflow x scroll on app content listJohn Molakvoæ (skjnldsv)2018-08-311-3/+3
| | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | Change password expiration time from 12h to 7dMorris Jobke2018-08-311-1/+1
| | | | | | | | | | | | We use the same logic for creating accounts without a password and there the 12h is a bit short. Users don't expect that the signup link needs to be clicked within 12h - 7d should be a more expected behavior. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | [tx-robot] updated from transifexNextcloud bot2018-08-312-0/+14
| |
* | Merge pull request #10936 from ↵Morris Jobke2018-08-302-9/+22
|\ \ | | | | | | | | | | | | nextcloud/make-possible-to-pick-both-files-and-folders Make possible to pick both files and folders
| * | Make possible to pick both files and foldersDaniel Calviño Sánchez2018-08-301-1/+9
| | | | | | | | | | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | Store the mime type filter always as an arrayDaniel Calviño Sánchez2018-08-301-6/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | This will make easier to check if both directories and files should be pickable. This also removes an unused assignment to the mime type. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | Fix empty mime type filterDaniel Calviño Sánchez2018-08-301-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When the mime type is an empty array no filter should be applied. However, the filter was loosely compared to an empty array, but as arrays are objects then it became an implicit strict equality comparison which always failed due to being different objects. Now the length of the array is compared instead, and also moved outside the loop as it is not needed to check it for each file. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | Prevent default action from being executed when the button is disabledDaniel Calviño Sánchez2018-08-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When "enter" is pressed in the file picker a "click" event is triggered on the primary action button. However, in some cases, like when the file picker is in "Choose" mode and the current directory in the file picker is the root folder, the primary action button is disabled. In those cases pressing enter should not trigger a click action on the button and be ignored instead. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | | Merge pull request #10925 from ↵Morris Jobke2018-08-301-1/+1
|\ \ \ | |_|/ |/| | | | | | | | nextcloud/use-main-text-color-for-editable-divs-and-text-areas Use main text color for editable divs and text areas
| * | Use main text color for editable divs and text areasDaniel Calviño Sánchez2018-08-291-1/+1
| | | | | | | | | | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | | Merge pull request #10924 from nextcloud/bugfix/10901/theming-bugfix-primaryJulius Härtl2018-08-301-2/+2
|\ \ \ | | | | | | | | Fix SCSS variable management with the theming app
| * | | Move SCSS variable fetching before the variables.scss to properly calculate ↵Julius Härtl2018-08-291-2/+2
| |/ / | | | | | | | | | | | | | | | color values Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | Merge pull request #10853 from nextcloud/apps-menu-fix-mobileJulius Härtl2018-08-302-3/+3
|\ \ \ | |_|/ |/| | Fix apps menu on mobile
| * | Fix apps menu and typoJohn Molakvoæ (skjnldsv)2018-08-282-1/+2
| | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | Fix apps menu on mobileJohn Molakvoæ (skjnldsv)2018-08-252-4/+3
| | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | | [tx-robot] updated from transifexNextcloud bot2018-08-302-0/+2
| |/ |/|
* | [tx-robot] updated from transifexNextcloud bot2018-08-292-0/+6
| |
* | Merge pull request #10881 from nextcloud/fix/10705/notification-widthJohn Molakvoæ2018-08-282-2/+8
|\ \ | | | | | | Makes the notifications area width equal to the contents
| * | Makes the notifications area width equal to the contentsMichael Weimann2018-08-272-2/+8
| | | | | | | | | | | | Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
* | | Merge pull request #10875 from nextcloud/bugfix/10024/theming-footer-linkJulius Härtl2018-08-281-1/+1
|\ \ \ | | | | | | | | Theming: Only link Entity in footer if a url is set
| * | | Theming: Only Entity in footer if a url is setJulius Härtl2018-08-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | fixes #10024 Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | | [tx-robot] updated from transifexNextcloud bot2018-08-282-0/+6
| |/ / |/| |
* | | Merge pull request #10867 from nextcloud/bugfix/noid/a11yJoas Schilling2018-08-272-2/+3
|\ \ \ | |/ / |/| | Use empty alt tag for avatars since there is always the name next to it
| * | Make the color importantJoas Schilling2018-08-261-2/+2
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | Use empty alt tag for avatars since there is always the name next to itJoas Schilling2018-08-261-0/+1
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | [tx-robot] updated from transifexNextcloud bot2018-08-276-8/+16
| | |
* | | Fix public pages conflictingJohn Molakvoæ (skjnldsv)2018-08-261-0/+2
| | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | | [tx-robot] updated from transifexNextcloud bot2018-08-268-0/+8
|/ /
* / [tx-robot] updated from transifexNextcloud bot2018-08-254-4/+4
|/
* Merge pull request #10838 from nextcloud/header-fixes-and-public-noteMorris Jobke2018-08-246-29/+19
|\ | | | | Header fixes and public note
| * Fix jsunitJohn Molakvoæ (skjnldsv)2018-08-241-1/+1
| | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * Merge branch 'header-fixes-and-public-note' of ↵John Molakvoæ (skjnldsv)2018-08-241-1/+1
| |\ | | | | | | | | | | | | | | | https://github.com/nextcloud/server into header-fixes-and-public-note Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| | * Fix header logo paddingJulius Härtl2018-08-241-1/+1
| | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * | Fix public share link orderJohn Molakvoæ (skjnldsv)2018-08-241-1/+1
| |/ | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * Fix public link order and fix skip to contentJohn Molakvoæ (skjnldsv)2018-08-242-2/+3
| | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * Fix mobile view and add public share note viewJohn Molakvoæ (skjnldsv)2018-08-242-10/+2
| | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * Fix header calculation and better public designJohn Molakvoæ (skjnldsv)2018-08-242-16/+13
| | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | Add support for rooms in the list of candidates to share with UIDaniel Calviño Sánchez2018-08-241-5/+29
| | | | | | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | Merge pull request #10773 from nextcloud/collapsible-dark-fixMorris Jobke2018-08-241-1/+1
|\ \ | | | | | | Accessibility theme fixes