Skip to content

Commit

Permalink
Release v5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian Müller committed Oct 5, 2023
1 parent e2b50f6 commit 8f9152e
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 4 deletions.
85 changes: 82 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Changelog for ownCloud Desktop Client [unreleased] (UNRELEASED)
Changelog for ownCloud Desktop Client [5.0.0] (2023-10-05)
=======================================
The following sections list the changes in ownCloud Desktop Client unreleased relevant to
The following sections list the changes in ownCloud Desktop Client 5.0.0 relevant to
ownCloud admins and users.

[unreleased]: https://github.com/owncloud/client/compare/v4.2.0...master
[5.0.0]: https://github.com/owncloud/client/compare/v4.2.0...v5.0.0

Summary
-------
Expand All @@ -18,11 +18,21 @@ Summary
* Bugfix - Crash during application shutdown: [#11016](https://github.com/owncloud/client/issues/11016)
* Bugfix - Hide hidden folders again in the selective sync view: [#11047](https://github.com/owncloud/client/issues/11047)
* Bugfix - Fix check if a file is a placeholder: [#11107](https://github.com/owncloud/client/issues/11107)
* Bugfix - Hydration state of file after a directory was replaced with a file: [#11162](https://github.com/owncloud/client/pull/11162)
* Bugfix - Only syncronize after the server settings where refreshed: [#11168](https://github.com/owncloud/client/issues/11168)
* Bugfix - Consitently use the same icon for folders: [#11190](https://github.com/owncloud/client/pull/11190)
* Bugfix - Branding of folder status overlay: [#11192](https://github.com/owncloud/client/pull/11192)
* Bugfix - Creation of folder on the server: [#11232](https://github.com/owncloud/client/issues/11232)
* Bugfix - Selective sync when not the remote root is synced: [#11233](https://github.com/owncloud/client/issues/11233)
* Change - Extract Nautilus: [#8991](https://github.com/owncloud/client/issues/8991)
* Change - Remove support for sidebar entries for non-vfs setups on Windows: [#10788](https://github.com/owncloud/client/issues/10788)
* Change - Remove support for client side system proxy credentials: [#10866](https://github.com/owncloud/client/pull/10866)
* Change - Modernize systray menu: [#10939](https://github.com/owncloud/client/issues/10939)
* Change - We removed the pre 2.9 credentials migration: [#11081](https://github.com/owncloud/client/pull/11081)
* Change - Remove libcloudproviders integration: [#11148](https://github.com/owncloud/client/issues/11148)
* Change - Disable context menu item to get a public link for a space: [#11242](https://github.com/owncloud/client/issues/11242)
* Enhancement - Store proxy password securely: [#261](https://github.com/owncloud/client/issues/261)
* Enhancement - Windows VFS: Prevent rename to ignored file name: [#8216](https://github.com/owncloud/client/issues/8216)
* Enhancement - Change how all files deleted is handled: [#8360](https://github.com/owncloud/client/issues/8360)
* Enhancement - Port from QtSingleApplication to KDSingleApplication: [#8432](https://github.com/owncloud/client/issues/8432)
* Enhancement - Enable crash reporter in commandline client: [#8991](https://github.com/owncloud/client/issues/8991)
Expand Down Expand Up @@ -103,6 +113,50 @@ Details

https://github.com/owncloud/client/issues/11107

* Bugfix - Hydration state of file after a directory was replaced with a file: [#11162](https://github.com/owncloud/client/pull/11162)

If a synced directory was replaced with a file on the server, we downloaded it instead of
replacing the folder with a VirtualFile placeholder.

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

* Bugfix - Only syncronize after the server settings where refreshed: [#11168](https://github.com/owncloud/client/issues/11168)

We fixed an issue where the sync was started on outdated server settings.

https://github.com/owncloud/client/issues/11168

* Bugfix - Consitently use the same icon for folders: [#11190](https://github.com/owncloud/client/pull/11190)

In 4.0 we introduced a new icon for sync connections. In some places however we continued to use
the system provided icon for folders, this resulted in an inconsitent applicaiton look.

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

* Bugfix - Branding of folder status overlay: [#11192](https://github.com/owncloud/client/pull/11192)

We fixed a bug where branded overlay icons for the display of the sync status where not used.

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

* Bugfix - Creation of folder on the server: [#11232](https://github.com/owncloud/client/issues/11232)

We fixed an issue in the FolderSyncWizard when the user provided a path with multiple slashes
(//folder).

https://github.com/owncloud/client/issues/11232

* Bugfix - Selective sync when not the remote root is synced: [#11233](https://github.com/owncloud/client/issues/11233)

https://github.com/owncloud/client/issues/11233

* Change - Extract Nautilus: [#8991](https://github.com/owncloud/client/issues/8991)

While the crash reporter still requires a graphical user interface to work, this change
nevertheless simplifies reporting crashes from the commandline client a lot.

https://github.com/owncloud/client/issues/8991

* Change - Remove support for sidebar entries for non-vfs setups on Windows: [#10788](https://github.com/owncloud/client/issues/10788)

For vfs setups, this is handled by Windows itself.
Expand Down Expand Up @@ -130,10 +184,35 @@ Details

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

* Change - Remove libcloudproviders integration: [#11148](https://github.com/owncloud/client/issues/11148)

Since its implementation in 2019 our support our for it was 'limited'. Additionally as far as we
can tell it was not picked up by any major Linux distribution.

https://github.com/owncloud/client/issues/11148
https://github.com/owncloud/client/pull/11157

* Change - Disable context menu item to get a public link for a space: [#11242](https://github.com/owncloud/client/issues/11242)

The context menu item "Create and copy public link to clipboard" didn't work correctly when
used with Spaces: users were always redirected to the web frontend. This menu item is now
disabled, waiting for a server-side changes.

https://github.com/owncloud/client/issues/11242
https://github.com/owncloud/client/pull/11079

* Enhancement - Store proxy password securely: [#261](https://github.com/owncloud/client/issues/261)

https://github.com/owncloud/client/issues/261

* Enhancement - Windows VFS: Prevent rename to ignored file name: [#8216](https://github.com/owncloud/client/issues/8216)

We now prevent ranems of virtual files to ignored file names. This basically resulted in a delte
on the server and a local placeholder that pointed to a non existing file.

https://github.com/owncloud/client/issues/8216
https://github.com/owncloud/client-desktop-vfs-win/pull/63

* Enhancement - Change how all files deleted is handled: [#8360](https://github.com/owncloud/client/issues/8360)

When the client detects that all files are deleted on either side of the sync, the client now
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 2023 )
set( MIRALL_SOVERSION 0 )

if ( NOT DEFINED MIRALL_VERSION_SUFFIX )
set( MIRALL_VERSION_SUFFIX "git") #e.g. beta1, beta2, rc1
set( MIRALL_VERSION_SUFFIX "") #e.g. beta1, beta2, rc1
endif( NOT DEFINED MIRALL_VERSION_SUFFIX )

if( NOT DEFINED MIRALL_VERSION_BUILD )
Expand Down

0 comments on commit 8f9152e

Please sign in to comment.