summaryrefslogtreecommitdiffstats
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2021-03-23136-328/+330
|
* Merge pull request #26198 from nextcloud/unified-search-nodeMorris Jobke2021-03-221-0/+1
|\ | | | | Handle limit offset and sorting in files search
| * use node search api for legacy file search endpointRobin Appelman2021-03-191-0/+1
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | Merge pull request #25529 from ↵Morris Jobke2021-03-224-0/+203
|\ \ | | | | | | | | | | | | nextcloud/fix-non-lgc-glyphs-in-avatars-and-txt-file-previews Fix non LGC glyphs in avatars and txt file previews
| * | Add OCC command to reset rendered textsDaniel Calviño Sánchez2021-03-012-0/+203
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The command is meant to be used when the fonts used to render texts ("core/fonts/NotoSans-Regular.ttf" and "core/fonts/NotoSans-Bold.ttf") are changed (for example, to add support for other scripts). The avatar and text file previews will be removed, so they will be generated again with the updated font when needed. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | Include additional scripts in Noto fontsDaniel Calviño Sánchez2021-03-012-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Generated avatars as well as text file previews are rendered using the "core/fonts/NotoSans-Regular.ttf" font. The file was the standard hinted "NotoSans-Regular.ttf" file from https://www.google.com/get/noto/. However that file does not cover some non LGC (Latin, Greek, Cyrillic) scripts, like Arabic, Devanagari or Hebrew, to name a few. Markdown file previews also use "core/fonts/NotoSans-Bold.ttf", which is in the same situation as the regular one. Due to limitations in the TTF format it is not possible to provide a single file for each style that includes all Noto fonts. However, it is possible to add more scripts to the standard "NotoSans-Regular.ttf" and "NotoSans-Bold.ttf" files (although no CJK (Chinese, Japanese, Korean) glyph can be included due to the aforementioned limitations). This commit replaces the standard files with an extended version created using the Noto Tools. The build script (as well as a patch for the Noto Tools) is also included for reference and to be able to update the font files in the future if needed. Due to the additional scripts added the font files are now much larger, although this does not seem to increase the time spent rendering LGC scripts. Note that the file for the bold style still contains less scripts than the regular one, as not all scripts supported by Noto have a bold weight. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | | Use the product name in the updater screenJoas Schilling2021-03-221-7/+8
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | [tx-robot] updated from transifexNextcloud bot2021-03-224-4/+4
| | |
* | | [tx-robot] updated from transifexNextcloud bot2021-03-212-12/+12
| | |
* | | Bump clipboard from 2.0.6 to 2.0.8dependabot-preview[bot]2021-03-202-20/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [clipboard](https://github.com/zenorocha/clipboard.js) from 2.0.6 to 2.0.8. - [Release notes](https://github.com/zenorocha/clipboard.js/releases) - [Commits](https://github.com/zenorocha/clipboard.js/compare/v2.0.6...v2.0.8) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
* | | Bump dompurify from 2.2.6 to 2.2.7dependabot-preview[bot]2021-03-204-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [dompurify](https://github.com/cure53/DOMPurify) from 2.2.6 to 2.2.7. - [Release notes](https://github.com/cure53/DOMPurify/releases) - [Commits](https://github.com/cure53/DOMPurify/compare/2.2.6...2.2.7) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
* | | [tx-robot] updated from transifexNextcloud bot2021-03-204-78/+108
| | |
* | | add a prefix index to filecache.pathRobin Appelman2021-03-193-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The reason that `filecache.path` hasn't had an index added is the mysql limitation of ~1kb for indexeded fields, which is to small for the `path`, however mysql supports indexing only the first N bytes of a column instead of the entire column, allowing us to add an index even if the column is to long. Because the index doesn't cover the entire column it can't be used in all situations where a normal index would be used, but it does cover the `path like 'folder/path/%'` queries that are used in various places. Sqlite and Postgresql don't support prefix indexes, but they also don't have the 1kb limit and DBAL handles the differences in index creation. Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | [tx-robot] updated from transifexNextcloud bot2021-03-192-0/+10
| | |
* | | log full expection during repair stepRobin Appelman2021-03-181-1/+3
| | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | make repair errors more visibleRobin Appelman2021-03-181-1/+1
| | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | Merge pull request #26160 from nextcloud/enh/eslintJohn Molakvoæ2021-03-1722-29/+2302
|\ \ \
| * | | Fix TerserPluginJohn Molakvoæ (skjnldsv)2021-03-1716-16/+2280
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | Lint fixJohn Molakvoæ (skjnldsv)2021-03-176-13/+22
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | | | Merge pull request #24580 from nextcloud/enh/noid/db-convertMorris Jobke2021-03-171-1/+4
|\ \ \ \ | | | | | | | | | | DB conversion: improve console output
| * | | | DB conversion: improve console outputSimon Spannagel2021-03-171-1/+4
| | |_|/ | |/| | | | | | | | | | Signed-off-by: Simon Spannagel <simonspa@kth.se>
* | | | Merge pull request #26161 from ↵Joas Schilling2021-03-171-0/+52
|\ \ \ \ | |/ / / |/| | | | | | | | | | | nextcloud/bugfix/noid/improve-matching-of-phonebook-searches Improve search results when only phonebook-matches can we autocompleted
| * | | Add missing index on the user columnJoas Schilling2021-03-171-0/+52
| |/ / | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* / / [tx-robot] updated from transifexNextcloud bot2021-03-172-0/+6
|/ /
* | [tx-robot] updated from transifexNextcloud bot2021-03-152-2/+2
| |
* | [tx-robot] updated from transifexNextcloud bot2021-03-146-4/+12
| |
* | [tx-robot] updated from transifexNextcloud bot2021-03-132-2/+4
| |
* | [tx-robot] updated from transifexNextcloud bot2021-03-122-6/+30
| |
* | Compile jsJohn Molakvoæ (skjnldsv)2021-03-1113-13/+13
| | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | Merge pull request #26031 from ↵Joas Schilling2021-03-111-0/+69
|\ \ | | | | | | | | | | | | nextcloud/feature/noid/allow-autocomplete-based-on-phone-sync Allow autocomplete based on phone sync
| * | Add a KnownUsers database with modelJoas Schilling2021-03-101-0/+69
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | [tx-robot] updated from transifexNextcloud bot2021-03-118-2/+98
| | |
* | | Bump css-loader from 5.0.1 to 5.1.1dependabot-preview[bot]2021-03-107-7/+7
|/ / | | | | | | | | | | | | | | | | | | Bumps [css-loader](https://github.com/webpack-contrib/css-loader) from 5.0.1 to 5.1.1. - [Release notes](https://github.com/webpack-contrib/css-loader/releases) - [Changelog](https://github.com/webpack-contrib/css-loader/blob/master/CHANGELOG.md) - [Commits](https://github.com/webpack-contrib/css-loader/compare/v5.0.1...v5.1.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
* | [tx-robot] updated from transifexNextcloud bot2021-03-1022-14/+36
| |
* | Merge pull request #25721 from nextcloud/do-not-target-vue-buttonsRoeland Jago Douma2021-03-091-8/+8
|\ \ | | | | | | Do not target vue buttons with server rules
| * | Do not target vue buttons with server rulesMarco Ambrosini2021-03-051-8/+8
| | | | | | | | | | | | Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
* | | Bump handlebars from 4.7.6 to 4.7.7dependabot-preview[bot]2021-03-096-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [handlebars](https://github.com/wycats/handlebars.js) from 4.7.6 to 4.7.7. - [Release notes](https://github.com/wycats/handlebars.js/releases) - [Changelog](https://github.com/handlebars-lang/handlebars.js/blob/master/release-notes.md) - [Commits](https://github.com/wycats/handlebars.js/compare/v4.7.6...v4.7.7) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
* | | [tx-robot] updated from transifexNextcloud bot2021-03-098-4/+102
| | |
* | | Allow admins to disable the login formRoeland Jago Douma2021-03-085-3/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | In case they want to not allow this because they use SSO (and do not want the users to enter their credentials there by accident). ?direct=1 still works. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | [tx-robot] updated from transifexNextcloud bot2021-03-088-6/+20
| | |
* | | [tx-robot] updated from transifexNextcloud bot2021-03-074-0/+14
| | |
* | | [tx-robot] updated from transifexNextcloud bot2021-03-066-68/+114
| | |
* | | Bump core-js from 3.8.3 to 3.9.1dependabot-preview[bot]2021-03-0520-20/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js) from 3.8.3 to 3.9.1. - [Release notes](https://github.com/zloirock/core-js/releases) - [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md) - [Commits](https://github.com/zloirock/core-js/commits/v3.9.1/packages/core-js) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com> Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | Merge pull request #25660 from hosting-de/feature/add-backend-list-groupsRoeland Jago Douma2021-03-053-5/+104
|\ \ \ | | | | | | | | Show group backends in occ group:list --info and group:info
| * | | Show group backends in occ group:list --info and group:infoJohannes Leuker2021-03-013-5/+104
| | | | | | | | | | | | | | | | Signed-off-by: Johannes Leuker <j.leuker@hosting.de>
* | | | [tx-robot] updated from transifexNextcloud bot2021-03-0512-8/+106
| | | |
* | | | [tx-robot] updated from transifexNextcloud bot2021-03-0414-18/+78
| | | |
* | | | Merge pull request #25890 from nextcloud/techdept/psalm/check_input_commandLukas Reschke2021-03-031-0/+5
|\ \ \ \ | | | | | | | | | | Check command input
| * | | | Check command inputRoeland Jago Douma2021-03-021-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For #25839 We should check this else it crashed hard. Better to be gracefull. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | | | Kill jstimezonedetect from bundleRoeland Jago Douma2021-03-0317-18/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Taking up space while it is not needed. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>