summaryrefslogtreecommitdiffstats
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2022-01-272-0/+2
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-01-262-0/+8
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-01-246-0/+22
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-01-234-2/+28
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-01-2210-0/+20
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #30787 from nextcloud/fix-backport/30470/stable21v21.0.8rc3John Molakvoæ2022-01-211-1/+1
|\
| * Fix method for 21Joas Schilling2022-01-201-1/+1
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * Add hashed attribute column for indexed job existence checkJulius Härtl2022-01-201-0/+67
| | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * Revert "[stable21] Hash job argument"John Molakvoæ2022-01-201-67/+0
| |
* | [tx-robot] updated from transifexNextcloud bot2022-01-2146-92/+20
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-01-202-0/+2
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #30749 from nextcloud/backport/30615/stable21John Molakvoæ2022-01-1923-66/+111
|\
| * Improve installation pagesChristopher Ng2022-01-1923-66/+111
| | | | | | | | | | | | Signed-off-by: Christopher Ng <chrng8@gmail.com> (cherry picked from commit 22768769c3f29f9952110f86a032e4bf3a4bf460) Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | [tx-robot] updated from transifexNextcloud bot2022-01-198-0/+16
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Add hashed attribute column for indexed job existence checkJulius Härtl2022-01-181-0/+67
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* [tx-robot] updated from transifexNextcloud bot2022-01-18136-528/+534
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-01-172-4/+4
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-01-162-0/+4
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #30677 from nextcloud/backport/stable21/30597John Molakvoæ2022-01-145-4/+14
|\
| * Fix file picker not respecting hidden files settingsCarl Schwan2022-01-145-4/+14
| | | | | | | | | | | | | | | | | | This will only respect the setting inside the file app. For other apps we will either need to do an API call or add an input field with the same idea to spare a blocking api call. Signed-off-by: Carl Schwan <carl@carlschwan.eu> (cherry picked from commit 1fa58be1aa78ff6216b7a129925a7bb270ac9fe1)
* | Add version of disabled apps when availableJoas Schilling2022-01-141-2/+2
|/ | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* add better index for finding unindexed pathsRobin Appelman2022-01-133-0/+12
| | | | | | | | | | for the following query 'SELECT "path" FROM "oc_filecache" WHERE ("storage" = $storage) AND ("size" < 0) ORDER BY "fileid" DESC LIMIT 1;' currently the database will in some cases decide to priorize the sort by fileid over the filter when picking what index to use, resulting in a much slower query. by creating an index that allows first sorting by fileid and also filter by storage and size this case will be greatly sped up Signed-off-by: Robin Appelman <robin@icewind.nl>
* [tx-robot] updated from transifexNextcloud bot2022-01-132-0/+4
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-01-122-0/+28
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #30590 from nextcloud/backport/30571/stable21Louis2022-01-111-10/+11
|\ | | | | [stable21] fix: only use jquery once it is available
| * fix: only use jquery once it is availableAzul2022-01-111-10/+11
| | | | | | | | | | | | | | | | publicpage.js is loaded very early and cannot rely on jquery being loaded already. Move the use of `$` into the `DomContentLoaded` handler. Signed-off-by: Azul <azul@riseup.net>
* | Merge pull request #30583 from nextcloud/bugfix/noid/npm-ci-for-karma/stable21Vincent Petry2022-01-112-6/+11
|\ \ | |/ |/| [stable21] Use npm ci when running JS tests
| * Fix JS tests after test lib updatesVincent Petry2022-01-102-6/+11
| | | | | | | | | | | | | | Prevent XHR during load by checking window.TESTING. Adjust some expected values. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2022-01-114-2/+6
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-01-102-0/+2
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #29325 from nextcloud/backport/28541/stable21John Molakvoæ2022-01-073-0/+17
|\
| * disable path prefix index on postgresql for nowRobin Appelman2021-10-213-3/+8
| | | | | | | | | | | | | | having the index work properly for the queries we need it for requires some additional options which dbal does not support at the momement. to prevent making it harder to add the correct index later on we don't create the index for now on postgresql Signed-off-by: Robin Appelman <robin@icewind.nl>
| * add a prefix index to filecache.pathRobin Appelman2021-10-213-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 bot2022-01-034-2/+4
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Merge pull request #30435 from nextcloud/backport/30392/stable21MichaIng2021-12-313-0/+17
|\ \ | | | | | | [stable21] Add missing index for propertypath only queries of DAV properties
| * | Add missing index for propertypath only queries against propertiesChristoph Wurst2021-12-293-0/+17
| | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | [tx-robot] updated from transifexNextcloud bot2021-12-302-0/+20
|/ / | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2021-12-282-2/+2
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2021-12-252-2/+2
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2021-12-242-0/+2
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2021-12-232-0/+8
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2021-12-228-2/+8
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2021-12-2116-0/+22
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Merge pull request #30251 from nextcloud/backport/30193/stable21MichaIng2021-12-201-1/+1
|\ \ | | | | | | [stable21] Fix setting up 2FA when no providers are set up but backup codes
| * | Fix setting up 2FA when no providers are set up but backup codesChristoph Wurst2021-12-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2FA set up is allowed when only backup codes are set up but no other provider and no provider is failing. This patch syncs up the login controller check with the challenge controller check 10 lines above. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | [tx-robot] updated from transifexNextcloud bot2021-12-2056-168/+168
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2021-12-174-0/+58
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2021-12-164-14/+22
|/ / | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2021-12-112-0/+4
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Use correct icon for dir-external-rootVincent Petry2021-12-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | When an external storage mount is shared with circles, it triggers the share icon state to be rerendered. The picking of the mime type icon would use the regular file icon because there is no actual icon for "dir-external-root" that is shared. This fixes the logic to use the "folder-external" icon in such scenarios. Signed-off-by: Vincent Petry <vincent@nextcloud.com>