Skip to content

Commit 48cd88b

Browse files
committed
v3.0.0-beta2
1 parent b4197d4 commit 48cd88b

File tree

2 files changed

+41
-1
lines changed

2 files changed

+41
-1
lines changed

CHANGELOG.md

+40
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Summary
1111
* Bugfix - Don't unset implicit log flush: [#9515](https://github.com/owncloud/client/pull/9515)
1212
* Bugfix - We fixed a crash: [#10017](https://github.com/owncloud/client/pull/10017)
1313
* Bugfix - Sync status changes are now directly displayed: [#10101](https://github.com/owncloud/client/issues/10101)
14+
* Bugfix - Windows VFS fixed some failing downloads: [#49](https://github.com/owncloud/client-desktop-vfs-win/pull/49)
1415
* Bugfix - Don't trigger ignore list when files are locked on the server: [#5382](https://github.com/owncloud/enterprise/issues/5382)
1516
* Bugfix - Properly resume upload with a partial local discovery: [#5382](https://github.com/owncloud/enterprise/issues/5382)
1617
* Bugfix - Add request time and other missing data to .owncloudsync.log: [#7348](https://github.com/owncloud/client/issues/7348)
@@ -23,6 +24,10 @@ Summary
2324
* Bugfix - Fix adding bookmarks on Gtk+ 3 based desktops: [#9752](https://github.com/owncloud/client/pull/9752)
2425
* Bugfix - Stop the activity spinner when the request failed: [#9798](https://github.com/owncloud/client/issues/9798)
2526
* Bugfix - Changes during upload of a file could still trigger the ignore list: [#9924](https://github.com/owncloud/client/issues/9924)
27+
* Change - Windows: Update the folder icon on every start: [#10184](https://github.com/owncloud/client/issues/10184)
28+
* Change - Don't guess remote folder in owncloudcmd: [#10193](https://github.com/owncloud/client/issues/10193)
29+
* Change - When connected to oCIS, open the browser instead of the sharing dialog: [#10206](https://github.com/owncloud/client/issues/10206)
30+
* Change - Owncloudcmd OCIS support: [#10239](https://github.com/owncloud/client/pull/10239)
2631
* Change - Make sharedialog preview be more resilient: [#8938](https://github.com/owncloud/client/issues/8938)
2732
* Change - We no longer persist cookies: [#9495](https://github.com/owncloud/client/issues/9495)
2833
* Change - We removed support for ownCloud servers < 10.0: [#9578](https://github.com/owncloud/client/issues/9578)
@@ -74,6 +79,12 @@ Details
7479

7580
https://github.com/owncloud/client/issues/10101
7681

82+
* Bugfix - Windows VFS fixed some failing downloads: [#49](https://github.com/owncloud/client-desktop-vfs-win/pull/49)
83+
84+
We fixed an api issue where some downloads in the Explorer caused infite download restarts.
85+
86+
https://github.com/owncloud/client-desktop-vfs-win/pull/49
87+
7788
* Bugfix - Don't trigger ignore list when files are locked on the server: [#5382](https://github.com/owncloud/enterprise/issues/5382)
7889

7990
https://github.com/owncloud/enterprise/issues/5382
@@ -148,6 +159,35 @@ Details
148159

149160
https://github.com/owncloud/client/issues/9924
150161

162+
* Change - Windows: Update the folder icon on every start: [#10184](https://github.com/owncloud/client/issues/10184)
163+
164+
The ownCloud installation path might have changed, causing the desktop.ini to point at the
165+
wrong path. We now update the icon location on every application start.
166+
167+
https://github.com/owncloud/client/issues/10184
168+
169+
* Change - Don't guess remote folder in owncloudcmd: [#10193](https://github.com/owncloud/client/issues/10193)
170+
171+
The commandline client was modified to explicitly accept remote folder, the remote folder
172+
must no longer be encoded in the server url.
173+
174+
https://github.com/owncloud/client/issues/10193
175+
176+
* Change - When connected to oCIS, open the browser instead of the sharing dialog: [#10206](https://github.com/owncloud/client/issues/10206)
177+
178+
When connected to oCIS, we now open the browser and navigate to the file the user wanted to share
179+
instead of opening the legacy sharing dialog.
180+
181+
https://github.com/owncloud/client/issues/10206
182+
183+
* Change - Owncloudcmd OCIS support: [#10239](https://github.com/owncloud/client/pull/10239)
184+
185+
When using ocis and spaces with the cmd client the additional parameter `--server` is
186+
required. `--server` spcifies the url to the server, while the positional parameter
187+
'server_url' specifies the webdav url.
188+
189+
https://github.com/owncloud/client/pull/10239
190+
151191
* Change - Make sharedialog preview be more resilient: [#8938](https://github.com/owncloud/client/issues/8938)
152192

153193
We no longer enforce png thumbnails. We no longer replace the file icon if the thumbnail is

VERSION.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set( MIRALL_VERSION_YEAR 2022 )
55
set( MIRALL_SOVERSION 0 )
66

77
if ( NOT DEFINED MIRALL_VERSION_SUFFIX )
8-
set( MIRALL_VERSION_SUFFIX "git") #e.g. beta1, beta2, rc1
8+
set( MIRALL_VERSION_SUFFIX "beta2") #e.g. beta1, beta2, rc1
99
endif( NOT DEFINED MIRALL_VERSION_SUFFIX )
1010

1111
if( NOT DEFINED MIRALL_VERSION_BUILD )

0 commit comments

Comments
 (0)