nextcloud-desktop.git
3 years agoNew upstream release.
Sandro Knauß [Wed, 15 Feb 2023 13:44:33 +0000 (14:44 +0100)]
New upstream release.

3 years agoUpdate upstream source from tag 'upstream/3.7.3'
Sandro Knauß [Wed, 15 Feb 2023 13:42:14 +0000 (14:42 +0100)]
Update upstream source from tag 'upstream/3.7.3'

Update to upstream version '3.7.3'
with Debian dir 252c313ab570df6ba2b5411080f55aec74b58577

3 years agoNew upstream version 3.7.3
Sandro Knauß [Wed, 15 Feb 2023 13:41:39 +0000 (14:41 +0100)]
New upstream version 3.7.3

3 years agoprepare 3.7.3
allexzander [Thu, 9 Feb 2023 20:54:58 +0000 (21:54 +0100)]
prepare 3.7.3

Signed-off-by: allexzander <blackslayer4@gmail.com>
3 years agoRevert "Fix(l10n): 🔠 Update translations from Transifex"
alex-z [Thu, 9 Feb 2023 20:47:44 +0000 (21:47 +0100)]
Revert "Fix(l10n): 🔠 Update translations from Transifex"

This reverts commit 4b915764ebcb34afad4b74801ce3f529c4aed223.

3 years agoRevert "Fix(l10n): 🔠 Update translations from Transifex"
alex-z [Thu, 9 Feb 2023 20:46:57 +0000 (21:46 +0100)]
Revert "Fix(l10n): 🔠 Update translations from Transifex"

This reverts commit 22b1e9257d55882f3f9d5d8a4b8f4fec085624c9.

3 years agoRevert "Fix(l10n): 🔠 Update translations from Transifex"
alex-z [Thu, 9 Feb 2023 20:46:32 +0000 (21:46 +0100)]
Revert "Fix(l10n): 🔠 Update translations from Transifex"

This reverts commit b9d49e9257006af38a7ae06133d364da6f6deb12.

3 years agoprepare 3.7.2
allexzander [Thu, 9 Feb 2023 13:11:55 +0000 (14:11 +0100)]
prepare 3.7.2

Signed-off-by: allexzander <blackslayer4@gmail.com>
3 years agoFix(l10n): 🔠 Update translations from Transifex
Nextcloud bot [Thu, 9 Feb 2023 03:47:59 +0000 (03:47 +0000)]
Fix(l10n): 🔠 Update translations from Transifex

Signed-off-by: Nextcloud bot <bot@nextcloud.com>
3 years agoFix(l10n): 🔠 Update translations from Transifex
Nextcloud bot [Wed, 8 Feb 2023 03:38:15 +0000 (03:38 +0000)]
Fix(l10n): 🔠 Update translations from Transifex

Signed-off-by: Nextcloud bot <bot@nextcloud.com>
3 years agoFix(l10n): 🔠 Update translations from Transifex
Nextcloud bot [Tue, 7 Feb 2023 03:38:31 +0000 (03:38 +0000)]
Fix(l10n): 🔠 Update translations from Transifex

Signed-off-by: Nextcloud bot <bot@nextcloud.com>
3 years agoprepare 3.7.1
Matthieu Gallien [Mon, 6 Feb 2023 15:37:34 +0000 (16:37 +0100)]
prepare 3.7.1

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
3 years agoMerge pull request #5403 from nextcloud/backport/5393/stable-3.7
Matthieu Gallien [Mon, 6 Feb 2023 15:21:58 +0000 (16:21 +0100)]
Merge pull request #5403 from nextcloud/backport/5393/stable-3.7

Backport/5393/stable 3.7

3 years agomove init to default value in class declaration
Matthieu Gallien [Mon, 6 Feb 2023 09:38:59 +0000 (10:38 +0100)]
move init to default value in class declaration

done via clang-tidy and manual tuning

run-clang-tidy -p build -header-filter='.*' -config="{Checks: '*', CheckOptions: [{key: UseAssignment, value: true}]}" -checks='-*,modernize-use-default-member-init' -fix

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
3 years agomore fixes for attributes without init value
Matthieu Gallien [Mon, 6 Feb 2023 08:14:48 +0000 (09:14 +0100)]
more fixes for attributes without init value

done with clang-tidy

run-clang-tidy -p build -header-filter='.*' -config="{Checks: '*', CheckOptions: [{key: UseAssignment, value: true}]}" -checks='-*,cppcoreguidelines-pro-type-member-init' -fix

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
3 years agoinit attributes
Matthieu Gallien [Fri, 3 Feb 2023 18:53:24 +0000 (19:53 +0100)]
init attributes

discovered at runtime using valgrind

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
3 years agoinitialize all variables
Matthieu Gallien [Fri, 3 Feb 2023 17:55:52 +0000 (18:55 +0100)]
initialize all variables

done with clang-tidy

run-clang-tidy -p build -config="{Checks: '*', CheckOptions: [{key: UseAssignment, value: true}]}" -checks='-*,cppcoreguidelines-init-variables' -fix

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
3 years agoprefer initialization of attribute inline
Matthieu Gallien [Fri, 3 Feb 2023 17:47:44 +0000 (18:47 +0100)]
prefer initialization of attribute inline

done with clang-tidy

run-clang-tidy -p build -config="{Checks: '*', CheckOptions: [{key: UseAssignment, value: true}]}" -checks='-*,modernize-use-default-member-init' -fix

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
3 years agoinitialize many attributes that could have been left without init value
Matthieu Gallien [Fri, 3 Feb 2023 17:38:52 +0000 (18:38 +0100)]
initialize many attributes that could have been left without init value

done with clang-tidy

run-clang-tidy -p build -config="{Checks: '*', CheckOptions: [{key: UseAssignment, value: true}]}" -checks='-*,cppcoreguidelines-pro-type-member-init' -fix

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
3 years agoprefer member init
Matthieu Gallien [Fri, 3 Feb 2023 16:32:40 +0000 (17:32 +0100)]
prefer member init

done via clang-tidy and use of modernize-use-default-member-init

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
3 years agoFix(l10n): 🔠 Update translations from Transifex
Nextcloud bot [Sun, 5 Feb 2023 03:35:14 +0000 (03:35 +0000)]
Fix(l10n): 🔠 Update translations from Transifex

Signed-off-by: Nextcloud bot <bot@nextcloud.com>
3 years agoRelease to unstable.
Sandro Knauß [Sat, 4 Feb 2023 17:25:51 +0000 (18:25 +0100)]
Release to unstable.

3 years agoAdd lintian-overrides for Dolphin plugin.
Sandro Knauß [Sat, 4 Feb 2023 16:52:56 +0000 (17:52 +0100)]
Add lintian-overrides for Dolphin plugin.

3 years agoUpdate patch: Need to set RPATH/RUNPATH for dolphin plugin.
Sandro Knauß [Sat, 4 Feb 2023 16:41:01 +0000 (17:41 +0100)]
Update patch: Need to set RPATH/RUNPATH for dolphin plugin.

3 years agoFix(l10n): 🔠 Update translations from Transifex
Nextcloud bot [Sat, 4 Feb 2023 03:38:50 +0000 (03:38 +0000)]
Fix(l10n): 🔠 Update translations from Transifex

Signed-off-by: Nextcloud bot <bot@nextcloud.com>
3 years agoRelease to unstable.
Sandro Knauß [Fri, 3 Feb 2023 18:19:23 +0000 (19:19 +0100)]
Release to unstable.

3 years agoAdd patch to remove Qt GuiPrivate usage.
Sandro Knauß [Fri, 3 Feb 2023 18:15:40 +0000 (19:15 +0100)]
Add patch to remove Qt GuiPrivate usage.

3 years agoRemove dolphin plugin lintian overrides.
Sandro Knauß [Fri, 3 Feb 2023 18:11:33 +0000 (19:11 +0100)]
Remove dolphin plugin lintian overrides.

3 years agoUpdate install locations of dolphin plugin.
Sandro Knauß [Fri, 3 Feb 2023 18:11:03 +0000 (19:11 +0100)]
Update install locations of dolphin plugin.

3 years agoKDE CMake actions are used to install dolphin plugin.
Sandro Knauß [Fri, 3 Feb 2023 18:10:15 +0000 (19:10 +0100)]
KDE CMake actions are used to install dolphin plugin.

3 years agoBump Standards-Version (No changes needed).
Sandro Knauß [Fri, 3 Feb 2023 17:17:00 +0000 (18:17 +0100)]
Bump Standards-Version (No changes needed).

3 years agoAdd missing build-depdendency libkf5archive-dev.
Sandro Knauß [Fri, 3 Feb 2023 17:04:37 +0000 (18:04 +0100)]
Add missing build-depdendency libkf5archive-dev.

3 years agoRemove upstream applied patch.
Sandro Knauß [Fri, 3 Feb 2023 17:00:31 +0000 (18:00 +0100)]
Remove upstream applied patch.

3 years agoUpdate patch hunks.
Sandro Knauß [Fri, 3 Feb 2023 16:58:33 +0000 (17:58 +0100)]
Update patch hunks.

3 years agoNew upstream release.
Sandro Knauß [Fri, 3 Feb 2023 16:51:17 +0000 (17:51 +0100)]
New upstream release.

3 years agoUpdate upstream source from tag 'upstream/3.7.0'
Sandro Knauß [Fri, 3 Feb 2023 16:44:40 +0000 (17:44 +0100)]
Update upstream source from tag 'upstream/3.7.0'

Update to upstream version '3.7.0'
with Debian dir 01601e44ad84913d11cf80eeb0506ce31fa05bb7

3 years agoNew upstream version 3.7.0
Sandro Knauß [Fri, 3 Feb 2023 16:42:21 +0000 (17:42 +0100)]
New upstream version 3.7.0

3 years agoFix(l10n): 🔠 Update translations from Transifex
Nextcloud bot [Fri, 3 Feb 2023 03:40:04 +0000 (03:40 +0000)]
Fix(l10n): 🔠 Update translations from Transifex

Signed-off-by: Nextcloud bot <bot@nextcloud.com>
3 years agoprepare for 3.7.0 release
Matthieu Gallien [Thu, 2 Feb 2023 08:22:55 +0000 (09:22 +0100)]
prepare for 3.7.0 release

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
3 years agoMerge pull request #5388 from nextcloud/backport/5385/stable-3.7
Matthieu Gallien [Thu, 2 Feb 2023 07:58:58 +0000 (08:58 +0100)]
Merge pull request #5388 from nextcloud/backport/5385/stable-3.7

Backport/5385/stable 3.7

3 years agoUpdate code style.
Camila [Wed, 1 Feb 2023 20:58:25 +0000 (21:58 +0100)]
Update code style.

Signed-off-by: Camila <hello@camila.codes>
3 years agoFix: if the config did not exist, overrideserverurl had no effect.
Camila [Wed, 1 Feb 2023 19:56:34 +0000 (20:56 +0100)]
Fix: if the config did not exist, overrideserverurl had no effect.

When the client runs for the first time, setting the value was done before
the config file was created. It had no effect.

Signed-off-by: Camila <hello@camila.codes>
3 years agoDo not exit application when overrideserverurl param is a valid url.
Camila [Wed, 1 Feb 2023 19:25:49 +0000 (20:25 +0100)]
Do not exit application when overrideserverurl param is a valid url.

Signed-off-by: Camila <hello@camila.codes>
3 years agoOnly accept folder setup page if overrideLocalDir is set.
Camila [Wed, 1 Feb 2023 18:58:45 +0000 (19:58 +0100)]
Only accept folder setup page if overrideLocalDir is set.

Fix for #5383.

Signed-off-by: Camila <hello@camila.codes>
3 years agoMerge pull request #5386 from nextcloud/backport/5384/stable-3.7
Matthieu Gallien [Thu, 2 Feb 2023 07:44:56 +0000 (08:44 +0100)]
Merge pull request #5386 from nextcloud/backport/5384/stable-3.7

[stable-3.7] Improve config upgrade warning dialog

3 years agoBy default do not display warning about backups made of the config file.
Camila [Wed, 1 Feb 2023 16:25:24 +0000 (17:25 +0100)]
By default do not display warning about backups made of the config file.

Use the setting showConfigBackupWarning to change the default value.

Signed-off-by: Camila <hello@camila.codes>
3 years agoImprove warning message code readability.
Camila [Wed, 1 Feb 2023 15:21:25 +0000 (16:21 +0100)]
Improve warning message code readability.

Signed-off-by: Camila <hello@camila.codes>
3 years agouse QVersionNumber to compare versions and improve upgrade warning
Matthieu Gallien [Tue, 31 Jan 2023 17:43:57 +0000 (18:43 +0100)]
use QVersionNumber to compare versions and improve upgrade warning

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
3 years agofix wrong detectiion of current config file as a config migration
Matthieu Gallien [Tue, 31 Jan 2023 17:41:43 +0000 (18:41 +0100)]
fix wrong detectiion of current config file as a config migration

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
3 years agoFix(l10n): 🔠 Update translations from Transifex
Nextcloud bot [Thu, 2 Feb 2023 03:40:04 +0000 (03:40 +0000)]
Fix(l10n): 🔠 Update translations from Transifex

Signed-off-by: Nextcloud bot <bot@nextcloud.com>
3 years agoFix(l10n): 🔠 Update translations from Transifex
Nextcloud bot [Wed, 1 Feb 2023 03:42:56 +0000 (03:42 +0000)]
Fix(l10n): 🔠 Update translations from Transifex

Signed-off-by: Nextcloud bot <bot@nextcloud.com>
3 years agoMerge pull request #5380 from nextcloud/backport/5379/stable-3.7
Claudio Cambra [Tue, 31 Jan 2023 17:42:05 +0000 (18:42 +0100)]
Merge pull request #5380 from nextcloud/backport/5379/stable-3.7

[stable-3.7] Fix displaying of file details button for local syncfileitem activities

3 years agoFix displaying of file details button for local syncfileitem activities
Claudio Cambra [Tue, 31 Jan 2023 12:03:52 +0000 (13:03 +0100)]
Fix displaying of file details button for local syncfileitem activities

Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
3 years agoFix(l10n): 🔠 Update translations from Transifex
Nextcloud bot [Tue, 31 Jan 2023 03:47:12 +0000 (03:47 +0000)]
Fix(l10n): 🔠 Update translations from Transifex

Signed-off-by: Nextcloud bot <bot@nextcloud.com>
3 years agoprepare for 3.7.0-rc1 release
Matthieu Gallien [Mon, 30 Jan 2023 15:50:51 +0000 (16:50 +0100)]
prepare for 3.7.0-rc1 release

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
3 years agoMerge pull request #5370 from nextcloud/feature/e2ee-folders-unlock-always
Matthieu Gallien [Mon, 30 Jan 2023 15:46:50 +0000 (16:46 +0100)]
Merge pull request #5370 from nextcloud/feature/e2ee-folders-unlock-always

Always unlock E2EE folders, even when network failure or crash.

3 years agoAlways unlock E2EE folders, even when network failure or crash.
alex-z [Wed, 25 Jan 2023 17:09:37 +0000 (18:09 +0100)]
Always unlock E2EE folders, even when network failure or crash.

Signed-off-by: alex-z <blackslayer4@gmail.com>
3 years agoFix(l10n): 🔠 Update translations from Transifex
Nextcloud bot [Mon, 30 Jan 2023 10:24:32 +0000 (10:24 +0000)]
Fix(l10n): 🔠 Update translations from Transifex

Signed-off-by: Nextcloud bot <bot@nextcloud.com>
3 years agoMerge pull request #5362 from nextcloud/bugfix/migrate
Matthieu Gallien [Mon, 30 Jan 2023 09:01:01 +0000 (10:01 +0100)]
Merge pull request #5362 from nextcloud/bugfix/migrate

Migrate old configs

3 years agoAddress PR comments.
Camila [Mon, 23 Jan 2023 16:30:59 +0000 (16:30 +0000)]
Address PR comments.

Signed-off-by: Camila <hello@camila.codes>
3 years agoFix rename.
Camila [Mon, 23 Jan 2023 16:01:49 +0000 (16:01 +0000)]
Fix rename.

Signed-off-by: Camila <hello@camila.codes>
3 years agoBackup all config files in the config folder if there was a version change of the...
Camila [Tue, 27 Dec 2022 21:19:17 +0000 (22:19 +0100)]
Backup all config files in the config folder if there was a version change of the client.

Signed-off-by: Camila <hello@camila.codes>
3 years agoExtend config backup method to make a copy of any given config file.
Camila [Tue, 27 Dec 2022 20:25:40 +0000 (21:25 +0100)]
Extend config backup method to make a copy of any given config file.

Signed-off-by: Camila <hello@camila.codes>
3 years agoLook for a previous config file with a different name.
Camila [Tue, 27 Dec 2022 17:25:23 +0000 (18:25 +0100)]
Look for a previous config file with a different name.

Signed-off-by: Camila <hello@camila.codes>
3 years agoUpdate code style.
Camila [Tue, 27 Dec 2022 17:24:41 +0000 (18:24 +0100)]
Update code style.

Signed-off-by: Camila <hello@camila.codes>
3 years agoRemove obsolete QDesktopServices::storageLocation.
Camila [Tue, 27 Dec 2022 16:27:09 +0000 (17:27 +0100)]
Remove obsolete QDesktopServices::storageLocation.

Use QStandardPaths::writableLocation instead.

Signed-off-by: Camila <hello@camila.codes>
3 years agoMerge pull request #4684 from nextcloud/bugfix/issue-519
Matthieu Gallien [Mon, 30 Jan 2023 08:43:41 +0000 (09:43 +0100)]
Merge pull request #4684 from nextcloud/bugfix/issue-519

Open calendar notifications in the browser.

3 years agoUpdate tests for ActivityData.
Camila [Wed, 2 Nov 2022 17:18:50 +0000 (18:18 +0100)]
Update tests for ActivityData.

Signed-off-by: Camila <hello@camila.codes>
3 years agoOpen calendar notifications in the browser.
Camila [Wed, 29 Jun 2022 15:44:59 +0000 (17:44 +0200)]
Open calendar notifications in the browser.

Signed-off-by: Camila <hello@camila.codes>
3 years agoMerge pull request #5372 from nextcloud/bugfix/revert-mono-config-delete
Claudio Cambra [Fri, 27 Jan 2023 12:16:22 +0000 (13:16 +0100)]
Merge pull request #5372 from nextcloud/bugfix/revert-mono-config-delete

Revert "Merge pull request #5366 from nextcloud/bugfix/remove-mono-icons-setting"

3 years agoRevert "Merge pull request #5366 from nextcloud/bugfix/remove-mono-icons-setting"
Claudio Cambra [Fri, 27 Jan 2023 11:00:40 +0000 (12:00 +0100)]
Revert "Merge pull request #5366 from nextcloud/bugfix/remove-mono-icons-setting"

This reverts commit 5c42da4de5facbea9b06cf7086bee17005be59b2, reversing
changes made to e4b24490307f4337b390b6b484e8d77befffaf1b.

Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
3 years agoMerge pull request #5371 from nextcloud/bugfix/do-not-lock-if-lock-is-not-available
allexzander [Thu, 26 Jan 2023 17:35:51 +0000 (18:35 +0100)]
Merge pull request #5371 from nextcloud/bugfix/do-not-lock-if-lock-is-not-available

Edit locally. Do not lock if locking is disabled on the server.

3 years agoEdit locally. Do not lock if locking is disabled on the server.
alex-z [Thu, 26 Jan 2023 16:00:14 +0000 (17:00 +0100)]
Edit locally. Do not lock if locking is disabled on the server.

Signed-off-by: alex-z <blackslayer4@gmail.com>
3 years agoMerge pull request #5232 from nextcloud/feature/syncWithCaseClashNames
Matthieu Gallien [Thu, 26 Jan 2023 08:05:57 +0000 (09:05 +0100)]
Merge pull request #5232 from nextcloud/feature/syncWithCaseClashNames

Feature/sync with case clash names

3 years agouse auto
Matthieu Gallien [Tue, 24 Jan 2023 21:35:52 +0000 (22:35 +0100)]
use auto

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
3 years agouse #pragma once instead of include guards
Matthieu Gallien [Tue, 24 Jan 2023 21:31:32 +0000 (22:31 +0100)]
use #pragma once instead of include guards

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
3 years agofix copyright notice of new files
Matthieu Gallien [Tue, 24 Jan 2023 21:31:09 +0000 (22:31 +0100)]
fix copyright notice of new files

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
3 years agofix wrong code style
Matthieu Gallien [Tue, 24 Jan 2023 21:25:10 +0000 (22:25 +0100)]
fix wrong code style

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
3 years agosimplify code
Matthieu Gallien [Tue, 24 Jan 2023 21:24:30 +0000 (22:24 +0100)]
simplify code

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
3 years agoremove some not needed debug logs
Matthieu Gallien [Tue, 24 Jan 2023 21:23:24 +0000 (22:23 +0100)]
remove some not needed debug logs

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
3 years agosimplify code
Matthieu Gallien [Tue, 24 Jan 2023 20:27:50 +0000 (21:27 +0100)]
simplify code

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
3 years agomove some void returning methods to be slots
Matthieu Gallien [Tue, 24 Jan 2023 20:21:34 +0000 (21:21 +0100)]
move some void returning methods to be slots

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
3 years agoImprove wording in the case clash resolution dialog
Claudio Cambra [Wed, 14 Dec 2022 19:25:07 +0000 (20:25 +0100)]
Improve wording in the case clash resolution dialog

Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
3 years agoDisplay both files and some metadata in the case clash conflict resolution dialog
Claudio Cambra [Wed, 14 Dec 2022 19:17:24 +0000 (20:17 +0100)]
Display both files and some metadata in the case clash conflict resolution dialog

Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
3 years agoFix case clash dialog sizing issues
Claudio Cambra [Mon, 5 Dec 2022 13:52:07 +0000 (14:52 +0100)]
Fix case clash dialog sizing issues

Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
3 years agoClarify letter casing message in case clash conflict dialog
Claudio Cambra [Mon, 5 Dec 2022 13:28:33 +0000 (14:28 +0100)]
Clarify letter casing message in case clash conflict dialog

Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
3 years agoDisplay action button for conflict files in activity
Claudio Cambra [Mon, 5 Dec 2022 12:54:11 +0000 (13:54 +0100)]
Display action button for conflict files in activity

Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
3 years agohandle case clash conflicts in a similar way to content conflicts
Matthieu Gallien [Wed, 30 Nov 2022 09:34:49 +0000 (10:34 +0100)]
handle case clash conflicts in a similar way to content conflicts

introduce a new type of conflict for case clash filename conflicts

add proper handling including a new utility class to solve them and a
new dialog for the user to pick a fix

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
3 years agoMerge pull request #5366 from nextcloud/bugfix/remove-mono-icons-setting
Claudio Cambra [Wed, 25 Jan 2023 14:22:21 +0000 (15:22 +0100)]
Merge pull request #5366 from nextcloud/bugfix/remove-mono-icons-setting

Remove unused monochrome icons setting

3 years agoRemove monoIcons related things from configfile
Claudio Cambra [Wed, 25 Jan 2023 11:56:26 +0000 (12:56 +0100)]
Remove monoIcons related things from configfile

Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
3 years agoRemove monoIcons-related functionality from theme
Claudio Cambra [Wed, 25 Jan 2023 11:42:47 +0000 (12:42 +0100)]
Remove monoIcons-related functionality from theme

Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
3 years agoRemove mono icons setting from generalsettings
Claudio Cambra [Wed, 25 Jan 2023 11:32:06 +0000 (12:32 +0100)]
Remove mono icons setting from generalsettings

Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
3 years agoRemove 'Use monochrome icons' checkbox from settings UI
Claudio Cambra [Wed, 25 Jan 2023 11:27:42 +0000 (12:27 +0100)]
Remove 'Use monochrome icons' checkbox from settings UI

Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
3 years agoFix(l10n): 🔠 Update translations from Transifex
Nextcloud bot [Wed, 25 Jan 2023 09:12:03 +0000 (09:12 +0000)]
Fix(l10n): 🔠 Update translations from Transifex

Signed-off-by: Nextcloud bot <bot@nextcloud.com>
3 years agoMerge pull request #5167 from nextcloud/feature/disable-e2ee
Claudio Cambra [Tue, 24 Jan 2023 16:35:19 +0000 (17:35 +0100)]
Merge pull request #5167 from nextcloud/feature/disable-e2ee

Add ability to disable E2EE

3 years agoDon't shadow rec variable in removeLocalE2eFiles
Claudio Cambra [Tue, 24 Jan 2023 15:59:43 +0000 (16:59 +0100)]
Don't shadow rec variable in removeLocalE2eFiles

Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
3 years agoRemove faulty else statement from TestFolderman that would erroneously cause failure
Claudio Cambra [Mon, 23 Jan 2023 20:38:46 +0000 (21:38 +0100)]
Remove faulty else statement from TestFolderman that would erroneously cause failure

Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
3 years agoEnsure mocked database entries are correct in TestFolderMan
Claudio Cambra [Mon, 23 Jan 2023 20:37:57 +0000 (21:37 +0100)]
Ensure mocked database entries are correct in TestFolderMan

Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
3 years agoMake encrypted folder paths to delete non-relative when checking if they are encrypted
Claudio Cambra [Mon, 23 Jan 2023 20:36:48 +0000 (21:36 +0100)]
Make encrypted folder paths to delete non-relative when checking if they are encrypted

Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
3 years agoFix folderman delete encrypted files test
Claudio Cambra [Mon, 9 Jan 2023 14:51:26 +0000 (15:51 +0100)]
Fix folderman delete encrypted files test

Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>