Skip to content

Commit

Permalink
v4.1.0-rc.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian Müller committed Jun 7, 2023
1 parent b4ae65d commit 78f7ff1
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 2 deletions.
55 changes: 54 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
-------
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 "rc.2") #e.g. beta.1, beta.2, rc.1
endif( NOT DEFINED MIRALL_VERSION_SUFFIX )

if( NOT DEFINED MIRALL_VERSION_BUILD )
Expand Down

0 comments on commit 78f7ff1

Please sign in to comment.