Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
183 changes: 183 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,141 @@ ownCloud admins and users.

## Summary

* Bugfix - Fix VFS enable/disable checkbox in the folder wizard: [#12144](https://github.com/owncloud/client/pull/12144)
* Bugfix - Fix file sync with NFD/NFC filename normalization differences on macOS: [#12336](https://github.com/owncloud/client/pull/12336)
* Bugfix - Fix compatibility with extra-cmake-modules-6.19.0: [#12374](https://github.com/owncloud/client/pull/12374)
* Bugfix - Fix crash on PROPFIND HTTP 400 response: [#12380](https://github.com/owncloud/client/pull/12380)
* Bugfix - Make Windows VFS (CfAPI) locking more granular: [#12386](https://github.com/owncloud/client/pull/12386)
* Bugfix - Fix re-authentication prompt: [#12487](https://github.com/owncloud/client/pull/12487)
* Change - Update sync exclusion list for Infinite Scale: [#12093](https://github.com/owncloud/client/pull/12093)
* Change - Remove the command line sync client: [#12162](https://github.com/owncloud/client/pull/12162)
* Change - Remove support for ownCloud Server (OC10): [#12167](https://github.com/owncloud/client/pull/12167)
* Change - Remove the suffix VFS plugin: [#12174](https://github.com/owncloud/client/pull/12174)
* Change - MacOS 13 is now the minimum supported macOS version: [#12245](https://github.com/owncloud/client/pull/12245)
* Change - Qt 6.8 is now the minimum required Qt version: [#12270](https://github.com/owncloud/client/pull/12270)
* Change - Remove the activity tab from account settings: [#12307](https://github.com/owncloud/client/pull/12307)
* Change - Remove bandwidth throttling controls: [#12335](https://github.com/owncloud/client/pull/12335)
* Change - Remove capability to upload conflict files: [#12369](https://github.com/owncloud/client/pull/12369)
* Change - Improve Windows VFS error messages: [#12371](https://github.com/owncloud/client/pull/12371)
* Change - Distinguish between moves and renames in the activity view: [#12494](https://github.com/owncloud/client/pull/12494)
* Enhancement - New account setup wizard: [#12189](https://github.com/owncloud/client/pull/12189)
* Enhancement - System-based configuration (group policy support): [#12367](https://github.com/owncloud/client/pull/12367)
* Enhancement - Redesigned account and folder management view: [#12399](https://github.com/owncloud/client/pull/12399)

## Details

* Bugfix - Fix VFS enable/disable checkbox in the folder wizard: [#12144](https://github.com/owncloud/client/pull/12144)

After unchecking the VFS checkbox on the last page of the folder wizard, it
could not be re-checked. The selective-sync chooser is now correctly disabled
when VFS is forced on, and the selective-sync page is skipped entirely in that
case to avoid confusion.

https://github.com/owncloud/client/pull/12144
https://github.com/owncloud/client/pull/12305

* Bugfix - Fix file sync with NFD/NFC filename normalization differences on macOS: [#12336](https://github.com/owncloud/client/pull/12336)

After a migration from 6.x to 7.x, files whose names were stored in NFD form
locally but NFC form on the server were incorrectly treated as a delete and
re-upload instead of a rename. Local normalization-only renames are now detected
and not propagated to the server, since these differences are not visible to
users.

https://github.com/owncloud/client/pull/12336
https://github.com/owncloud/client/pull/12356

* Bugfix - Fix compatibility with extra-cmake-modules-6.19.0: [#12374](https://github.com/owncloud/client/pull/12374)

Fix runtime crash at startup with ECM 6.19.

https://github.com/owncloud/client/pull/12374

* Bugfix - Fix crash on PROPFIND HTTP 400 response: [#12380](https://github.com/owncloud/client/pull/12380)

The client no longer crashes when a server responds with HTTP status 400 to a
PROPFIND request.

https://github.com/owncloud/client/pull/12380

* Bugfix - Make Windows VFS (CfAPI) locking more granular: [#12386](https://github.com/owncloud/client/pull/12386)

CfAPI locks are now acquired and released more precisely, reducing contention.
Sibling items are now consistently grouped in the Explorer sidebar.

https://github.com/owncloud/client/pull/12386

* Bugfix - Fix re-authentication prompt: [#12487](https://github.com/owncloud/client/pull/12487)

When an access token expired but the refresh token was still valid, the client
incorrectly prompted the user to re-authenticate instead of transparently
refreshing the token.

https://github.com/owncloud/client/pull/12487

* Change - Update sync exclusion list for Infinite Scale: [#12093](https://github.com/owncloud/client/pull/12093)

Two file extensions commonly produced by ownCloud Infinite Scale were added to
the default sync exclusion list.

https://github.com/owncloud/client/pull/12093

* Change - Remove the command line sync client: [#12162](https://github.com/owncloud/client/pull/12162)

The `owncloudcmd` command line client has been removed. The `--cmd` command line
option was also removed from the desktop client binary.

https://github.com/owncloud/client/pull/12162
https://github.com/owncloud/client/pull/12460

* Change - Remove support for ownCloud Server (OC10): [#12167](https://github.com/owncloud/client/pull/12167)

Support for ownCloud 10 servers has been removed. The client now requires
ownCloud Infinite Scale. This includes removal of OC10 authentication flows,
sharing code, thumbnail API, update channels, chunked uploads, and the legacy
WebFinger fallback.

https://github.com/owncloud/client/pull/12167
https://github.com/owncloud/client/pull/12176
https://github.com/owncloud/client/pull/12198
https://github.com/owncloud/client/pull/12204
https://github.com/owncloud/client/pull/12222
https://github.com/owncloud/client/pull/12302
https://github.com/owncloud/client/pull/12429

* Change - Remove the suffix VFS plugin: [#12174](https://github.com/owncloud/client/pull/12174)

The suffix-based virtual file system plugin, which was deprecated in 6.0, has
been removed.

https://github.com/owncloud/client/pull/12174

* Change - MacOS 13 is now the minimum supported macOS version: [#12245](https://github.com/owncloud/client/pull/12245)

https://github.com/owncloud/client/pull/12245

* Change - Qt 6.8 is now the minimum required Qt version: [#12270](https://github.com/owncloud/client/pull/12270)

The minimum required Qt version was raised to 6.8. This also raises the minimum
macOS deployment target to 12.

https://github.com/owncloud/client/pull/12270
https://github.com/owncloud/client/pull/12271

* Change - Remove the activity tab from account settings: [#12307](https://github.com/owncloud/client/pull/12307)

The activity tab was no longer functional after the removal of ownCloud 10
support and has been removed.

https://github.com/owncloud/client/pull/12307

* Change - Remove bandwidth throttling controls: [#12335](https://github.com/owncloud/client/pull/12335)

The bandwidth throttling settings UI and the underlying BandWidthManager have
been removed.

https://github.com/owncloud/client/pull/12335

* Change - Remove capability to upload conflict files: [#12369](https://github.com/owncloud/client/pull/12369)

None of the supported servers implements (or plans on implementing) this
Expand All @@ -69,6 +193,65 @@ ownCloud admins and users.

https://github.com/owncloud/client/pull/12369

* Change - Improve Windows VFS error messages: [#12371](https://github.com/owncloud/client/pull/12371)

Error codes are now included in Windows virtual file system error messages in
more cases, making issues easier to diagnose.

https://github.com/owncloud/client/pull/12371

* Change - Distinguish between moves and renames in the activity view: [#12494](https://github.com/owncloud/client/pull/12494)

When a move operation has the same source and destination folder, it is now
displayed as a rename in the activity view instead of a move.

https://github.com/owncloud/client/pull/12494

* Enhancement - New account setup wizard: [#12189](https://github.com/owncloud/client/pull/12189)

The account setup wizard was completely redesigned. The new wizard uses a modern
step-by-step flow with WebFinger-based server discovery, improved error
handling, and a configurable branded appearance including themed logos and
colors.

https://github.com/owncloud/client/pull/12189
https://github.com/owncloud/client/pull/12203
https://github.com/owncloud/client/pull/12212
https://github.com/owncloud/client/pull/12213
https://github.com/owncloud/client/pull/12216
https://github.com/owncloud/client/pull/12221
https://github.com/owncloud/client/pull/12226
https://github.com/owncloud/client/pull/12233
https://github.com/owncloud/client/pull/12235
https://github.com/owncloud/client/pull/12237
https://github.com/owncloud/client/pull/12277

* Enhancement - System-based configuration (group policy support): [#12367](https://github.com/owncloud/client/pull/12367)

Administrators can now configure the client through system-level mechanisms:
group policy on Windows, and system configuration files on macOS and Linux. This
allows pre-configuring server URLs, authentication settings, and other options
for managed deployments.

https://github.com/owncloud/client/pull/12367

* Enhancement - Redesigned account and folder management view: [#12399](https://github.com/owncloud/client/pull/12399)

The account and folder management panel was rewritten with a new model/delegate
architecture. It features improved error display, better tree navigation,
context menus for folder actions, and visual polish throughout.

https://github.com/owncloud/client/pull/12399
https://github.com/owncloud/client/pull/12407
https://github.com/owncloud/client/pull/12441
https://github.com/owncloud/client/pull/12456
https://github.com/owncloud/client/pull/12463
https://github.com/owncloud/client/pull/12468
https://github.com/owncloud/client/pull/12472
https://github.com/owncloud/client/pull/12477
https://github.com/owncloud/client/pull/12478
https://github.com/owncloud/client/pull/12480

# Changelog for ownCloud Desktop Client [6.0.3] (2026-01-07)

The following sections list the changes in ownCloud Desktop Client 6.0.3 relevant to
Expand Down
2 changes: 1 addition & 1 deletion VERSION.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set( MIRALL_VERSION_YEAR 2026 )
set( MIRALL_SOVERSION 0 )

if ( NOT DEFINED MIRALL_VERSION_SUFFIX )
set( MIRALL_VERSION_SUFFIX "rc.3") #e.g. beta1, beta2, rc.1
set( MIRALL_VERSION_SUFFIX "rc.4") #e.g. beta1, beta2, rc.1
endif( NOT DEFINED MIRALL_VERSION_SUFFIX )

if( NOT DEFINED MIRALL_VERSION_BUILD )
Expand Down
Loading