Commit graph

64775 commits

Author SHA1 Message Date
Louis Chemineau
796c57121d Do not check quota for non Node
Signed-off-by: Louis Chemineau <louis@chmn.me>
2022-11-24 15:17:07 +00:00
Simon L
0d7ba732b7
Merge pull request #35377 from nextcloud/backport/35368/stable25
[stable25] Add repair job that will ensure that secret and passwordsalt are set
2022-11-24 10:46:07 +01:00
blizzz
4c99ba4ad3
Merge pull request #35335 from nextcloud/stable25-revert-34032-fix-quota-32bit
Revert "[stable25] Fix quota type to int"
2022-11-24 10:25:57 +01:00
Simon L
c1857ef203
Merge pull request #35375 from nextcloud/backport/35350/stable25
[stable25] Fix user settings layout
2022-11-24 09:57:15 +01:00
Arthur Schiwon
471369ca2b
remove superfluous use statement
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2022-11-24 09:34:31 +01:00
root
81a4810203 update vue to v7.1.0-beta.2
Signed-off-by: Simon L <szaimen@e.mail.de>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-11-24 08:28:16 +00:00
blizzz
8d2459656d
Merge pull request #35382 from nextcloud/backport/35272/stable25
[stable25] Add label to sharing search field
2022-11-24 09:08:52 +01:00
blizzz
d3fae80d0c
Merge pull request #35085 from nextcloud/backport/35054/stable25
[stable25] Fix HTML entities not decoded in comment just added
2022-11-24 09:02:27 +01:00
Julius Härtl
6769550a11
Merge pull request #35166 from nextcloud/backport/35091/stable25
[stable25] Allow single character search by default
2022-11-24 08:24:50 +01:00
Nextcloud bot
d7c88ece4e
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-11-24 02:17:45 +00:00
nextcloud-command
aca699c263 Compile assets
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-11-24 01:22:46 +00:00
Daniel Calviño Sánchez
8a25e2dbcb Fix HTML entities not decoded in comment just added
The XML data received from the comments endpoint has an inconsistent
encoding; some entities are encoded once and others are encoded twice.
When the comment list is loaded the comments are fetched using
GetComments, which handles all that, and therefore shows the messages
and author names as expected.

However, when a new comment is posted the list is not got again; instead
the new comment is loaded from the comment data returned after posting
it. This is done in NewComment, which did not decode the messages nor
the author names, and therefore showed, for example, "&amp;" instead of
"&".

To solve that now the same decoding logic used in GetComments is applied
too in NewComment.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2022-11-24 01:19:05 +00:00
Daniel Calviño Sánchez
4b6b40b5b1 Extract "decodeHtmlEntities" function to its own file
This will make possible to use it from files other than
"GetComments.js".

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2022-11-24 01:19:05 +00:00
Christopher Ng
54296f5567 Allow single character search by default
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-11-24 01:17:26 +00:00
Christopher Ng
d596900410 Add label to sharing search field
Signed-off-by: Christopher Ng <chrng8@gmail.com>
2022-11-24 01:01:21 +00:00
Simon L
fea3eed909 fix remaining user settings issues
Signed-off-by: Simon L <szaimen@e.mail.de>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-11-23 23:51:17 +00:00
John Molakvoæ
24c908ff11 scroll if too much groups
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-11-23 20:44:04 +00:00
Carl Schwan
c050ca9db4 Add repair job that will ensure that secret and passwordsalt are set
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-11-23 20:11:01 +00:00
John Molakvoæ
717fdad70d Fix user settings layout
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
2022-11-23 20:01:59 +00:00
blizzz
222b8942af
Merge pull request #35366 from nextcloud/backport/35353/stable25
[stable25] Update cache when file size === 0
2022-11-23 20:47:34 +01:00
Vincent Petry
7bcd4193b8
Float the quota
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2022-11-23 20:43:08 +01:00
Vincent Petry
d524329ec3
Revert "Fix quota type to int"
This reverts commit d61efdff6c.

Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2022-11-23 20:43:08 +01:00
blizzz
1a1a810cf2
Merge pull request #34955 from nextcloud/backport/34934/stable25
[stable25] Read encrypted session data again on reopen
2022-11-23 20:42:30 +01:00
blizzz
695ceba17c
Merge pull request #35322 from nextcloud/backport/stable25/35187
[stable25] Fix mentions rendering in comment editor
2022-11-23 17:59:29 +01:00
Louis Chemineau
cb99a5795d Update cache when file size === 0
The conditions were false when $result === 0.
$results here contains the number of written bits.
The correct way of checking for operation success is to check if $result === false

Signed-off-by: Louis Chemineau <louis@chmn.me>
2022-11-23 14:57:32 +00:00
Joas Schilling
6d566367a9
Merge pull request #35354 from nextcloud/backport/35206/stable25
[stable25] Fix forwarding the object id when searching comments
2022-11-23 14:26:57 +01:00
Louis Chemineau
19042c4d91 Fix mentions rendering in comment editor
NcRichContentEditable needs an index of users to properly display them. This commit adds a caching logic and provides it to NcRichContentEditable.

Signed-off-by: Louis Chemineau <louis@chmn.me>
2022-11-23 13:47:24 +01:00
Vincent Petry
6e4d50b914
Merge pull request #35340 from nextcloud/backport/35299/stable25
[stable25] Prevents the selection of encrypted folders when clicking on the "Select all" checkbox
2022-11-23 12:51:45 +01:00
Joas Schilling
3b3048e403 Fix forwarding the object id when searching comments
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-11-23 10:12:45 +00:00
blizzz
5efabd1fa9
Merge pull request #35346 from nextcloud/backport/35315/stable25
[stable25] Fix border color contrast
2022-11-23 10:46:34 +01:00
blizzz
a574e1f3c7
Merge pull request #35327 from nextcloud/backport/34528/stable25
[stable25] Handle badly named version files more gracefully and log information
2022-11-23 10:43:56 +01:00
blizzz
4a4ee4fccd
Merge pull request #35326 from nextcloud/fix/34602/background-image-migration/stable25
[stable25] optimize background image migration job
2022-11-23 10:41:38 +01:00
blizzz
166f07649f
Merge pull request #35034 from nextcloud/backport/32211/stable25
[stable25] Add repair command to fix wrong share ownership
2022-11-23 10:37:28 +01:00
John Molakvoæ
5cd1e77dbd
Merge pull request #34928 from nextcloud/backport/34868/stable25
[stable25] Update @nextcloud/dialogs and fix toasts styling
2022-11-23 10:21:20 +01:00
Nextcloud bot
9a0270ace4
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-11-23 02:18:19 +00:00
Christopher Ng
5a8fca96cb Fix border color contrast
Signed-off-by: Christopher Ng <chrng8@gmail.com>
2022-11-22 23:27:20 +00:00
John Molakvoæ
05af366fa5
Merge pull request #35338 from nextcloud/backposkjnldsv/35325/stable25
[stable25] Fix navigation order
2022-11-22 21:12:33 +01:00
Pytal
a84b70a45a
Merge pull request #35330 from nextcloud/backport/35309/stable25
[stable25] Help pages: set window title for sidebar sections
2022-11-22 10:19:08 -08:00
kavita.sonawane@t-systems.com
f9a2410ccb CSS compiled files for deactivates the possiblility to checkmark or click on the encrypted folders
Signed-off-by: kavita.sonawane@t-systems.com <kavita.sonawane@t-systems.com>
2022-11-22 17:35:43 +00:00
kavita.sonawane@t-systems.com
895d068ab9 Prevent selection of encrypted folders
Signed-off-by: kavita.sonawane@t-systems.com <kavita.sonawane@t-systems.com>
2022-11-22 17:35:42 +00:00
kavita.sonawane@t-systems.com
a448205308 Prevents the selection of encrypted folder on next page load
Signed-off-by: kavita.sonawane@t-systems.com <kavita.sonawane@t-systems.com>
2022-11-22 17:35:42 +00:00
kavita.sonawane@t-systems.com
1b2441b90e Prevents the selection of encrypted folder on scroll page
Signed-off-by: kavita.sonawane@t-systems.com <kavita.sonawane@t-systems.com>
2022-11-22 17:35:42 +00:00
kavita.sonawane@t-systems.com
eb756d8ca5 Deactivates the possiblility to checkmark or click on the encrypted folder
Signed-off-by: kavita.sonawane@t-systems.com <kavita.sonawane@t-systems.com>
2022-11-22 17:35:42 +00:00
kavita.sonawane@t-systems.com
a96877a5ff Add comments for prevents the selection of encrypted folders
Signed-off-by: kavita.sonawane@t-systems.com <kavita.sonawane@t-systems.com>
2022-11-22 17:35:42 +00:00
kavita.sonawane@t-systems.com
cfa0dab8f1 Filelist:-Deselecting all files checkboxes within cells of encrypted folder
Signed-off-by: kavita.sonawane@t-systems.com <kavita.sonawane@t-systems.com>
2022-11-22 17:35:41 +00:00
John Molakvoæ
2c33a04f07
Fix navigation order
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
2022-11-22 17:22:55 +01:00
julia.kirschenheuter
fdf74b0f53 Help pages: set window title for sidebar sections
Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
2022-11-22 13:32:34 +00:00
Côme Chilliet
8aa6c10382
Merge pull request #35174 from nextcloud/fix/bump-swiftmailer/swiftmailer-to-6.3.0-in-stable25
Bump swiftmailer/swiftmailer to 6.3.0 in stable25
2022-11-22 14:09:36 +01:00
Côme Chilliet
5f26c549bd
Handle badly named version files more gracefully and log information
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-11-22 13:52:11 +01:00
Arthur Schiwon
6916a311e7
rename placeholder
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2022-11-22 13:51:28 +01:00