-
Notifications
You must be signed in to change notification settings - Fork 668
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into work/load-translations-early
- Loading branch information
Showing
53 changed files
with
1,698 additions
and
1,363 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,12 +30,12 @@ __TODO__: | |
### Copy for Each Build (Beta/RC) | ||
|
||
* [ ] DEV: Tag (Beta or RC) and build [builds](https://confluence.owncloud.com/display/OG/Build+and+Tags#BuildandTags-Sprintbuild) for theme 'ownCloud' and 'testpilotcloud' (includes ChangeLog for the tag on https://github.com/owncloud/client/releases/) | ||
* [ ] Smoke test | ||
* [ ] GitHub release | ||
* [ ] QA: [Smoke test](https://owncloud.testrail.io/index.php?/cases/view/2469) (for public prelease) | ||
* [ ] DEV: GitHub release | ||
* [ ] Beta/RC [Communication](https://confluence.owncloud.com/x/loJK) | ||
* [ ] Inform ``#updates`` and ``#marketing`` that we have Beta/RC | ||
* [ ] For public prerelease: Tell marketing to send email to beta testers | ||
* [ ] For public prerelease: Write Central post https://central.owncloud.org/tags/c/news/desktop with link to github release | ||
* [ ] Inform ``#updates`` that we have Beta/RC | ||
* [ ] For public prerelease: Inform ``#marketing`` and tell them to send email to beta testers | ||
* [ ] For public prerelease: Write/edit Central post https://central.owncloud.org/tags/c/news/desktop with link to github release | ||
* [ ] DEV: Prepare the update server for new version (AppImages included) | ||
* [ ] DEV: Provide 'testpilotcloud' on **Beta** update channel | ||
|
||
|
@@ -73,11 +73,12 @@ __TODO__: | |
|
||
* [ ] QA: [Smoke test](https://confluence.owncloud.com/display/OG/Manual+Tests#ManualTests-SmokeTest) | ||
* [ ] DEV: Publish the release in GitHub | ||
* [ ] QA: Update lines 4 and 5 of [install docs](https://github.com/owncloud/docs-client-desktop/blob/master/modules/ROOT/pages/installing.adoc) with the final build number | ||
* [ ] QA: Check that [documentation](https://doc.owncloud.com/desktop/next/) offers the new version | ||
|
||
### [Marketing and Communication](https://confluence.owncloud.com/display/OG/Marketing+and+Communication) | ||
|
||
* [ ] QA: Ping ``#marketing``: @bwalter to update links on https://owncloud.com/desktop-app/ (provide links from github releases) and @mfeilner to update [wiki de](https://de.wikipedia.org/wiki/OwnCloud), [wiki en](https://en.wikipedia.org/wiki/OwnCloud), [wikidata](https://www.wikidata.org/wiki/Q20763576)) | ||
* [ ] QA: Ping ``#marketing``at [email protected]; @bwalter to update links on https://owncloud.com/desktop-app/ (provide links from github releases) and @mfeilner to update [wiki de](https://de.wikipedia.org/wiki/OwnCloud), [wiki en](https://en.wikipedia.org/wiki/OwnCloud), [wikidata](https://www.wikidata.org/wiki/Q20763576)) | ||
* [ ] QA: Central post https://central.owncloud.org/tags/c/news/desktop | ||
* [ ] QA: Inform on ``#updates`` channel | ||
* [ ] QA: Inform [packagers](https://confluence.owncloud.com/x/QYLEAg) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Change: Windows: always use fusion style | ||
|
||
We already used the fusion style on Windows for years if the system used dpi scaling. | ||
Since Qt6.5 the fusion style also support the dark theme on Windows. | ||
Those two reasons convinced us that always using the fusion style on Windows will result | ||
in the best experience for the users. | ||
|
||
https://github.com/owncloud/client/issues/11275 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Bugfix: Fix crash on start-up when starting shell integration | ||
|
||
A possible crash has been fixed that could occur during start-up, when | ||
the shell integration started doing requests before the client itself | ||
completed starting up. | ||
|
||
https://github.com/owncloud/client/issues/11280 | ||
https://github.com/owncloud/client/pull/11288 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Bugfix: Properly schedule the sync after an account was added | ||
|
||
We fixed a bug where a folder was scheduled to be synced before the account reported it was ready. | ||
This resulted in the sync having no effect and the folder was then only synced once we polled the etag. | ||
|
||
https://github.com/owncloud/client/issues/11308 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Bugfix: Don't start credentials save jobs during shutdown | ||
|
||
Due to a bug we "re saved" the credentials during application shutdown. | ||
As the application was quitting while the jobs where running we might have encountered corruped credentials or crashes. | ||
|
||
https://github.com/owncloud/client/pull/11313 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.