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-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-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>
2022-06-05[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-04[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-03l10n: Fix escaping issuerakekniven
At Transifex the string is cut and shown `For the server to work properly, it` I modified this without vue knowledge. @CarlSchwan Can you check please? Reported at Transifex. Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-06-03Merge pull request #32620 from nextcloud/bugfix/noid/reset-status-on-clearAtJoas Schilling
Also reset the status on clearAt
2022-06-03Merge pull request #32716 from nextcloud/Valdnet-patch-2Valdnet
l10n: Change to a capital letter
2022-06-03Merge pull request #32715 from nextcloud/enh/direct-editing-capabilitiesJohn Molakvoæ
Only load direct editing capabilities when required
2022-06-03l10n: Change to a capital letterValdnet
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
2022-06-03Only load direct editing capabilities when requiredJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2022-06-03[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-02Merge pull request #32570 from ↵Côme Chilliet
nextcloud/fix/remove-at-matcher-in-federatedfilesharing-tests Remove at() matcher from tests in federatedfilesharing
2022-06-02Merge pull request #28703 from nextcloud/enhancement/caldav-reminders-loggingChristoph Wurst
Debug log what happens during reminders processing
2022-06-02Merge pull request #32696 from nextcloud/fix/use-image-from-ocpblizzz
Use Image class from public API