]> source.dussan.org Git - nextcloud-server.git/log
nextcloud-server.git
3 years agoRemove trash items from other trash backends when deleting all 26040/head
Julius Härtl [Wed, 3 Mar 2021 13:26:35 +0000 (14:26 +0100)]
Remove trash items from other trash backends when deleting all

Signed-off-by: Julius Härtl <jus@bitgrid.net>
3 years ago[tx-robot] updated from transifex
Nextcloud bot [Wed, 10 Mar 2021 02:23:17 +0000 (02:23 +0000)]
[tx-robot] updated from transifex

3 years agoMerge pull request #25938 from nextcloud/backport/25927/stable20
Roeland Jago Douma [Tue, 9 Mar 2021 19:20:49 +0000 (20:20 +0100)]
Merge pull request #25938 from nextcloud/backport/25927/stable20

[stable20] Sharebymail: set expiration on creation

3 years agoMerge pull request #25994 from nextcloud/backport/25975/stable20
Roeland Jago Douma [Tue, 9 Mar 2021 08:34:25 +0000 (09:34 +0100)]
Merge pull request #25994 from nextcloud/backport/25975/stable20

[stable20] Add missing waits and asserts in acceptance tests

3 years ago[tx-robot] updated from transifex
Nextcloud bot [Tue, 9 Mar 2021 02:24:13 +0000 (02:24 +0000)]
[tx-robot] updated from transifex

3 years agoMerge pull request #26009 from nextcloud/dependabot/npm_and_yarn/stable20/elliptic...
Roeland Jago Douma [Mon, 8 Mar 2021 18:37:51 +0000 (19:37 +0100)]
Merge pull request #26009 from nextcloud/dependabot/npm_and_yarn/stable20/elliptic-6.5.4

[Security] Bump elliptic from 6.5.3 to 6.5.4

3 years ago[Security] Bump elliptic from 6.5.3 to 6.5.4 26009/head
dependabot-preview[bot] [Mon, 8 Mar 2021 16:52:54 +0000 (16:52 +0000)]
[Security] Bump elliptic from 6.5.3 to 6.5.4

Bumps [elliptic](https://github.com/indutny/elliptic) from 6.5.3 to 6.5.4. **This update includes a security fix.**
- [Release notes](https://github.com/indutny/elliptic/releases)
- [Commits](https://github.com/indutny/elliptic/compare/v6.5.3...v6.5.4)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
3 years agoFind directly the label instead of falling back to it 25994/head
Daniel Calviño Sánchez [Fri, 5 Mar 2021 21:02:46 +0000 (22:02 +0100)]
Find directly the label instead of falling back to it

The input element is always hidden, so the check always ended falling
back to the label. Moreover, the label is the element that the user
interacts with, so it must be the one used.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
3 years agoAssert also element visibility instead of just finding it
Daniel Calviño Sánchez [Fri, 5 Mar 2021 21:00:22 +0000 (22:00 +0100)]
Assert also element visibility instead of just finding it

Although if the element could not be found an exception would be thrown
and the test aborted if an element is in the DOM but hidden it would be
found and the test would pass.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
3 years agoAdd explicit locator for "Enable all" bundle button
Daniel Calviño Sánchez [Fri, 5 Mar 2021 20:57:47 +0000 (21:57 +0100)]
Add explicit locator for "Enable all" bundle button

Instead of looking for the bundle button and then checking its value now
the expected value is included in the locator and the button is checked
similarly to other elements.

No "Disable all" locator was added as it was not currently needed
anywhere.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
3 years agoFind elements through the actor rather than the driver
Daniel Calviño Sánchez [Fri, 5 Mar 2021 20:39:37 +0000 (21:39 +0100)]
Find elements through the actor rather than the driver

"Actor::find" is a more robust way to look for elements, as it handles
some exceptions that may be thrown. Therefore, even if the elements are
not actually used and it is only checked whether they exist or not using
the actor is the preferred way when possible (and it also makes it
consistent with the rest of the acceptance tests).

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
3 years agoAdd locator for apps list
Daniel Calviño Sánchez [Fri, 5 Mar 2021 20:33:29 +0000 (21:33 +0100)]
Add locator for apps list

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
3 years agoFix identation
Daniel Calviño Sánchez [Fri, 5 Mar 2021 20:28:11 +0000 (21:28 +0100)]
Fix identation

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
3 years agoFix delete user acceptance test
Daniel Calviño Sánchez [Sat, 6 Mar 2021 00:29:54 +0000 (01:29 +0100)]
Fix delete user acceptance test

Adding some missing asserts showed that the "delete user" acceptance
test was silently failing, as the deletion was not being confirmed in
the dialog and thus the user was not being deleted.

The dialog button contains a single quote ("user0's"), so the XPath
expression had to be adjusted (it seems that it is not possible to
escape a single quote in a string enclosed in single quotes in XPath
1.0).

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
3 years agoVerify WaitFor::element... results with an assertion
Daniel Calviño Sánchez [Fri, 5 Mar 2021 19:17:53 +0000 (20:17 +0100)]
Verify WaitFor::element... results with an assertion

WaitFor::element... calls only perform the waiting and return whether
the condition succeeded or not, but that result needs to be explicitly
checked to prevent further steps from being executed if the wait failed.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
3 years agoAdd missing waits when finding elements in the acceptance tests
Daniel Calviño Sánchez [Sun, 17 Jan 2021 16:39:35 +0000 (17:39 +0100)]
Add missing waits when finding elements in the acceptance tests

As no timeout was specified the elements were tried to be found just
once. This caused the steps to fail if the elements did not appear yet
in the page when they were tried to be found.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
3 years agoMerge pull request #25963 from nextcloud/backport/25712/stable20
Roeland Jago Douma [Mon, 8 Mar 2021 07:54:22 +0000 (08:54 +0100)]
Merge pull request #25963 from nextcloud/backport/25712/stable20

[stable20] Fix admin password strengthify tooltip

3 years ago[tx-robot] updated from transifex
Nextcloud bot [Mon, 8 Mar 2021 02:23:30 +0000 (02:23 +0000)]
[tx-robot] updated from transifex

3 years ago[tx-robot] updated from transifex
Nextcloud bot [Sun, 7 Mar 2021 02:22:25 +0000 (02:22 +0000)]
[tx-robot] updated from transifex

3 years agoMerge pull request #25956 from nextcloud/backport/25932/stable20
Roeland Jago Douma [Sat, 6 Mar 2021 09:55:08 +0000 (10:55 +0100)]
Merge pull request #25956 from nextcloud/backport/25932/stable20

[stable20] Skip empty obsolete owner when adding to own NC

3 years ago[tx-robot] updated from transifex
Nextcloud bot [Sat, 6 Mar 2021 02:22:41 +0000 (02:22 +0000)]
[tx-robot] updated from transifex

3 years agoFix admin password strengthify tooltip 25963/head
Richard Steinmetz [Thu, 18 Feb 2021 16:47:01 +0000 (17:47 +0100)]
Fix admin password strengthify tooltip

Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
3 years agoSkip empty obsolete owner when adding to own NC 25956/head
Vincent Petry [Thu, 4 Mar 2021 14:54:21 +0000 (15:54 +0100)]
Skip empty obsolete owner when adding to own NC

The owner field is nowadays always empty when adding a federated share
using "Add to your Nextcloud", so don't check for it.

Fixes an issue where "Add to your Nextcloud" doesn't add anything.

Signed-off-by: Vincent Petry <vincent@nextcloud.com>
3 years agoMerge pull request #25934 from nextcloud/backport/25926/stable20
Roeland Jago Douma [Fri, 5 Mar 2021 13:29:27 +0000 (14:29 +0100)]
Merge pull request #25934 from nextcloud/backport/25926/stable20

[stable20] Activity: show if files are hidden or not

3 years agoMerge pull request #25919 from nextcloud/backport/25805/stable20
Roeland Jago Douma [Fri, 5 Mar 2021 08:43:52 +0000 (09:43 +0100)]
Merge pull request #25919 from nextcloud/backport/25805/stable20

[stable20] Clear multiselect after selection in share panel

3 years ago[tx-robot] updated from transifex
Nextcloud bot [Fri, 5 Mar 2021 02:22:16 +0000 (02:22 +0000)]
[tx-robot] updated from transifex

3 years agoSharebymail: set expiration on creation 25938/head
Roeland Jago Douma [Thu, 4 Mar 2021 12:49:21 +0000 (13:49 +0100)]
Sharebymail: set expiration on creation

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
3 years agoActivity: show if files are hidden or not 25934/head
Roeland Jago Douma [Thu, 4 Mar 2021 12:14:52 +0000 (13:14 +0100)]
Activity: show if files are hidden or not

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
3 years ago[tx-robot] updated from transifex
Nextcloud bot [Thu, 4 Mar 2021 02:22:30 +0000 (02:22 +0000)]
[tx-robot] updated from transifex

3 years agoClear multiselect after selection in share panel 25919/head
Vincent Petry [Fri, 26 Feb 2021 10:30:04 +0000 (11:30 +0100)]
Clear multiselect after selection in share panel

Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
3 years agoMerge pull request #25844 from nextcloud/backport/25757/stable20
blizzz [Wed, 3 Mar 2021 09:43:21 +0000 (10:43 +0100)]
Merge pull request #25844 from nextcloud/backport/25757/stable20

[stable20] fix detecting cyclic group memberships

3 years agoMerge pull request #25873 from nextcloud/backport/25869/stable20
Roeland Jago Douma [Wed, 3 Mar 2021 07:46:21 +0000 (08:46 +0100)]
Merge pull request #25873 from nextcloud/backport/25869/stable20

[stable20] Fix namespacing

3 years agoMerge pull request #25900 from nextcloud/backport/25860/stable20
Roeland Jago Douma [Wed, 3 Mar 2021 07:35:16 +0000 (08:35 +0100)]
Merge pull request #25900 from nextcloud/backport/25860/stable20

[stable20] do not die after LDAP auth failed with expired acc

3 years ago[tx-robot] updated from transifex
Nextcloud bot [Wed, 3 Mar 2021 02:21:42 +0000 (02:21 +0000)]
[tx-robot] updated from transifex

3 years agodo not die after LDAP auth failed with expired acc 25900/head
Arthur Schiwon [Mon, 1 Mar 2021 18:20:05 +0000 (19:20 +0100)]
do not die after LDAP auth failed with expired acc

- some servers return error code 53

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
3 years agoFix namespacing 25873/head
Anna Larch [Tue, 2 Mar 2021 08:37:34 +0000 (09:37 +0100)]
Fix namespacing

Signed-off-by: Anna Larch <anna@nextcloud.com>
3 years agoMerge pull request #25858 from nextcloud/backport/25856/stable20
Roeland Jago Douma [Tue, 2 Mar 2021 08:24:40 +0000 (09:24 +0100)]
Merge pull request #25858 from nextcloud/backport/25856/stable20

[stable20] Card::getOwner should return the actual value

3 years ago[tx-robot] updated from transifex
Nextcloud bot [Tue, 2 Mar 2021 02:22:41 +0000 (02:22 +0000)]
[tx-robot] updated from transifex

3 years agoCard::getOwner should return the actual value 25858/head
Roeland Jago Douma [Mon, 1 Mar 2021 15:51:36 +0000 (16:51 +0100)]
Card::getOwner should return the actual value

I guess we never call this at runtime or it would already ahve done boom
very loudly.

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
3 years agoMerge pull request #25848 from nextcloud/backport/25715/stable20
Roeland Jago Douma [Mon, 1 Mar 2021 17:26:08 +0000 (18:26 +0100)]
Merge pull request #25848 from nextcloud/backport/25715/stable20

[stable20] Bump the ca location

3 years agoBump the ca location 25848/head
Roeland Jago Douma [Thu, 18 Feb 2021 19:21:34 +0000 (20:21 +0100)]
Bump the ca location

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
3 years agoMerge pull request #25740 from nextcloud/backport/25602/stable20
Roeland Jago Douma [Mon, 1 Mar 2021 11:49:36 +0000 (12:49 +0100)]
Merge pull request #25740 from nextcloud/backport/25602/stable20

[stable20] Avoid creating two share links when password is enforced

3 years agofix detecting cyclic group memberships 25844/head
Arthur Schiwon [Fri, 19 Feb 2021 16:22:30 +0000 (17:22 +0100)]
fix detecting cyclic group memberships

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
3 years agoAvoid creating two share links when password is enforced 25740/head
Julius Härtl [Fri, 12 Feb 2021 08:57:19 +0000 (09:57 +0100)]
Avoid creating two share links when password is enforced

Signed-off-by: Julius Härtl <jus@bitgrid.net>
Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
3 years ago[tx-robot] updated from transifex
Nextcloud bot [Mon, 1 Mar 2021 02:20:37 +0000 (02:20 +0000)]
[tx-robot] updated from transifex

3 years ago[tx-robot] updated from transifex
Nextcloud bot [Sun, 28 Feb 2021 02:20:12 +0000 (02:20 +0000)]
[tx-robot] updated from transifex

3 years ago[tx-robot] updated from transifex
Nextcloud bot [Sat, 27 Feb 2021 02:22:40 +0000 (02:22 +0000)]
[tx-robot] updated from transifex

3 years ago[tx-robot] updated from transifex
Nextcloud bot [Fri, 26 Feb 2021 02:22:05 +0000 (02:22 +0000)]
[tx-robot] updated from transifex

3 years ago[tx-robot] updated from transifex
Nextcloud bot [Thu, 25 Feb 2021 02:21:40 +0000 (02:21 +0000)]
[tx-robot] updated from transifex

3 years agoMerge pull request #25719 from nextcloud/version/20.0.8/final v20.0.8
Roeland Jago Douma [Wed, 24 Feb 2021 18:36:24 +0000 (19:36 +0100)]
Merge pull request #25719 from nextcloud/version/20.0.8/final

20.0.8 final

3 years ago[tx-robot] updated from transifex
Nextcloud bot [Wed, 24 Feb 2021 02:22:24 +0000 (02:22 +0000)]
[tx-robot] updated from transifex

3 years agoMerge pull request #25709 from nextcloud/backport/25707/stable20
Joas Schilling [Tue, 23 Feb 2021 10:59:04 +0000 (11:59 +0100)]
Merge pull request #25709 from nextcloud/backport/25707/stable20

[stable20] Send emails on password reset to the displayname

3 years ago[tx-robot] updated from transifex
Nextcloud bot [Tue, 23 Feb 2021 02:39:44 +0000 (02:39 +0000)]
[tx-robot] updated from transifex

3 years ago[tx-robot] updated from transifex
Nextcloud bot [Sun, 21 Feb 2021 02:40:17 +0000 (02:40 +0000)]
[tx-robot] updated from transifex

3 years ago[tx-robot] updated from transifex
Nextcloud bot [Sat, 20 Feb 2021 02:37:41 +0000 (02:37 +0000)]
[tx-robot] updated from transifex

3 years ago20.0.8 final 25719/head
Roeland Jago Douma [Fri, 19 Feb 2021 13:10:43 +0000 (14:10 +0100)]
20.0.8 final

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
3 years ago[tx-robot] updated from transifex
Nextcloud bot [Fri, 19 Feb 2021 02:21:14 +0000 (02:21 +0000)]
[tx-robot] updated from transifex

3 years agoMerge pull request #25494 from nextcloud/version/20.0.8/RC1 v20.0.8RC1
Roeland Jago Douma [Thu, 18 Feb 2021 19:23:58 +0000 (20:23 +0100)]
Merge pull request #25494 from nextcloud/version/20.0.8/RC1

20.0.8 RC1

3 years agoMerge pull request #25384 from nextcloud/backport/25218/stable20
Roeland Jago Douma [Thu, 18 Feb 2021 19:13:58 +0000 (20:13 +0100)]
Merge pull request #25384 from nextcloud/backport/25218/stable20

[stable20] do not remove valid group shares

3 years agoMerge pull request #25132 from nextcloud/backport/24661/stable20
Roeland Jago Douma [Thu, 18 Feb 2021 18:41:49 +0000 (19:41 +0100)]
Merge pull request #25132 from nextcloud/backport/24661/stable20

[stable20] dont offer to edit external config settings if we can't edit them

3 years agofix test 25132/head
Robin Appelman [Thu, 18 Feb 2021 14:56:26 +0000 (15:56 +0100)]
fix test

Signed-off-by: Robin Appelman <robin@icewind.nl>
3 years agoUpdate apps/files_external/js/statusmanager.js
Robin Appelman [Tue, 19 Jan 2021 16:56:11 +0000 (16:56 +0000)]
Update apps/files_external/js/statusmanager.js

Co-authored-by: Morris Jobke <hey@morrisjobke.de>
Signed-off-by: Robin Appelman <robin@icewind.nl>
3 years agoSend emails on password reset to the displayname 25709/head
Joas Schilling [Thu, 18 Feb 2021 11:38:43 +0000 (12:38 +0100)]
Send emails on password reset to the displayname

Signed-off-by: Joas Schilling <coding@schilljs.com>
3 years agoMerge pull request #25703 from nextcloud/backport/25700/stable20
Roeland Jago Douma [Thu, 18 Feb 2021 07:31:41 +0000 (08:31 +0100)]
Merge pull request #25703 from nextcloud/backport/25700/stable20

[stable20] Initialize \OCP\AppFramework\Http\ZipResponse::$resources

3 years ago[tx-robot] updated from transifex
Nextcloud bot [Thu, 18 Feb 2021 02:22:14 +0000 (02:22 +0000)]
[tx-robot] updated from transifex

3 years agoInitialize \OCP\AppFramework\Http\ZipResponse::$resources 25703/head
Christoph Wurst [Wed, 17 Feb 2021 18:59:27 +0000 (19:59 +0100)]
Initialize \OCP\AppFramework\Http\ZipResponse::$resources

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
3 years agoMerge pull request #25448 from nextcloud/backport/25393/stable20
Roeland Jago Douma [Wed, 17 Feb 2021 19:59:18 +0000 (20:59 +0100)]
Merge pull request #25448 from nextcloud/backport/25393/stable20

[stable20] add repair job for unencoded group share uris

3 years agobump affected version 25448/head
Arthur Schiwon [Wed, 17 Feb 2021 16:10:29 +0000 (17:10 +0100)]
bump affected version

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
3 years agocompatibility to Nc 20
Arthur Schiwon [Wed, 17 Feb 2021 14:57:37 +0000 (15:57 +0100)]
compatibility to Nc 20

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
3 years agoadd missing changes from backport source
Arthur Schiwon [Wed, 17 Feb 2021 14:26:06 +0000 (15:26 +0100)]
add missing changes from backport source

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
3 years agotest: adjust expectation
Arthur Schiwon [Fri, 29 Jan 2021 18:32:12 +0000 (19:32 +0100)]
test: adjust expectation

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
3 years agoshow suggestion to clean up possible invalid shares later
Arthur Schiwon [Fri, 29 Jan 2021 16:43:58 +0000 (17:43 +0100)]
show suggestion to clean up possible invalid shares later

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
3 years agotake into account that UNIQUE index might not work as expected
Arthur Schiwon [Fri, 29 Jan 2021 16:16:52 +0000 (17:16 +0100)]
take into account that UNIQUE index might not work as expected

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
3 years agoadd repair job for unencoded calendars
Arthur Schiwon [Fri, 29 Jan 2021 16:00:18 +0000 (17:00 +0100)]
add repair job for unencoded calendars

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
3 years agoMerge pull request #25379 from nextcloud/backport/25101/stable20
Joas Schilling [Wed, 17 Feb 2021 13:56:45 +0000 (14:56 +0100)]
Merge pull request #25379 from nextcloud/backport/25101/stable20

[stable20] LDAP: make actually use of batch read known groups

3 years agoreally use known groups 25379/head
Arthur Schiwon [Tue, 12 Jan 2021 19:52:52 +0000 (20:52 +0100)]
really use known groups

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
3 years agoMerge pull request #25651 from nextcloud/backport/25594/stable20
Roeland Jago Douma [Wed, 17 Feb 2021 09:38:18 +0000 (10:38 +0100)]
Merge pull request #25651 from nextcloud/backport/25594/stable20

[stable20] Use ownerDisplayName for SharingEntry Tooltip

3 years agodo not remove valid group shares 25384/head
Arthur Schiwon [Tue, 19 Jan 2021 20:22:26 +0000 (21:22 +0100)]
do not remove valid group shares

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
3 years ago[tx-robot] updated from transifex
Nextcloud bot [Wed, 17 Feb 2021 02:21:26 +0000 (02:21 +0000)]
[tx-robot] updated from transifex

3 years agoMerge pull request #25666 from nextcloud/backport/25661/stable20
Roeland Jago Douma [Tue, 16 Feb 2021 07:27:08 +0000 (08:27 +0100)]
Merge pull request #25666 from nextcloud/backport/25661/stable20

[stable20] Updated CRL

3 years ago[tx-robot] updated from transifex
Nextcloud bot [Tue, 16 Feb 2021 02:21:53 +0000 (02:21 +0000)]
[tx-robot] updated from transifex

3 years agoUpdated CRL 25666/head
Roeland Jago Douma [Mon, 15 Feb 2021 19:32:48 +0000 (20:32 +0100)]
Updated CRL

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
3 years agoMerge pull request #25663 from nextcloud/backport/25655/stable20
Roeland Jago Douma [Mon, 15 Feb 2021 21:05:18 +0000 (22:05 +0100)]
Merge pull request #25663 from nextcloud/backport/25655/stable20

[stable20] Fix app icon list in dark mode

3 years agoFix app icon list in dark mode 25663/head
Joas Schilling [Mon, 15 Feb 2021 15:26:30 +0000 (16:26 +0100)]
Fix app icon list in dark mode

Signed-off-by: Joas Schilling <coding@schilljs.com>
3 years agoUse ownerDisplayName for SharingEntry Tooltip 25651/head
Dan VerWeire [Thu, 11 Feb 2021 20:36:33 +0000 (15:36 -0500)]
Use ownerDisplayName for SharingEntry Tooltip

Some NC installations may use a LDAP UUID for the username. If that
is the case, then the tooltip for who a file/folder was shared by may say something
like `Shared with Steve McQueen (smqueen@yada.com) by FKDJ39-38D794JG-4398GJODF9H3G-4534`.

This commit changes the value showed for the owner to the full display name.

Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
3 years ago[tx-robot] updated from transifex
Nextcloud bot [Mon, 15 Feb 2021 02:20:26 +0000 (02:20 +0000)]
[tx-robot] updated from transifex

3 years ago[tx-robot] updated from transifex
Nextcloud bot [Sun, 14 Feb 2021 02:20:18 +0000 (02:20 +0000)]
[tx-robot] updated from transifex

3 years ago[tx-robot] updated from transifex
Nextcloud bot [Sat, 13 Feb 2021 02:20:46 +0000 (02:20 +0000)]
[tx-robot] updated from transifex

3 years agoMerge pull request #25592 from nextcloud/backport/25582/stable20
Roeland Jago Douma [Fri, 12 Feb 2021 07:54:48 +0000 (08:54 +0100)]
Merge pull request #25592 from nextcloud/backport/25582/stable20

[stable20] Do not send imip email to invalid recipients

3 years ago[tx-robot] updated from transifex
Nextcloud bot [Fri, 12 Feb 2021 02:20:35 +0000 (02:20 +0000)]
[tx-robot] updated from transifex

3 years agoDo not send imip email to invalid recipients 25592/head
Christoph Wurst [Thu, 11 Feb 2021 12:27:02 +0000 (13:27 +0100)]
Do not send imip email to invalid recipients

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
3 years agoMerge pull request #25382 from nextcloud/backport/25312/stable20
Roeland Jago Douma [Thu, 11 Feb 2021 09:33:27 +0000 (10:33 +0100)]
Merge pull request #25382 from nextcloud/backport/25312/stable20

[stable20] do not lower case search provider names on web ui

3 years ago[tx-robot] updated from transifex
Nextcloud bot [Thu, 11 Feb 2021 02:20:54 +0000 (02:20 +0000)]
[tx-robot] updated from transifex

3 years ago[tx-robot] updated from transifex
Nextcloud bot [Wed, 10 Feb 2021 02:21:17 +0000 (02:21 +0000)]
[tx-robot] updated from transifex

3 years agoMerge pull request #25458 from nextcloud/backport/23588/stable20
Roeland Jago Douma [Tue, 9 Feb 2021 21:03:05 +0000 (22:03 +0100)]
Merge pull request #25458 from nextcloud/backport/23588/stable20

[stable20] Override default dashboard background with theming one

3 years agooverride default dashboard background with theming one 25458/head
Julien Veyssier [Tue, 20 Oct 2020 10:36:41 +0000 (12:36 +0200)]
override default dashboard background with theming one
fix getAppValue default value in theming app
fix cacheBuster value injection

Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
3 years agoMerge pull request #25550 from nextcloud/reconnectwrapper-wait-timeout
Roeland Jago Douma [Tue, 9 Feb 2021 20:14:46 +0000 (21:14 +0100)]
Merge pull request #25550 from nextcloud/reconnectwrapper-wait-timeout

[20] change reconect wrapper to only check connection after inactivity

3 years agochange reconect wrapper to only check connection after inactivity 25550/head
Robin Appelman [Tue, 9 Feb 2021 15:30:59 +0000 (16:30 +0100)]
change reconect wrapper to only check connection after inactivity

instead of always checking every minute, only check the connection after a minute of inactivity.
this should better reflect how idle timeouts of sql servers work and remove most of the cases where this check was previously done.

Signed-off-by: Robin Appelman <robin@icewind.nl>
3 years ago[tx-robot] updated from transifex
Nextcloud bot [Tue, 9 Feb 2021 02:21:02 +0000 (02:21 +0000)]
[tx-robot] updated from transifex

3 years ago[tx-robot] updated from transifex
Nextcloud bot [Mon, 8 Feb 2021 02:20:22 +0000 (02:20 +0000)]
[tx-robot] updated from transifex