Skip to content

Commit 3d8d665

Browse files
committed
Merge branch 'master' into develop
2 parents f483fd3 + 17e84bf commit 3d8d665

File tree

5 files changed

+67
-6
lines changed

5 files changed

+67
-6
lines changed

CHANGELOG.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,55 @@
1+
Changes in [0.17.0](https://github.com/vector-im/riot-web/releases/tag/v0.17.0) (2018-10-16)
2+
============================================================================================
3+
[Full Changelog](https://github.com/vector-im/riot-web/compare/v0.17.0-rc.1...v0.17.0)
4+
5+
* Phased rollout of lazyloading
6+
[\#7503](https://github.com/vector-im/riot-web/pull/7503)
7+
* Update to latest electron builder
8+
[\#7501](https://github.com/vector-im/riot-web/pull/7501)
9+
10+
Changes in [0.17.0-rc.1](https://github.com/vector-im/riot-web/releases/tag/v0.17.0-rc.1) (2018-10-11)
11+
======================================================================================================
12+
[Full Changelog](https://github.com/vector-im/riot-web/compare/v0.16.5...v0.17.0-rc.1)
13+
14+
* Revert "also commit the lock file when bumping version as it is now
15+
committed to the repo"
16+
[\#7483](https://github.com/vector-im/riot-web/pull/7483)
17+
* Update from Weblate.
18+
[\#7478](https://github.com/vector-im/riot-web/pull/7478)
19+
* Fix riot-web Promise.defer warnings (#7409)
20+
[\#7444](https://github.com/vector-im/riot-web/pull/7444)
21+
* Use HTTPS cloning for riot-web too
22+
[\#7459](https://github.com/vector-im/riot-web/pull/7459)
23+
* Disable webpack-dev-server auto reload
24+
[\#7463](https://github.com/vector-im/riot-web/pull/7463)
25+
* Silence bluebird warnings
26+
[\#7462](https://github.com/vector-im/riot-web/pull/7462)
27+
* Fix reskindex on matrix-react-side not being called if using build script
28+
[\#7443](https://github.com/vector-im/riot-web/pull/7443)
29+
* Fix double-closed tags
30+
[\#7454](https://github.com/vector-im/riot-web/pull/7454)
31+
* Document how to turn off Piwik and bug reports (#6738)
32+
[\#7435](https://github.com/vector-im/riot-web/pull/7435)
33+
* also commit the lock file when bumping version as it is now committed to the
34+
repo
35+
[\#7429](https://github.com/vector-im/riot-web/pull/7429)
36+
* Update a bunch of deps
37+
[\#7393](https://github.com/vector-im/riot-web/pull/7393)
38+
* Don't show mobile guide if deep linking
39+
[\#7415](https://github.com/vector-im/riot-web/pull/7415)
40+
* Don't show custom server bit on matrix.org
41+
[\#7408](https://github.com/vector-im/riot-web/pull/7408)
42+
* Update Webpack to version 4
43+
[\#6620](https://github.com/vector-im/riot-web/pull/6620)
44+
* Webpack4
45+
[\#7387](https://github.com/vector-im/riot-web/pull/7387)
46+
47+
Changes in [0.16.6](https://github.com/vector-im/riot-web/releases/tag/v0.16.6) (2018-10-08)
48+
============================================================================================
49+
[Full Changelog](https://github.com/vector-im/riot-web/compare/v0.16.5...v0.16.6)
50+
51+
* Update to matrix-react-sdk v0.13.6
52+
153
Changes in [0.16.5](https://github.com/vector-im/riot-web/releases/tag/v0.16.5) (2018-10-01)
254
============================================================================================
355
[Full Changelog](https://github.com/vector-im/riot-web/compare/v0.16.5-rc.1...v0.16.5)

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

electron_app/riot.im/config.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,15 @@
2121
"siteId": 1,
2222
"policyUrl": "https://matrix.org/docs/guides/riot_im_cookie_policy"
2323
},
24+
"phasedRollOut": {
25+
"feature_lazyloading": {
26+
"offset": 1539684000000,
27+
"period": 604800000
28+
}
29+
},
30+
"features": {
31+
"feature_lazyloading": "enable"
32+
},
2433
"enable_presence_by_hs_url": {
2534
"https://matrix.org": false
2635
}

package.json

Lines changed: 3 additions & 3 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.16.5",
5+
"version": "0.17.0",
66
"description": "A feature-rich client for Matrix.org",
77
"author": "New Vector Ltd.",
88
"repository": {
@@ -70,8 +70,8 @@
7070
"gemini-scrollbar": "github:matrix-org/gemini-scrollbar#b302279",
7171
"gfm.css": "^1.1.2",
7272
"highlight.js": "^9.0.0",
73-
"matrix-js-sdk": "github:matrix-org/matrix-js-sdk#develop",
74-
"matrix-react-sdk": "github:matrix-org/matrix-react-sdk#develop",
73+
"matrix-js-sdk": "0.12.0",
74+
"matrix-react-sdk": "0.14.0",
7575
"modernizr": "^3.6.0",
7676
"prop-types": "^15.6.2",
7777
"react": "^15.6.0",

scripts/electron-package.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ mkdir -p "$projdir/electron_app/dist/unsigned/"
100100
# Install packages: what the user downloads the first time,
101101
# (DMGs for mac, exe installer for windows)
102102
mkdir -p "$pubdir/install/macos"
103-
cp $distdir/mac/*.dmg "$pubdir/install/macos/"
103+
cp $distdir/*.dmg "$pubdir/install/macos/"
104104

105105
# Windows installers go to the dist dir because they need signing
106106
mkdir -p "$pubdir/install/win32/ia32/"
@@ -111,7 +111,7 @@ cp $distdir/win/*.exe "$projdir/electron_app/dist/unsigned/"
111111

112112
# Packages for auto-update
113113
mkdir -p "$pubdir/update/macos"
114-
cp $distdir/mac/*.zip "$pubdir/update/macos/"
114+
cp $distdir/*-mac.zip "$pubdir/update/macos/"
115115
echo "$vername" > "$pubdir/update/macos/latest"
116116

117117
mkdir -p "$pubdir/update/win32/ia32/"

0 commit comments

Comments
 (0)