| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
|
|\
| |
| | |
Add check config.php for ffmpeg_path in PreviewManager.php. fix for snap no video preview
|
| |
| |
| |
| |
| |
| | |
fix lint issue
Co-authored-by: Simon L. <szaimen@e.mail.de>
Signed-off-by: William <william.hak57@gmail.com>
|
| |
| |
| |
| |
| |
| | |
add better description
Co-authored-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com>
Signed-off-by: William <william.hak57@gmail.com>
|
| |\
| | |
| | | |
add documentation preview_ffmpeg_path
|
| | |
| | |
| | |
| | |
| | |
| | | |
add preview_ffmpeg_path documentation.
document custom path for ffmpeg so it can be used by the previewprovider to create video previews with the snap package of nextcloud.
Signed-off-by: William <william.hak57@gmail.com>
|
| |\| |
|
| | |
| | |
| | |
| | |
| | |
| | | |
add a check in config.php for a configured movieBinary path.
so now it first checks in config.php if preview_ffmpeg_path is configured.
Signed-off-by: William <william.hak57@gmail.com>
|
|\ \ \
| | | |
| | | | |
fix(dav): catch MaxInstancesExceededException for recurring events without end date
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
end date
Ref https://github.com/nextcloud/calendar/issues/4811
Signed-off-by: Anna Larch <anna@nextcloud.com>
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
nextcloud/fix/correction-35886-Replace_custom_tooltips_with_native_one_for_personal_and_administration_settings
Correct title for button on federation actions button
|
| |/ /
| | |
| | |
| | | |
Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
|
|\ \ \
| |_|/
|/| |
| | |
| | | |
cyclops8456/feature/24301-remove-can-install-on-occ-maintenance-install
Remove the CAN_INSTALL file when occ maintenance:install is complete
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Rename canInstallExists to shouldRemoveCanInstallFile to cover removal of this file for non-git channels and logging any failure to remove it.
Add new method to detect if this file exists during web based installation.
Signed-off-by: Alex Harpin <development@landsofshadow.co.uk>
|
| | |
| | |
| | |
| | |
| | |
| | | |
Log a warning for the CLI install command if the CAN_INSTALL file still exists at the end of the installation. This matches the warning logged by the web installer.
Signed-off-by: Alex Harpin <development@landsofshadow.co.uk>
|
| | |
| | |
| | |
| | |
| | |
| | | |
Move the check for the CAN_INSTALL file in the config directory to a method in the Setup class and remove the call to unlink from the SetupController as this in now handled in the Setup class.
Signed-off-by: Alex Harpin <development@landsofshadow.co.uk>
|
| | |
| | |
| | |
| | |
| | |
| | | |
When occ maintenance:install is run from the CLI, the CAN_INSTALL in the config directory is left in place when installed is set to true, whereas this file is removed when the web installer is used. Removing this file in the CLI command maintains consistency between the two. This allows automation tools an easier way to determine if this process has been completed.
Signed-off-by: Alex Harpin <development@landsofshadow.co.uk>
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
nextcloud/bugfix/noid/fix-settings-section-icon-color
fix(search): Fix settings section icon color
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Joas Schilling <coding@schilljs.com>
|
|\ \ \ \
| | | | |
| | | | | |
Use current git branch by default when setting up cypress container
|
|/ / / /
| | | |
| | | |
| | | | |
Signed-off-by: Louis Chemineau <louis@chmn.me>
|
|\ \ \ \
| |_|_|/
|/| | |
| | | |
| | | | |
nextcloud/feat/inject-controller-services-into-methods
Inject services into controller methods
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Usually Nextcloud DI goes through constructor injection. This has the
implication that each instance of a class builds the full DI tree. That
is the injected services, their services, etc. Occasionally there is a
service that is only needed for one controller method. Then the DI tree
is build regardless if used or not.
If services are injected into the method, we only build the DI tree if
that method gets executed.
This is also how Laravel allows injection.
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
nextcloud/fix/login-csrf-not-logged-in-clear-cookies
Fix login loop if login CSRF fails and user is not logged in
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
If CSRF fails but the user is logged in that they probably logged in in
another tab. This is fine. We can just redirect.
If CSRF fails and the user is also not logged in then something is
fishy. E.g. because Nextcloud contantly regenrates the session and the
CSRF token and the user is stuck in an endless login loop.
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
|
|\ \ \ \
| |/ / /
|/| | |
| | | |
| | | | |
nextcloud/automated/noid/master-update-psalm-baseline
[master] Update psalm-baseline.xml
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: GitHub <noreply@github.com>
|
|\ \ \ \
| | | | |
| | | | | |
chore: drop dependency php-ds
|
| | |/ /
| |/| |
| | | |
| | | |
| | | |
| | | |
| | | | |
The dependency is not used.
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Signed-off-by: Joas Schilling <coding@schilljs.com>
|
|\ \ \ \
| |/ / /
|/| | | |
feat(files): Quota in navigation
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
|
|\ \ \ \
| |_|/ /
|/| | | |
Fix failed revert for #35071
|
| |/ /
| | |
| | |
| | | |
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
|
|\ \ \
| | | |
| | | | |
chore(3rdparty): Bump guzzlehttp/guzzle from 7.2.0 to 7.5.0 and egulias/email-validator from 3.2.1 to 3.2.5
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
egulias/email-validator from 3.2.1 to 3.2.5
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
|
|\ \ \ \
| |_|/ /
|/| | |
| | | |
| | | | |
nextcloud/fix/php82/declare-symfony-console-application-property
fix(PHP8.2): Declare Symfony Application property in console application
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
|
| |/ /
|/| |
| | |
| | | |
This reverts commit bba5ab0532bcf71dc421fd15efd890cd25bdc8d3.
|
| | |
| | |
| | |
| | | |
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
nextcloud/bugfix/noid/user-info-api-exclude-storage
Only expose storage location to admins
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com>
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
nextcloud/techdebt/noid/improve-share-pw-generation
Improve password generation for link shares
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Use web crypto when generating password for link shares
whenever the password policy app is disabled.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
nextcloud/bugfix/36153/fix-sharemount-cache-key-include-target
still include the share target in the cache key for validating share mount
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Signed-off-by: Robin Appelman <robin@icewind.nl>
|
|\ \ \ \ \ \
| |_|_|_|/ /
|/| | | | | |
Improve saving applicable users in ext storage
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Added a checkbox to prevent saving "All users" by mistake and giving
access to everyone when not wanted.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
|
|\ \ \ \ \ \
| |_|_|/ / /
|/| | | | | |
Ext storage configs default value support + enable SSL by default
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
|