Commit graph

25823 commits

Author SHA1 Message Date
Simon L
8d631a096a
Merge pull request #30987 from nextcloud/enh/30962/show-mail-server-settings-in-overview
show if the mail server settings are not set or verified
2022-02-03 23:59:19 +01:00
Carl Schwan
94b79c25f4
Merge pull request #30955 from nextcloud/fix/sticky-position
Fix position sticky declaration
2022-02-03 21:35:36 +01:00
szaimen
fa1ee8f0c7 fix tests
Signed-off-by: szaimen <szaimen@e.mail.de>
2022-02-03 20:41:12 +01:00
szaimen
84cf39f582 show if the mail server settings are not set or verified
Signed-off-by: szaimen <szaimen@e.mail.de>
2022-02-03 20:16:35 +01:00
John Molakvoæ
9005cd0837
Merge pull request #30937 from Brennii96/feature-app-version-sidebar 2022-02-03 18:02:18 +01:00
Julius Härtl
20f1971266
Merge pull request #30624 from nextcloud/theming/background-image
Avoid file system access on checking if an image exists
2022-02-03 17:38:29 +01:00
Brendan
20e372f0fd
Add app version to sidebar, mainly for mobile view as it disappears from list view
Signed-off-by: Brendan O'Neill brendan.oneill96@hotmail.co.uk
2022-02-03 17:22:06 +01:00
Julien Veyssier
63e755e1c8
change Actions trigger to <button> when editing user
Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
2022-02-03 12:50:24 +01:00
Nextcloud bot
e167d7f44c
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-03 02:26:58 +00:00
Julius Härtl
3d0b5c1ff9
Avoid file system access on checking if an image exists
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2022-02-02 11:26:36 +01:00
Joas Schilling
2544ab48d4
Merge pull request #30940 from nextcloud/request-id-in-header
send request id in response header
2022-02-02 09:50:17 +01:00
Nextcloud bot
e32090f44f
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-02 02:27:10 +00:00
Robin Appelman
c712987878
send request id in response header
Signed-off-by: Robin Appelman <robin@icewind.nl>
2022-02-01 14:24:01 +01:00
Carl Schwan
16fc9eb9cc Fix position sticky declaration
Before the generated css was: "position: 'sticky'", now it is
position: sticky. Firefox considered the old value has invalid.

Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-02-01 13:26:29 +01:00
Louis Chemineau
78481e2e7c Add compiled files
Signed-off-by: Louis Chemineau <louis@chmn.me>
2022-02-01 12:54:55 +01:00
ArcticFall
398297b449 Add new component for the group list items.
Signed-off-by: Martin Jänel <spammemore@posteo.de>
Signed-off-by: Louis Chemineau <louis@chmn.me>
2022-02-01 12:54:55 +01:00
ArcticFall
849d3697d3 Add js methods for renaming a group.
Signed-off-by: Martin Jänel <spammemore@posteo.de>
Signed-off-by: Louis Chemineau <louis@chmn.me>
2022-02-01 12:54:55 +01:00
ArcticFall
1f80d767b4 Add ActionInput for renaming a group and corresponding method.
Signed-off-by: Martin Jänel <spammemore@posteo.de>
Signed-off-by: Louis Chemineau <louis@chmn.me>
2022-02-01 12:54:55 +01:00
Nextcloud bot
16521e9f7c
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-01 02:26:49 +00:00
Valdnet
62e7245fa3
i10n: Change l10n directory
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
2022-01-31 12:12:36 +01:00
Nextcloud bot
3770a5bf31
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-01-31 02:26:49 +00:00
Nextcloud bot
764e452ef6
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-01-30 02:26:44 +00:00
Nextcloud bot
011042e56e
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-01-29 02:27:43 +00:00
Nextcloud bot
4d98612bc8
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-01-28 02:27:10 +00:00
John Molakvoæ
73e3d06781
Merge pull request #30855 from nextcloud/psalm/theming 2022-01-27 20:04:02 +01:00
Carl Schwan
760db78dba
Add better error handling
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-01-27 17:03:09 +01:00
Carl Schwan
f778cbe7b9
Fix registerEventListener issues
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-01-27 11:12:45 +01:00
Louis
34f425c150
Merge pull request #30858 from nextcloud/fix/ajax-list-dir-content-on-file
Return 404 when AJAX tries to list dir content but file given
2022-01-27 11:08:23 +01:00
Louis Chemineau
be968a8841 Use @nextcloud/sharing in files and files_sharing
Signed-off-by: Louis Chemineau <louis@chmn.me>

Update tests

Signed-off-by: Louis Chemineau <louis@chmn.me>
2022-01-26 17:58:43 +01:00
MichaIng
ba1338e680 Return 404 when AJAX tries to list dir content but file given
Due to a code mistake, the expected 404 return when AJAX tries to list a directory content with a non-directory file path given, does not happen. It instead fails with another exception.

This commit restores the original intention to return 404 in the first place when passing a non-directory path with the "dir" parameter.

Signed-off-by: MichaIng <micha@dietpi.com>
2022-01-26 16:11:50 +01:00
Carl Schwan
e3a12b3482
Fix psalm issues in theming app
After this change, we are down to only one psalm warning for this app
and related to the Application.php. This also make composer
psam:update-baseline not silently ignore new errors.

Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-01-26 14:26:58 +01:00
Louis Chemineau
6220042788 Fix php:cs
Signed-off-by: Louis Chemineau <louis@chmn.me>
2022-01-26 10:47:16 +01:00
Nextcloud bot
936f9dc596
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-01-26 02:27:35 +00:00
John Molakvoæ
272f4cd6df
Merge pull request #30763 from nextcloud/feature/noid/allow-to-log-audit-to-syslog 2022-01-25 10:25:13 +01:00
Nextcloud bot
562c573005
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-01-25 02:27:30 +00:00
Nextcloud bot
6e47104bb6
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-01-24 02:26:40 +00:00
Nextcloud bot
a45c17dfb1
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-01-23 02:26:25 +00:00
John Molakvoæ
d9e4e48868
Merge pull request #30795 from nextcloud/fix/smb-kerberos 2022-01-22 09:55:00 +01:00
John Molakvoæ
3192b3e2f2
Merge pull request #30729 from nextcloud/dependabot/npm_and_yarn/nextcloud/eslint-config-7.0.1 2022-01-22 09:54:34 +01:00
Nextcloud bot
9f489422b4
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-01-22 02:26:35 +00:00
Joas Schilling
fccb98c8b6
Merge pull request #30379 from nextcloud/feature/add-comments-reactions
Add comments reactions
2022-01-21 15:08:12 +01:00
Carl Schwan
9a32672c26
Fix accessing undefined offsets
Move this to inside the else clause of the count($matches)

Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-01-21 13:59:10 +01:00
Vitor Mattos
1a1bdd9bc4
Fix affected unit test
Signed-off-by: Vitor Mattos <vitor@php.rio>
2022-01-21 09:15:49 -03:00
Louis Chemineau
e101882b92
Auto fix warnings
Signed-off-by: Louis Chemineau <louis@chmn.me>
2022-01-21 13:13:52 +01:00
Louis Chemineau
ed729c65de
Adapt eslint ignore comment to silent error
Signed-off-by: Louis Chemineau <louis@chmn.me>
2022-01-21 13:13:52 +01:00
John Molakvoæ
5c1154c7e7
Merge pull request #30789 from nextcloud/Valdnet-patch-2 2022-01-21 11:03:48 +01:00
Joas Schilling
5ad7309c55
Merge pull request #30123 from nextcloud/rakekniven-patch-1
l10n: Add dot at the end of an sentence
2022-01-21 09:14:11 +01:00
Valdnet
31743438cd
l10n: Change to a capital letter
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
2022-01-21 08:17:19 +01:00
Nextcloud bot
d2790f75c8
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-01-21 02:26:59 +00:00
John Molakvoæ
a3dc813316
Merge pull request #29349 from nextcloud/enh/noid/filesext_kerberos_apache_auth 2022-01-20 20:10:40 +01:00