Skip to content

Commit f81d3bc

Browse files
committed
Merge branch 'release-v0.17.2'
2 parents ecfafc6 + 8813206 commit f81d3bc

File tree

5 files changed

+12
-10
lines changed

5 files changed

+12
-10
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
Changes in [0.17.2](https://github.com/vector-im/riot-web/releases/tag/v0.17.2) (2018-10-19)
2+
============================================================================================
3+
[Full Changelog](https://github.com/vector-im/riot-web/compare/v0.17.1...v0.17.2)
4+
5+
* Update react-sdk version to "Apply the user's tint once the MatrixClientPeg is moderately ready"
6+
* Electron: don't set tags on notifications
7+
[\#7518](https://github.com/vector-im/riot-web/pull/7518)
8+
19
Changes in [0.17.1](https://github.com/vector-im/riot-web/releases/tag/v0.17.1) (2018-10-18)
210
============================================================================================
311
[Full Changelog](https://github.com/vector-im/riot-web/compare/v0.17.0...v0.17.1)

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.1",
5+
"version": "0.17.2",
66
"description": "A feature-rich client for Matrix.org",
77
"author": "Vector Creations Ltd.",
88
"dependencies": {

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
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.1",
5+
"version": "0.17.2",
66
"description": "A feature-rich client for Matrix.org",
77
"author": "New Vector Ltd.",
88
"repository": {
@@ -71,7 +71,7 @@
7171
"gfm.css": "^1.1.2",
7272
"highlight.js": "^9.0.0",
7373
"matrix-js-sdk": "0.12.0",
74-
"matrix-react-sdk": "0.14.0",
74+
"matrix-react-sdk": "0.14.1",
7575
"modernizr": "^3.6.0",
7676
"prop-types": "^15.6.2",
7777
"react": "^15.6.0",

src/vector/platform/ElectronPlatform.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ export default class ElectronPlatform extends VectorBasePlatform {
143143
{
144144
body: msg,
145145
icon: avatarUrl,
146-
tag: 'vector',
147146
silent: true, // we play our own sounds
148147
},
149148
);
@@ -169,11 +168,6 @@ export default class ElectronPlatform extends VectorBasePlatform {
169168
}
170169

171170
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;
177171
notif.close();
178172
}
179173

0 commit comments

Comments
 (0)