aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2018-09-0136-6/+214
|
* Merge pull request #10861 from nextcloud/version/noid/14.0.0RC2v14.0.0RC2Morris Jobke2018-08-311-2/+2
|\ | | | | 14.0.0 RC 2
| * 14.0.0 RC 2Morris Jobke2018-08-311-2/+2
|/ | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Merge pull request #10943 from nextcloud/fix/2fa-provider-dao-concurrent-insertMorris Jobke2018-08-311-20/+9
|\ | | | | Fix handlng of concurrent inserts of the 2FA provider registry DAO
| * Fix handlng of concurrent inserts of the 2FA provider registry DAOChristoph Wurst2018-08-311-20/+9
| | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | 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>
* | | Merge pull request #10942 from ↵Morris Jobke2018-08-312-2/+2
|\ \ \ | |_|/ |/| | | | | | | | nextcloud/feature/10776/longer-password-reset-time Change password expiration time from 12h to 7d
| * | Change password expiration time from 12h to 7dMorris Jobke2018-08-312-2/+2
|/ / | | | | | | | | | | 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-3116-2/+96
| |
* | Merge pull request #10939 from nextcloud/bugfix/10930/perm-checker-wrong-pathMorris Jobke2018-08-301-6/+5
|\ \ | | | | | | Fix path when app has wrong permission
| * | Fix path when app has wrong permissionDaniel Kesselberg2018-08-301-6/+5
| | | | | | | | | | | | | | | | | | Replace slow array function used in loop: https://github.com/kalessil/phpinspectionsea/blob/master/docs/performance.md#slow-array-function-used-in-loop Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* | | Merge pull request #10910 from nextcloud/customproperties-ignored-listMorris Jobke2018-08-302-1/+1
|\ \ \ | | | | | | | | use the same ignored properties list for both CustomerPropertiesBackends
| * | | use the same ignored properties list for both CustomerPropertiesBackendsRobin Appelman2018-08-282-1/+1
| | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | Merge pull request #10906 from nextcloud/request-params-arrayRoeland Jago Douma2018-08-301-1/+1
|\ \ \ \ | | | | | | | | | | ensure we always return an array from `Request::getParams`
| * | | | ensure we always return an array from `Request::getParams`Robin Appelman2018-08-281-1/+1
| |/ / / | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | 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 #10913 from ↵Morris Jobke2018-08-301-16/+20
|\ \ \ \ \ \ | |_|_|_|_|/ |/| | | | | | | | | | | | | | | | | nextcloud/do-not-parse-html-in-user-id-and-display-name Do not parse HTML in user id and display name
| * | | | | Do not parse HTML in user id and display nameJoas Schilling2018-08-281-16/+20
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | | | Merge pull request #10924 from nextcloud/bugfix/10901/theming-bugfix-primaryJulius Härtl2018-08-307-8/+13
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fix SCSS variable management with the theming app
| * | | | | | Fix capabilities testJulius Härtl2018-08-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * | | | | | Make the default element color for bright theming colors lighterJulius Härtl2018-08-302-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * | | | | | Remove border from primary button when color is brightJulius Härtl2018-08-291-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * | | | | | Move SCSS variable fetching before the variables.scss to properly calculate ↵Julius Härtl2018-08-293-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-3034-2/+60
| |_|_|/ / / |/| | | | |
* | | | | | Merge pull request #10876 from nextcloud/bugfix/10873/theming-settingsbuttonJulius Härtl2018-08-291-2/+2
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | Theming: apply proper size to the remove background button
| * | | | | Theming: apply proper size to the remove background buttonJulius Härtl2018-08-271-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | | | | [tx-robot] updated from transifexNextcloud bot2018-08-2910-0/+14
| |_|_|/ / |/| | | |
* | | | | Merge pull request #10854 from nextcloud/fix-10764Morris Jobke2018-08-282-4/+60
|\ \ \ \ \ | | | | | | | | | | | | Allow same section class for multiple section types (fix #10764)
| * | | | | Allow same section class for multiple section types (fix #10764)sualko2018-08-252-4/+60
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Klaus Herberth <klaus@jsxc.org>
* | | | | | Merge pull request #10871 from cviereck/patch-1Morris Jobke2018-08-281-1/+1
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | cast timestamps older than unix epoch to 0
| * | | | | cast timestamps older than unix epoch to 0Christian2018-08-271-1/+1
| | |/ / / | |/| | | | | | | | This change solves issues #10870, which is caused by method castValue of class FileSearchBackend: It casts the timestamps older than the unix epoch to false., see my comment https://github.com/nextcloud/server/pull/10835#discussion_r212806153.
* | | | | Merge pull request #10892 from nextcloud/fix-drag-shadow-in-files-appJohn Molakvoæ2018-08-281-1/+4
|\ \ \ \ \ | | | | | | | | | | | | Fix drag shadow in Files app
| * | | | | Remove limit on "max-width" for file names in drag shadowDaniel Calviño Sánchez2018-08-271-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The general file list sets "max-width: 0" in the file names, which causes the file names in the drag shadow to have no width for their content and thus to overlap with the file size. As that limit is needed for proper layout in the general file list it is removed only for file names in drag shadows. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | | | | Increase z-index of drag shadow for filesDaniel Calviño Sánchez2018-08-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The drag shadow is a sibling of "#content" so its z-index must be higher than the z-index of the content children (navigation bar, app content and app sidebar) to appear in front of them. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | | | | | 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-283-11/+31
|\ \ \ \ \ \ | | | | | | | | | | | | | | Theming: Only link Entity in footer if a url is set
| * | | | | | Theming: Fix footer testsJulius Härtl2018-08-272-9/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * | | | | | Theming: Only Entity in footer if a url is setJulius Härtl2018-08-272-4/+8
| | |/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | fixes #10024 Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | | | | [tx-robot] updated from transifexNextcloud bot2018-08-284-0/+8
| |/ / / / |/| | | |