summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #33512 from nextcloud/enh/27869/detailsPytal2022-09-1512-90/+141
|\ | | | | Remake group and quota details section with Vue
| * Remake group and quota details section with VueChristopher Ng2022-09-1512-90/+141
| | | | | | | | Signed-off-by: Christopher Ng <chrng8@gmail.com>
* | Merge pull request #34101 from nextcloud/fix/dashboard-controller-typoPytal2022-09-151-6/+6
|\ \ | | | | | | Fix initial state typo in dashboard controller
| * | Fix initial state typo in dashboard controllerChristopher Ng2022-09-151-6/+6
| |/ | | | | | | Signed-off-by: Christopher Ng <chrng8@gmail.com>
* | Merge pull request #34098 from nextcloud/fix/test/updatenotificationsVincent Petry2022-09-151-19/+24
|\ \ | | | | | | Fix test update notification
| * | Fix test update notificationCarl Schwan2022-09-151-19/+24
| |/ | | | | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | Merge pull request #34072 from nextcloud/enh/noid/default-enabled-2Vincent Petry2022-09-1524-24/+79
|\ \ | | | | | | set defaultEnabled in shipped.json
| * | Increase timeout for apps managementVincent Petry2022-09-151-1/+1
| | | | | | | | | | | | Signed-off-by: Vincent Petry <vincent@nextcloud.com>
| * | fix phpdocMaxence Lange2022-09-151-2/+2
| | | | | | | | | Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
| * | set defaultEnabled in shipped.jsonMaxence Lange2022-09-1523-23/+78
| | | | | | | | | Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
* | | Merge pull request #33718 from nextcloud/seekable-http-fseek-endVincent Petry2022-09-154-21/+93
|\ \ \ | |_|/ |/| | fix using FSEEK_END with SeekableHttpStream to get file size
| * | fix using FSEEK_END with SeekableHttpStream to get file sizeRobin Appelman2022-09-154-21/+93
| | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | Merge pull request #34048 from nextcloud/feat/add-nodeFilter-to-user_migrationVincent Petry2022-09-151-1/+2
|\ \ \ | | | | | | | | Add a nodeFilter parameter for IExportDestination::copyFolder
| * | | Add a nodeFilter parameter for IExportDestination::copyFolderCôme Chilliet2022-09-131-1/+2
| | | | | | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | | | Merge pull request #33941 from nextcloud/fix/public-sharingCarl Schwan2022-09-153-4/+7
|\ \ \ \ | | | | | | | | | | Only normalize data in public shares and not crud
| * | | | Only normalize data in public shares and not crudCarl Schwan2022-09-083-4/+7
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | | | | Merge pull request #34009 from andrey-utkin/safe-config-updateCôme Chilliet2022-09-151-25/+29
|\ \ \ \ \ | | | | | | | | | | | | Make config file saving safe against write failures
| * | | | | Make config file saving safe against write failuresAndriy Utkin2022-09-091-25/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In case of disk space depletion, writing a new version of config fails, leaving the config file empty. This patch improves safety of updates to config.php by saving the new version of the config into a randomly-named temporary file in the same directory, and then renaming it to config.php, which renaming is atomic in POSIX-compliant filesystems and shouldn't involve disk space allocation. If writing the new config version is impossible, the current config remains unchanged. This patch drops the use of file locking as unnecessary. File locking merely established order in which the concurrent independent processes attempted file writing. In the end, the process which was last to update the file "wins" - their changes persist and the changes of previous writers are dropped as there's no conflict detection or change merging mechanism anyway. With the current change, there is still some resulting ordering, and the last writer still wins in the same way. Readers don't need file locking as well, as opening config.php for reading always provides a certain consistent version of the file. Signed-off-by: Andriy Utkin <dev@autkin.net>
* | | | | | Merge pull request #33947 from nextcloud/updatenotificaiton-cleanupVincent Petry2022-09-158-141/+117
|\ \ \ \ \ \ | | | | | | | | | | | | | | Cleanup updatenotification
| * | | | | | Cleanup updatenotificationCarl Schwan2022-09-158-141/+117
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Port away from jquery inside vue - Use modern vue components when possible - Fix some readability isssues particularly on dark theme - Use IInitialState - Use php7.4 Signed-off-by: Carl Schwan <carl@carlschwan.eu> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | | | | | | Merge pull request #33964 from nextcloud/search-limit-operatorsVincent Petry2022-09-152-25/+103
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | add a limit to the amount of operators a client can add to a search query
| * | | | | | | add test for search operator limitRobin Appelman2022-09-081-25/+76
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * | | | | | | add a limit to the amount of operators a client can add to a search queryRobin Appelman2022-09-081-0/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | | | | | Merge pull request #34060 from andyxheli/patch-5Vincent Petry2022-09-151-1/+11
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Fixed LDAP Copy Button Size
| * | | | | | | | Updated LDAP Copy ButtonAndy Xheli2022-09-131-1/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Andy Xheli <axheli@axtsolutions.com> Signed-off-by: Andy Xheli <axheli@axtsolutions.com>
* | | | | | | | | Merge pull request #34065 from nextcloud/bug/noid/main-scrollbarVincent Petry2022-09-153-3/+3
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Fix scrollbar apperance
| * | | | | | | | | server.scssdartcafe2022-09-151-1/+1
| | | | | | | | | |
| * | | | | | | | | Merge branch 'bug/noid/main-scrollbar' of ↵dartcafe2022-09-150-0/+0
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://github.com/nextcloud/server into pr-34065/nextcloud/bug/noid/main-scrollbar
| | * | | | | | | | | scss and compiledartcafe2022-09-151-1/+1
| | | | | | | | | | |
| | * | | | | | | | | Fix scrollbar apperanceRené Gieling2022-09-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fix #34064 Signed-off-by: René Gieling <github@dartcafe.de>
| * | | | | | | | | | scss and compiledartcafe2022-09-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: dartcafe <github@dartcafe.de>
| * | | | | | | | | | Fix scrollbar apperanceRené Gieling2022-09-151-1/+1
| |/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fix #34064 Signed-off-by: René Gieling <github@dartcafe.de> Signed-off-by: dartcafe <github@dartcafe.de>
* | | | | | | | | | Merge pull request #34067 from nextcloud/timm2k-patch-1Vincent Petry2022-09-153-1/+3
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Convert file_metadata.id from int(11) to bigint(20)
| * | | | | | | | | | Update Version24000Date20220404230027.phptimm2k2022-09-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: timm2k <timm2k@gmx.de>
| * | | | | | | | | | Update ConvertFilecacheBigInt.phptimm2k2022-09-141-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: timm2k <timm2k@gmx.de>
| * | | | | | | | | | Update CheckSetupController.phptimm2k2022-09-141-0/+1
| |/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | file_metadata.id needs to be bigint(20). Signed-off-by: timm2k <timm2k@gmx.de>
* | | | | | | | | | Merge pull request #33793 from nextcloud/fix/noid/rtrim-cloud-idMaxence Lange2022-09-151-2/+2
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | rtrim cloudId url earlier
| * | | | | | | | | | rtrim url earlierMaxence Lange2022-09-011-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
* | | | | | | | | | | Merge pull request #34035 from nextcloud/fix/do-not-log-warning-on-404Vincent Petry2022-09-151-6/+1
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|_|/ / |/| | | | | | | | | | Do not output a warning when a file is not found
| * | | | | | | | | | Do not output a warning when a file is not foundCôme Chilliet2022-09-121-6/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This would spam log with warnings from Desktop client doing HEAD on non-existing path to test them. Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | | | | | | | | | | Merge pull request #34081 from ↵Joas Schilling2022-09-1516-14/+179
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nextcloud/bugfix/noid/add-global-shortcuts-setting Add global setting to disable keyboad shortcuts
| * | | | | | | | | | Fix psalm parameter typeJoas Schilling2022-09-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | | | | | | | | Add an OCP method to check the shortcut state and use it for global search ↵Joas Schilling2022-09-159-9/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and menu control Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | | | | | | | | Add a global setting to disable keyboard shortcutsJoas Schilling2022-09-156-4/+127
|/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | | | | | | | Merge pull request #34084 from nextcloud/bundling-adjustments-25Vincent Petry2022-09-153-24/+38
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Adjust recommended apps page
| * | | | | | | | | | Adjust recommended apps pageVincent Petry2022-09-143-24/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removed collabora code. Added description for richdocuments as the name will be "Nextcloud Office" pulled from the app store. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
* | | | | | | | | | | [tx-robot] updated from transifexNextcloud bot2022-09-15300-506/+920
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | | | | | | | | Merge pull request #33733 from ↵Simon L2022-09-1551-225/+426
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nextcloud/change/appearance-accessibility-settings Move background settings from dashboard app to Appearance and accessibility settings
| * | | | | | | | | | | Move background settings from dashboard app to Appearance and accessibility ↵greta2022-09-1451-225/+426
|/ / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | settings Signed-off-by: greta <gretadoci@gmail.com> Signed-off-by: Christopher Ng <chrng8@gmail.com>
* | | | | | | | | | | Merge pull request #34044 from nextcloud/fix/password-confirmationPytal2022-09-1439-55/+255
|\ \ \ \ \ \ \ \ \ \ \