Skip to content

Commit ecfafc6

Browse files
committed
Merge branch 'release-v0.17.0'
2 parents 17e84bf + a7ea51f commit ecfafc6

File tree

4 files changed

+14
-2
lines changed

4 files changed

+14
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Changes in [0.17.1](https://github.com/vector-im/riot-web/releases/tag/v0.17.1) (2018-10-18)
2+
============================================================================================
3+
[Full Changelog](https://github.com/vector-im/riot-web/compare/v0.17.0...v0.17.1)
4+
5+
* Stop electron crashing
6+
[\#7517](https://github.com/vector-im/riot-web/pull/7517)
7+
18
Changes in [0.17.0](https://github.com/vector-im/riot-web/releases/tag/v0.17.0) (2018-10-16)
29
============================================================================================
310
[Full Changelog](https://github.com/vector-im/riot-web/compare/v0.17.0-rc.1...v0.17.0)

electron_app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "riot-web",
33
"productName": "Riot",
44
"main": "src/electron-main.js",
5-
"version": "0.17.0",
5+
"version": "0.17.1",
66
"description": "A feature-rich client for Matrix.org",
77
"author": "Vector Creations Ltd.",
88
"dependencies": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "riot-web",
33
"productName": "Riot",
44
"main": "electron_app/src/electron-main.js",
5-
"version": "0.17.0",
5+
"version": "0.17.1",
66
"description": "A feature-rich client for Matrix.org",
77
"author": "New Vector Ltd.",
88
"repository": {

src/vector/platform/ElectronPlatform.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,11 @@ export default class ElectronPlatform extends VectorBasePlatform {
169169
}
170170

171171
clearNotification(notif: Notification) {
172+
// This crashes on windows under certain circumstances: can't find any
173+
// workaround other than not closing notifs.
174+
// https://github.com/electron/electron/issues/15251
175+
// https://github.com/vector-im/riot-web/issues/7512
176+
if (window.process.platform === 'win32') return;
172177
notif.close();
173178
}
174179

0 commit comments

Comments
 (0)