File tree Expand file tree Collapse file tree 4 files changed +14
-2
lines changed
Expand file tree Collapse file tree 4 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 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+
18Changes 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 )
Original file line number Diff line number Diff line change 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" : {
Original file line number Diff line number Diff line change 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" : {
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments