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-21Remove .php from urlgetstoragestat-change-urlCarl Schwan
Probably here for legacy reasons, but it is a bit weird to call an .php endpoint that doesn't correspond to a .php file Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-06-21Merge pull request #32902 from nextcloud/enh/noid/opcache-buffer-size-limitSimon L
do not display the buffer_size info if the size is already set to a c…
2022-06-21Merge pull request #32948 from nextcloud/dashboardFixSimon L
make 'text-overflow: ellipsis' possible again in dashboard
2022-06-21Merge pull request #32861 from ↵Carl Schwan
nextcloud/fix/remove-at-matcher-in-user_ldap-tests Remove deprecated at() matcher from user_ldap tests
2022-06-21Merge pull request #32900 from nextcloud/fix/remove-at-matcher-in-theming-testsCôme Chilliet
Remove at matcher in theming tests
2022-06-21make 'text-overflow: ellipsis' possible again in dashboardArtur Neumann
Signed-off-by: Artur Neumann <artur@jankaritech.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-06-21[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-20Merge pull request #32881 from nextcloud/Valdnet-patch-2rakekniven
l10n: Spelling unification
2022-06-20Merge pull request #32719 from nextcloud/fix/noid/email-shares-not-shownRichard Steinmetz
Fix email shares not being shown to other users
2022-06-20Merge pull request #32910 from nextcloud/fix/profiler-invalid-utf8blizzz
Fix profiler trying to serialize invalid utf8
2022-06-20Fix profiler trying to serialize invalid utf8Carl Schwan
The cookie value contains invalid utf8 characters most of the time so let's just ignore it as it is also not that interesting to analyse. Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-06-20Remove deprecated expectException from theming testsfix/remove-at-matcher-in-theming-testsCôme Chilliet
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-06-20[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-19[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-18[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-17do not display the buffer_size info if the size is already set to a certain ↵enh/noid/opcache-buffer-size-limitszaimen
threshold Signed-off-by: szaimen <szaimen@e.mail.de> Co-Authored-By: MichaIng <micha@dietpi.com>
2022-06-17Fix email shares not being shown to other usersfix/noid/email-shares-not-shownRichard Steinmetz
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
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-16Remove deprecated at matcher from theming testsCôme Chilliet
Signed-off-by: Côme Chilliet <come.chilliet@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-15Spelling unificationValdnet
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
2022-06-15l10n: Spelling unificationValdnet
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
2022-06-15l10n: Spelling unificationValdnet
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
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-14Remove bogus expects from user_ldap testsfix/remove-at-matcher-in-user_ldap-testsCôme Chilliet
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.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-13Remove deprecated at() matcher from user_ldap testsCôme Chilliet
Signed-off-by: Côme Chilliet <come.chilliet@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