Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
AgeCommit message (Collapse)Author
2022-06-17Merge pull request #32874 from bill-mcgonigle/patch-1Simon L
Mention missing files subdir
2022-06-17[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-16[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-15Merge pull request #32876 from nextcloud/fix/fix-string-interpolationblizzz
Use {$var} instead of ${var} for PHP 8.2 compatibility
2022-06-15Merge pull request #32878 from ↵blizzz
nextcloud/fix-default-toast-message-for-failed-uploads-with-http2 Fix default toast message for failed uploads with HTTP/2
2022-06-15Update tests after ResetTokenBackgroundJob changesThomas Citharel
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-06-15Use OCP version of TimedJob instead of OC for ResetTokenBackgroundJobThomas Citharel
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-06-15Make sure ResetTokenBackgroundJob doesn't execute if config is read-onlyThomas Citharel
No need to try to delete the config key in config.php if we aren't allowed to. Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-06-15[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-14Fix default toast message for failed uploads with HTTP/2fix-default-toast-message-for-failed-uploads-with-http2Daniel Calviño Sánchez
When an upload fails a toast is shown with either a specific message or just the textual part of the HTTP error code (which comes from the upload failure handler and set by "jQuery.ajax()". However, if there is neither a message nor an error then the toast will show the default message from the Toastify-js library, which is an undescriptive "Hi there!". When HTTP/2 is used Chromium does not provide the textual part of the HTTP error code, so when an upload fails the toast can receive an empty message and thus just show "Hi there!". Now an explicit message is provided as a fallback to prevent that. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2022-06-14Use {$var} instead of ${var} for PHP 8.2 compatibilityfix/fix-string-interpolationCôme Chilliet
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-06-14Handle the move operation properly between shared calendarsThomas Citharel
- Introduce a new CalendarObjectMovedEvent typed event dedicated for this operation - Handle the event in the activity backend and add new appropriate activity subjects Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-06-14Mention missing files subdirBill McGonigle
Many users are getting confused by the inaccurate error message "Home storage for user $user not writable" because the storage *is* writable. The actual issue is a missing files/ subdirectory. cf. https://help.nextcloud.com/t/home-storage-for-user-not-writable/10831/7 By mentioning the possible cause in the error message, users are going to be able to rapidly solve their problem rather than bang their heads against the screen, Google, and eventually forums to find out that the error message is wrong in their case. Yes, it would be better to detect and precisely describe the fault, or fix the problem automatically, but until then, be kind to the users for the next however many years.
2022-06-14[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-13Correctly log failed attemptsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-06-13Merge pull request #31345 from nextcloud/fix/31164/delete-additional-emailVincent Petry
Fix deletion of additional emails
2022-06-13[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-12[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-11[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-10Use unique key to prevent email component reusefix/31164/delete-additional-emailChristopher Ng
Signed-off-by: Christopher Ng <chrng8@gmail.com>
2022-06-10Merge pull request #30368 from nextcloud/dav-allow-object-propertiesVincent Petry
Allow DAV Object properties
2022-06-10Merge pull request #31029 from nextcloud/expose-extra-emails-in-davVincent Petry
Expose additional emails in {DAV:}alternate-URI-set
2022-06-10Merge pull request #31622 from ↵Vincent Petry
nextcloud/increase-loglevel-modernize-refresh-webcal Increase loglevel of Webcal parsing errors and modernize code
2022-06-10Merge pull request #31771 from nextcloud/fix/hook-encryption-cronVincent Petry
Fix hook encryption with cron job
2022-06-10Merge pull request #32059 from cld4h/patch-1Vincent Petry
Fix issue #31692 of occ files:scan
2022-06-10Merge pull request #32361 from nextcloud/dav-scheduling-default-calendarVincent Petry
Put calendar invites into the user's first available calendar
2022-06-10Merge pull request #32364 from nextcloud/dav-listenersVincent Petry
🧹 Remove all legacy event dispatchers from CalDAV & CardDAV backends
2022-06-10Merge pull request #32741 from nextcloud/Valdnet-patch-2Joas Schilling
l10n: Delete apostrophe
2022-06-10Merge pull request #32806 from nextcloud/fix-federated-sharingVincent Petry
Revert "Remove inefficient fed share scanner"
2022-06-10Merge pull request #32737 from nextcloud/fix/remove-at-matcher-in-settings-testsVincent Petry
Remove deprecated at() matcher from settings tests
2022-06-10Merge pull request #32799 from ↵Vincent Petry
nextcloud/bugfix/noid/fix-exception-handling-when-profile-data-is-too-long Fix exception handling when profile data is too long
2022-06-10Merge pull request #32800 from ↵Vincent Petry
nextcloud/bugfix/noid/no-fatal-for-maintenance-mode Don't spam the log with fatals when maintenance mode is enabled or an…
2022-06-10Revert "Remove inefficient fed share scanner"Carl Schwan
This reverts commit ce319143142e2ee998ef4794b04ad684c4ffa911. Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-06-10Add tests for OCA\DAV\CardDAV\Activity\Backend (adapted from CalDAV)Thomas Citharel
And test that the system addressbook will never generate activity events Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-06-10Avoid creating carddav activities for the system userThomas Citharel
Because of the system addressbook synchronisation. Closes #32803 Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-06-10[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-10Don't spam the log with fatals when maintenance mode is enabled or an ↵bugfix/noid/no-fatal-for-maintenance-modeJoas Schilling
upgrade has to be done Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-06-09Fix exception handling when profile data is too longbugfix/noid/fix-exception-handling-when-profile-data-is-too-longJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-06-09Merge pull request #32675 from nextcloud/fix/validate-dashboard-backgroundPytal
2022-06-09[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-08Various improvements related to the recent implementation of temporary passwordsCyrille Bollu
for mail shares: 1- Changes style of "forgot password?" and "Back" button 2- Adds information about share password's expiration time in the emails sent. 3- Shows password expiration time in the Share menu 4- Fixes an issue when the message "Password expires..." would be shown for non email share types (which don't have temporary passswords) 5- At share's creation, password should only be sent when it's a permanent one See also https://github.com/nextcloud/server/issues/31952 Signed-off-by: Cyrille Bollu <cyrpub@bollu.be> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-06-08Merge pull request #32744 from nextcloud/bugfix/noid/easier-federation-debuggingJoas Schilling
Always log errors from sending federation api requests to ease debugging
2022-06-08[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-07Always log errors from sending federation api requests to ease debuggingbugfix/noid/easier-federation-debuggingJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-06-07Fix unit testsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-06-07Fix hook encryption with cron jobfix/hook-encryption-cronCarl Schwan
Make sure the setup fs is set before using the Update service Fix #29674 Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-06-07l10n: Delete apostropheValdnet
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
2022-06-07Remove deprecated at() matcher from settings testsfix/remove-at-matcher-in-settings-testsCôme Chilliet
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-06-07[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-06[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>