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-03-02Add warning to the userbackport/31354/stable22Carl Schwan
Signed-off-by: Carl Schwan <carl@carlschwan.eu> Co-authored-by: MichaIng <micha@dietpi.com> Co-authored-by: zroebg <carlos@reendex.com>
2022-03-02Merge pull request #31256 from nextcloud/backport/31143/stable22Vincent Petry
[stable22] Don't redirect when loading files index page
2022-03-02[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-28[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-27[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-26[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-25[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-24[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-23[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-22Merge pull request #31307 from nextcloud/backport/31299/stable22blizzz
[stable22] Ignore cache in occ ldap:check-ldap command
2022-02-22Merge pull request #31119 from nextcloud/backport/31079/stable22John Molakvoæ
2022-02-22[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-22Redirection now only happens when dir is emptybackport/31143/stable22Carl Schwan
Otherwise dir it's just ignored and fileid is used Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-02-21Check LDAP upon user deletion instead of refusing based on cached informationCôme Chilliet
This should avoid having to wait for background job to run after deleting a user in LDAP before being able to delete it in Nextcloud. Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-02-21Ignore cache in occ ldap:check-ldap commandCôme Chilliet
This avoids having to wait or reset the cache after deleting a user in the LDAP. This also fixes a PHP error when running ldap:check-ldap --update on a deleted but cached user. Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-02-21Merge pull request #31025 from ↵Louis
nextcloud/dependabot/npm_and_yarn/stable22/clipboard-2.0.10 [stable22] Bump clipboard from 2.0.9 to 2.0.10
2022-02-21[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-20[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-20Bump clipboard from 2.0.9 to 2.0.10dependabot[bot]
Bumps [clipboard](https://github.com/zenorocha/clipboard.js) from 2.0.9 to 2.0.10. - [Release notes](https://github.com/zenorocha/clipboard.js/releases) - [Commits](https://github.com/zenorocha/clipboard.js/compare/v2.0.9...v2.0.10) --- updated-dependencies: - dependency-name: clipboard dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-02-19[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-18Merge pull request #31254 from nextcloud/backport/31169/stable22Simon L
[stable22] hide download button for images
2022-02-18Merge pull request #31051 from nextcloud/backport/30995/stable22Vincent Petry
[stable22] Fix bugs with incorrect currentFileList in the favorite and share by you view
2022-02-18Don't redirect when loading files index pageCarl Schwan
Currently we are redirecting from ?dir=/&fileid=2 to ?dir=/. This is an issue because we then need to load two pages with full file system setup and authentification instead of one and the assets won't start loading until the second page is delivered to the user. Additionally when loading ?dir=/, we then change the url back to ?dir=/&fileid=2 (without reload) so that the next time we load the page again we do the same thing again. Depending on the speed of the server and internet connection we can save 100ms to 400ms, improving the user experience. Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-02-18hide download button for imagesszaimen
Signed-off-by: szaimen <szaimen@e.mail.de>
2022-02-18Merge pull request #30851 from nextcloud/backport/30763/stable22Joas Schilling
[stable22] Allow writing audit log to syslog and systemdlog
2022-02-17Ignore contact interaction with selfThomas Citharel
No need to insert ourselves as a recent contact Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-02-17Don't provide favorite activity settingsJoas Schilling
Since mails and notifications are only available for actions of other users it does not make sense to allow changing this. It also prevents the common misunderstanding with "file was changed inside a favorited folder" Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-02-17[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-16Allow write audit log to syslog and systemdlogJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-02-16fix overlapping buttons in apps-managementszaimen
Signed-off-by: szaimen <szaimen@e.mail.de> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-02-16Merge pull request #31203 from nextcloud/backport/31097/stable22Louis
[stable22] Fix path handling when transferring incoming shares
2022-02-16Merge pull request #31185 from nextcloud/backport/31170/stable22Louis
[stable22] fix a broken tooltip
2022-02-16Fix path handling when transferring incoming sharesVincent Petry
When transferring incoming shares from a guest user without specifying a path, the $path is empty. The fix properly handles that situation to avoid looking for shares in a path with doubled slashes which failed to find shares to transfer. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2022-02-16[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-16try to fix broken tooltipszaimen
Signed-off-by: szaimen <szaimen@e.mail.de>
2022-02-15[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-14[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-13[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-12[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-11Merge pull request #31114 from nextcloud/backport/31077/stable22Vincent Petry
[stable22] Revert the 'broken' public page changes
2022-02-11Revert "Add non-breaking space in the file size"szaimen
Signed-off-by: szaimen <szaimen@e.mail.de>
2022-02-10Setup warning for invalid LDAP user or group UUIDs.Arthur Schiwon
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2022-02-10Fix psalm errors in apps/user_ldap/lib/Jobs/CleanUp.phpCôme Chilliet
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-02-10Fix ldap:update-uuidCôme Chilliet
Generators cannot be iterated with while or returned by an other generator, using foreach instead. And a few other problems. Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-02-10add occ command to update UUIDs (incomplete)Arthur Schiwon
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2022-02-10allow to re-run migration step when backup DB is already createdArthur Schiwon
- to heal incomplete states from broken upgrades Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2022-02-10invalidated duplicated UUIDs prior to migration changeArthur Schiwon
- in a proper setup there are no duplicated UUIDs - not all setups are proper - log warning to admin Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2022-02-10Merge pull request #31013 from nextcloud/backport/30114/stable22Vincent Petry
[stable22] Prevent writing invalid mtime
2022-02-10[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-09[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>