From 78f7ff1609ec74fb44aecd010c747d4c2cc81a98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20M=C3=BCller?= Date: Wed, 7 Jun 2023 11:19:56 +0200 Subject: [PATCH] v4.1.0-rc.2 --- CHANGELOG.md | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++- VERSION.cmake | 2 +- 2 files changed, 55 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c035f4792f..00ce2526601 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,60 @@ Changelog for ownCloud Desktop Client [unreleased] (UNRELEASED) The following sections list the changes in ownCloud Desktop Client unreleased relevant to ownCloud admins and users. -[unreleased]: https://github.com/owncloud/client/compare/v3.2.1...master +[unreleased]: https://github.com/owncloud/client/compare/v4.0.0...master + +Summary +------- + +* Bugfix - Follow same site redirects in the Wizard: [#5743](https://github.com/owncloud/enterprise/issues/5743) +* Bugfix - Show systray status when a sync error occurred: [#10834](https://github.com/owncloud/client/issues/10834) +* Bugfix - Owncloudcmd: Ensure plugin path is initialized on Linux: [#10842](https://github.com/owncloud/client/issues/10842) +* Bugfix - Use correct user name with basic auth and LDAP: [#10856](https://github.com/owncloud/client/issues/10856) +* Enhancement - Allow users to call commandline client from AppImage: [#10888](https://github.com/owncloud/client/issues/10888) + +Details +------- + +* Bugfix - Follow same site redirects in the Wizard: [#5743](https://github.com/owncloud/enterprise/issues/5743) + + We fixed a bug where the client did not follow same site redirects during the setup. If the used + url https://test.com/owncloud redirected to https://test.com the new url was not correctly + used for the newly created account. + + https://github.com/owncloud/enterprise/issues/5743 + +* Bugfix - Show systray status when a sync error occurred: [#10834](https://github.com/owncloud/client/issues/10834) + + The systray menu for the ownCloud icon has an entry that shows the sync status. However, when a + sync error occurred, the entry would have no text in it. This has now been fixed. + + https://github.com/owncloud/client/issues/10834 + +* Bugfix - Owncloudcmd: Ensure plugin path is initialized on Linux: [#10842](https://github.com/owncloud/client/issues/10842) + + https://github.com/owncloud/client/issues/10842 + +* Bugfix - Use correct user name with basic auth and LDAP: [#10856](https://github.com/owncloud/client/issues/10856) + + Whith basic auth the name from the login credentials might not align with the name on the server. + We corrected the assumption and no longer change the user name. + + https://github.com/owncloud/client/issues/10856 + +* Enhancement - Allow users to call commandline client from AppImage: [#10888](https://github.com/owncloud/client/issues/10888) + + When the AppImage is called with the new commandline parameter --cmd, it will internally + dispatch the call to the contained owncloudcmd binary. Otherwise, the call will be forwarded + to the regular owncloud GUI binary as before. + + https://github.com/owncloud/client/issues/10888 + +Changelog for ownCloud Desktop Client [4.0.0] (2023-05-11) +======================================= +The following sections list the changes in ownCloud Desktop Client 4.0.0 relevant to +ownCloud admins and users. + +[4.0.0]: https://github.com/owncloud/client/compare/v3.2.1...v4.0.0 Summary ------- diff --git a/VERSION.cmake b/VERSION.cmake index 5e2e5f5f5ef..cd5311f64e6 100644 --- a/VERSION.cmake +++ b/VERSION.cmake @@ -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 "rc.2") #e.g. beta.1, beta.2, rc.1 endif( NOT DEFINED MIRALL_VERSION_SUFFIX ) if( NOT DEFINED MIRALL_VERSION_BUILD )