Skip to content

Commit

Permalink
Release v4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian Müller committed Aug 7, 2023
1 parent 74af187 commit f5a29bc
Show file tree
Hide file tree
Showing 2 changed files with 87 additions and 4 deletions.
89 changes: 86 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,92 @@
Changelog for ownCloud Desktop Client [unreleased] (UNRELEASED)
Changelog for ownCloud Desktop Client [4.2.0] (2023-08-07)
=======================================
The following sections list the changes in ownCloud Desktop Client unreleased relevant to
The following sections list the changes in ownCloud Desktop Client 4.2.0 relevant to
ownCloud admins and users.

[unreleased]: https://github.com/owncloud/client/compare/v3.2.1...master
[4.2.0]: https://github.com/owncloud/client/compare/v4.1.0...v4.2.0

Summary
-------

* Bugfix - Wrong davUser in cmd client: [#10946](https://github.com/owncloud/client/issues/10946)
* Bugfix - Missing mtime in ocis uploads: [#10950](https://github.com/owncloud/client/issues/10950)

Details
-------

* Bugfix - Wrong davUser in cmd client: [#10946](https://github.com/owncloud/client/issues/10946)

We fixed a bug where the wrong dav user was used in the url, when the username from the credentials
differed from the username used on the server.

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

* Bugfix - Missing mtime in ocis uploads: [#10950](https://github.com/owncloud/client/issues/10950)

When uploading a file to ocis the server ignores the X-OC-Mtime header and expects the mtime to
be part of the Upload-Metadata header. We now provide both.

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

Changelog for ownCloud Desktop Client [4.1.0] (2023-06-15)
=======================================
The following sections list the changes in ownCloud Desktop Client 4.1.0 relevant to
ownCloud admins and users.

[4.1.0]: https://github.com/owncloud/client/compare/v4.0.0...v4.1.0

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 "") #e.g. beta1, beta2, rc1
endif( NOT DEFINED MIRALL_VERSION_SUFFIX )

if( NOT DEFINED MIRALL_VERSION_BUILD )
Expand Down

0 comments on commit f5a29bc

Please sign in to comment.