| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | | | |
| | | | |
| | | | |
| | | | | |
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Co-authored-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com>
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
It is not possible to drop and create the same table in one migration
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Use a backup table to copy the data, drop table and recreate it with
correct primary key, then copy the data back and drop the backup table.
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
|
|\ \ \ \
| |_|/ /
|/| | | |
|
| |/ /
| | |
| | |
| | | |
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
|
|\ \ \
| |/ /
|/| | |
[stable23] Fix idn emails not working in shares
|
|/ /
| |
| |
| |
| |
| |
| |
| | |
And add check before sending email that email address is valid
Fix #30595
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
|
|\ \
| | |
| | | |
[stable23] Properly abort uploads
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Whenever an error occurs, also hide the progress bar.
The logic was also adjusted to properly detect uploads that are pending
deletion, in which case the progress bar can already be hidden.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| | |
Add a new approach for flagging an upload as aborted because we can't
rely on the browser fully cancelling the request as we now seem to
receive an error response from the server instead of a jQuery "abort"
message.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
|
|\ \
| | |
| | | |
[stable23] Trigger "changeDirectory" event on URL change
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
When using the browser back button or clicking on sections on the left
sidebar (like favorites), the "changeDirectory" jQuery event did not get
called, so apps like recommendations would not notice the directory
change.
This fixes the issue by also setting changeUrl to true when the file
list's directory got changed as a result from a URL change.
Added optional changedThroughUrl argument to make sure the event
recipient knows if the change was done through a URL change and make it
possible prevent a loop in the onDirectoryChange handler that actually
changes the URL when the origin was already from a URL change.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
|
|\ \ \
| |/ /
|/| | |
[stable23] Reset job disabling timer on adding the job again
|
| | |
| | |
| | |
| | | |
Signed-off-by: Julius Härtl <jus@bitgrid.net>
|
|\ \ \
| | | |
| | | | |
[stable23] Fix RequestURL check for cli commands
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Fix https://github.com/nextcloud/files_automatedtagging/issues/526
Fix https://github.com/nextcloud/groupfolders/issues/1855
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
|
|\ \ \ \
| | | | |
| | | | | |
[stable23] Fix undefined/unset scope in account properties
|
| | | | |
| | | | |
| | | | |
| | | | | |
Signed-off-by: Joas Schilling <coding@schilljs.com>
|
| |/ / /
| | | |
| | | |
| | | | |
Signed-off-by: Joas Schilling <coding@schilljs.com>
|
|\ \ \ \
| |_|/ /
|/| | | |
[stable23] Set the file's mtime from the headers in bulk upload
|
|/ / /
| | |
| | |
| | | |
Signed-off-by: Louis Chemineau <louis@chmn.me>
|
|\ \ \
| |/ /
|/| | |
[stable23] Prevent loading images that would require too much memory.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
For most image formats, the header specifies the width/height.
PHP allocates an image object from that size, even if the actual
image data is much smaller. This image object size is not limited
by the limit configured in PHP.
The memory limit can be configured through "config.php" setting
"preview_max_memory" and defaults to 128 MBytes which should be
enough for most images without filling up all memory.
Signed-off-by: Joachim Bauch <bauch@struktur.de>
|
|\ \ \
| |/ /
|/| | |
[stable23] Avoid zero division in setup checks
|
| | |
| | |
| | |
| | |
| | |
| | | |
Fixes: https://github.com/nextcloud/server/issues/30532
Signed-off-by: MichaIng <micha@dietpi.com>
|
|\ \ \
| |/ /
|/| | |
[stable23] fix: only use jquery once it is available
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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>
|
|\ \ \
| |/ /
|/| | |
[stable23] Fix fail when keys/files folder already exists
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Fixes an issue with transfer ownership in move mode where the folder
"files_encryption/keys/files" already exists.
Instead of failing, its existence is checked before calling mkdir.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
|
|\ \
| | |
| | | |
[stable23] Use npm ci when running JS tests
|
| | |
| | |
| | |
| | | |
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Prevent XHR during load by checking window.TESTING.
Adjust some expected values.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
|
|/ /
| |
| |
| |
| |
| |
| | |
This makes sure that the pinned versions are selected correctly.
Fixes the colors.js incident.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
|
|\ \ |
|
|/ /
| |
| |
| |
| |
| |
| |
| | |
When remoteIsOwnCloud trows LocalServerException, the storage is
unavailable and instead of crashing the scanner, ignore the specific
storage.
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
|
|\ \
| | |
| | | |
[stable23] update CRL after revocation of sharerenamer.crt
|
| | |
| | |
| | |
| | | |
Signed-off-by: Vitor Mattos <vitor@php.rio>
|
|\ \ \ |
|
| |/ /
| | |
| | |
| | | |
Signed-off-by: Christopher Ng <chrng8@gmail.com>
|
|\ \ \
| |/ /
|/| | |
|
| | |
| | |
| | |
| | | |
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
|
|\ \ \
| | | |
| | | | |
[stable23] Fix passing on the parameter
|
|/ / /
| | |
| | |
| | | |
Signed-off-by: Joas Schilling <coding@schilljs.com>
|
|\ \ \
| | | |
| | | | |
[stable23] Run migrations fully when reenabling an app
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Joas Schilling <coding@schilljs.com>
|
|\ \ \ \ |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
|