summaryrefslogtreecommitdiffstats
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
* Use a blank line after the opening tagChristoph Wurst2020-04-092-0/+2
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Use exactly one empty line after the namespace declarationChristoph Wurst2020-04-096-6/+0
| | | | | | For PSR2 Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Fix (array) indent style to always use one tabChristoph Wurst2020-04-096-18/+18
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* [tx-robot] updated from transifexNextcloud bot2020-04-094-4/+30
|
* Fix multiline commentsChristoph Wurst2020-04-086-105/+105
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Merge pull request #20343 from nextcloud/bugfix/noid/themed-error-behaviourRoeland Jago Douma2020-04-082-2/+1
|\ | | | | Default to dark background in dark mode and better themed navbar
| * Default to dark background in dark mode and better themed navbarJoas Schilling2020-04-072-2/+1
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | Merge pull request #20315 from ↵Roeland Jago Douma2020-04-086-6/+6
|\ \ | | | | | | | | | | | | nextcloud/dependabot/npm_and_yarn/handlebars-4.7.6 Bump handlebars from 4.7.4 to 4.7.6
| * | Bump handlebars from 4.7.4 to 4.7.6dependabot-preview[bot]2020-04-086-6/+6
| |/ | | | | | | | | | | | | | | | | | | Bumps [handlebars](https://github.com/wycats/handlebars.js) from 4.7.4 to 4.7.6. - [Release notes](https://github.com/wycats/handlebars.js/releases) - [Changelog](https://github.com/wycats/handlebars.js/blob/master/release-notes.md) - [Commits](https://github.com/wycats/handlebars.js/compare/v4.7.4...v4.7.6) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* / [tx-robot] updated from transifexNextcloud bot2020-04-082-0/+4
|/
* [tx-robot] updated from transifexNextcloud bot2020-04-074-4/+16
|
* Inline usages of OCP.Toast in bundled filesChristoph Wurst2020-04-0612-130/+142
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Use external Toast implementation and deprecate the OCP APIChristoph Wurst2020-04-0612-120/+134
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Merge pull request #19761 from ↵Roeland Jago Douma2020-04-061-3/+6
|\ | | | | | | | | nextcloud/bugfix/19658/add_missing_index_to_original_migration Add missing index to original migration
| * Create Mount IDs as BigInt by defaultGeorg Ehrke2020-03-031-3/+6
| | | | | | | | Signed-off-by: Georg Ehrke <developer@georgehrke.com>
* | [tx-robot] updated from transifexNextcloud bot2020-04-068-2/+56
| |
* | [tx-robot] updated from transifexNextcloud bot2020-04-054-2/+8
| |
* | Merge pull request #20273 from ↵Roeland Jago Douma2020-04-046-6/+6
|\ \ | | | | | | | | | | | | nextcloud/dependachristoph/npm_and_yarn/handlebars-minimist Update handlebars to get rid of minimist
| * | Update handlebars to get rid of minimistChristoph Wurst2020-04-036-6/+6
| | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | [tx-robot] updated from transifexNextcloud bot2020-04-042-2/+6
| | |
* | | [tx-robot] updated from transifexNextcloud bot2020-04-03130-276/+536
|/ /
* | Merge pull request #20217 from ↵Roeland Jago Douma2020-04-032-2/+2
|\ \ | | | | | | | | | | | | nextcloud/dependabot/npm_and_yarn/regenerator-runtime-0.13.5 Bump regenerator-runtime from 0.13.3 to 0.13.5
| * | Bump regenerator-runtime from 0.13.3 to 0.13.5dependabot-preview[bot]2020-04-032-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [regenerator-runtime](https://github.com/facebook/regenerator) from 0.13.3 to 0.13.5. - [Release notes](https://github.com/facebook/regenerator/releases) - [Commits](https://github.com/facebook/regenerator/compare/regenerator-runtime@0.13.3...regenerator-runtime@0.13.5) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* | | Merge pull request #19672 from ↵Roeland Jago Douma2020-04-021-0/+16
|\ \ \ | |/ / |/| | | | | | | | nextcloud/fix-pointer-cursor-on-icons-in-primary-button Fix cursor on click inputs and their descendants
| * | Fix cursor on click inputs and their descendantsDaniel Calviño Sánchez2020-03-251-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The cursor in click inputs is shown as a pointer to convey that it can be interacted with. However, in those click inputs that can have descendants, like buttons, the descendants may not inherit the cursor from it (for example, a "strong" element would, but a "span" element would not), which causes a pointer cursor to be shown on some areas of the button and a different one to be shown on other areas. To prevent that now all the descendants of click inputs that can have descendants use a pointer cursor. On the other hand, if a click input is disabled it can not be interacted with it, so now disabled click inputs as well as their descendants show a default cursor instead of a pointer cursor in that case. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | | Merge pull request #20215 from nextcloud/bug/19939/password-reset-arrowRoeland Jago Douma2020-04-023-50/+52
|\ \ \ | | | | | | | | Align password reset arrow
| * | | Add fieldset to align arrowDaniel Kesselberg2020-04-013-50/+52
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* | | | Merge pull request #19890 from nextcloud/enh/comments-reference-idJoas Schilling2020-04-027-1/+160
|\ \ \ \ | |/ / / |/| | | Add optional comments reference_id
| * | | Update new test as wellJoas Schilling2020-04-011-0/+1
| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | Add optional column oc_comments.reference_idJoas Schilling2020-03-317-1/+159
| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | Merge pull request #20241 from nextcloud/fix/license-headers-19Roeland Jago Douma2020-04-0118-6/+18
|\ \ \ \ | | | | | | | | | | Update the license headers for Nextcloud 19
| * | | | Update the license headers for Nextcloud 19Christoph Wurst2020-03-3118-6/+18
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | | | Bump blueimp-md5 from 2.12.0 to 2.13.0dependabot-preview[bot]2020-04-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [blueimp-md5](https://github.com/blueimp/JavaScript-MD5) from 2.12.0 to 2.13.0. - [Release notes](https://github.com/blueimp/JavaScript-MD5/releases) - [Commits](https://github.com/blueimp/JavaScript-MD5/compare/v2.12.0...v2.13.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* | | | | Start with webauthnRoeland Jago Douma2020-03-3120-61/+563
|/ / / / | | | | | | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* | | | Merge pull request #20219 from nextcloud/dependabot/npm_and_yarn/webpack-4.42.1Christoph Wurst2020-03-3110-15/+15
|\ \ \ \ | |/ / / |/| | | Bump webpack from 4.42.0 to 4.42.1
| * | | Bump webpack from 4.42.0 to 4.42.1dependabot-preview[bot]2020-03-3010-15/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [webpack](https://github.com/webpack/webpack) from 4.42.0 to 4.42.1. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v4.42.0...v4.42.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* | | | Remove Acrobat logo from PDF filetype iconJan-Christoph Borchardt2020-03-301-1/+1
| | | | | | | | | | | | | | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
* | | | [tx-robot] updated from transifexNextcloud bot2020-03-306-8/+10
| | | |
* | | | [tx-robot] updated from transifexNextcloud bot2020-03-296-14/+18
|/ / /
* | | [tx-robot] updated from transifexNextcloud bot2020-03-284-2/+6
| | |
* | | Merge pull request #20170 from nextcloud/techdebt/remove-unused-importsChristoph Wurst2020-03-278-8/+0
|\ \ \ | | | | | | | | Remove unused imports
| * | | Remove unused importsChristoph Wurst2020-03-258-8/+0
| | | | | | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | | [tx-robot] updated from transifexNextcloud bot2020-03-276-0/+8
| | | |
* | | | Merge pull request #19872 from nextcloud/techdebt/bable-polyfill-to-core-jsJohn Molakvoæ2020-03-2611-71/+72
|\ \ \ \ | | | | | | | | | | Migrate from @babel/polyfill to core-js@3
| * | | | Migrate from @babel/polyfill to core-js@3Christoph Wurst2020-03-2611-71/+72
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | | | Use the short array syntax, everywhereChristoph Wurst2020-03-2615-41/+41
|/ / / / | | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* / / / [tx-robot] updated from transifexNextcloud bot2020-03-266-0/+6
|/ / /
* | | Register an address book with recent contactsChristoph Wurst2020-03-252-1/+2
| | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | Update eslint and switch to @nextcloud packagesChristoph Wurst2020-03-258-10/+7
|/ / | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | [tx-robot] updated from transifexNextcloud bot2020-03-2512-0/+14
| |