forked from matrix/element-web
Merge branch 'develop' into travis/feature/wellknown2
This commit is contained in:
commit
1ac5df3cd0
|
@ -2,7 +2,7 @@
|
||||||
name: User Interface or Usability Bug report
|
name: User Interface or Usability Bug report
|
||||||
about: Please include screenshots in UI/UX bug reports
|
about: Please include screenshots in UI/UX bug reports
|
||||||
title: ''
|
title: ''
|
||||||
labels: ''
|
labels: bug, ui/ux
|
||||||
assignees: ''
|
assignees: ''
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -1,3 +1,15 @@
|
||||||
|
Changes in [1.1.2](https://github.com/vector-im/riot-web/releases/tag/v1.1.2) (2019-05-15)
|
||||||
|
==========================================================================================
|
||||||
|
[Full Changelog](https://github.com/vector-im/riot-web/compare/v1.1.1...v1.1.2)
|
||||||
|
|
||||||
|
* react-sdk v1.1.2 to fix single sign-on and GIF autoplaying
|
||||||
|
|
||||||
|
Changes in [1.1.1](https://github.com/vector-im/riot-web/releases/tag/v1.1.1) (2019-05-14)
|
||||||
|
==========================================================================================
|
||||||
|
[Full Changelog](https://github.com/vector-im/riot-web/compare/v1.1.0...v1.1.1)
|
||||||
|
|
||||||
|
* react-sdk v1.1.1 to fix regressions with registration
|
||||||
|
|
||||||
Changes in [1.1.0](https://github.com/vector-im/riot-web/releases/tag/v1.1.0) (2019-05-07)
|
Changes in [1.1.0](https://github.com/vector-im/riot-web/releases/tag/v1.1.0) (2019-05-07)
|
||||||
==========================================================================================
|
==========================================================================================
|
||||||
[Full Changelog](https://github.com/vector-im/riot-web/compare/v1.1.0-rc.1...v1.1.0)
|
[Full Changelog](https://github.com/vector-im/riot-web/compare/v1.1.0-rc.1...v1.1.0)
|
||||||
|
|
|
@ -15,7 +15,7 @@ WORKDIR /src
|
||||||
|
|
||||||
COPY . /src
|
COPY . /src
|
||||||
RUN dos2unix /src/scripts/docker-link-repos.sh && sh /src/scripts/docker-link-repos.sh
|
RUN dos2unix /src/scripts/docker-link-repos.sh && sh /src/scripts/docker-link-repos.sh
|
||||||
RUN yarn install
|
RUN yarn --network-timeout=100000 install
|
||||||
RUN yarn build
|
RUN yarn build
|
||||||
|
|
||||||
# Copy the config now so that we don't create another layer in the app image
|
# Copy the config now so that we don't create another layer in the app image
|
||||||
|
|
|
@ -21,7 +21,8 @@
|
||||||
"features": {
|
"features": {
|
||||||
"feature_groups": "labs",
|
"feature_groups": "labs",
|
||||||
"feature_pinning": "labs",
|
"feature_pinning": "labs",
|
||||||
"feature_reactions": "labs"
|
"feature_reactions": "labs",
|
||||||
|
"feature_message_editing": "labs"
|
||||||
},
|
},
|
||||||
"default_federate": true,
|
"default_federate": true,
|
||||||
"default_theme": "light",
|
"default_theme": "light",
|
||||||
|
|
|
@ -35,4 +35,11 @@ That's it. Now should see your new counter under the header.
|
||||||
reactions from other people. This feature is currently under active development,
|
reactions from other people. This feature is currently under active development,
|
||||||
and only portions have been implemented so far.
|
and only portions have been implemented so far.
|
||||||
|
|
||||||
|
## Message editing
|
||||||
|
|
||||||
|
`feature_message_editing` allows editing messages after they have been sent,
|
||||||
|
accessible from the reaction/context bar when hovering a message.
|
||||||
|
This feature is currently under active development,
|
||||||
|
and only portions have been implemented so far.
|
||||||
|
|
||||||
[#riot-web:matrix.org]: https://matrix.to/#/#riot-web:matrix.org
|
[#riot-web:matrix.org]: https://matrix.to/#/#riot-web:matrix.org
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "riot-web",
|
"name": "riot-web",
|
||||||
"productName": "Riot",
|
"productName": "Riot",
|
||||||
"main": "src/electron-main.js",
|
"main": "src/electron-main.js",
|
||||||
"version": "1.1.0",
|
"version": "1.1.2",
|
||||||
"description": "A feature-rich client for Matrix.org",
|
"description": "A feature-rich client for Matrix.org",
|
||||||
"author": "New Vector Ltd.",
|
"author": "New Vector Ltd.",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "riot-web",
|
"name": "riot-web",
|
||||||
"productName": "Riot",
|
"productName": "Riot",
|
||||||
"main": "electron_app/src/electron-main.js",
|
"main": "electron_app/src/electron-main.js",
|
||||||
"version": "1.1.0",
|
"version": "1.1.2",
|
||||||
"description": "A feature-rich client for Matrix.org",
|
"description": "A feature-rich client for Matrix.org",
|
||||||
"author": "New Vector Ltd.",
|
"author": "New Vector Ltd.",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
@ -74,7 +74,7 @@
|
||||||
"gfm.css": "^1.1.2",
|
"gfm.css": "^1.1.2",
|
||||||
"highlight.js": "^9.13.1",
|
"highlight.js": "^9.13.1",
|
||||||
"matrix-js-sdk": "1.1.0",
|
"matrix-js-sdk": "1.1.0",
|
||||||
"matrix-react-sdk": "1.1.0",
|
"matrix-react-sdk": "1.1.2",
|
||||||
"modernizr": "^3.6.0",
|
"modernizr": "^3.6.0",
|
||||||
"olm": "https://packages.matrix.org/npm/olm/olm-3.1.0.tgz",
|
"olm": "https://packages.matrix.org/npm/olm/olm-3.1.0.tgz",
|
||||||
"prop-types": "^15.6.2",
|
"prop-types": "^15.6.2",
|
||||||
|
|
|
@ -13,7 +13,7 @@ git clone $JS_SDK_REPO js-sdk
|
||||||
cd js-sdk
|
cd js-sdk
|
||||||
git checkout $JS_SDK_BRANCH
|
git checkout $JS_SDK_BRANCH
|
||||||
yarn link
|
yarn link
|
||||||
yarn install
|
yarn --network-timeout=100000 install
|
||||||
cd ../
|
cd ../
|
||||||
|
|
||||||
echo "Linking react-sdk"
|
echo "Linking react-sdk"
|
||||||
|
@ -22,7 +22,7 @@ cd react-sdk
|
||||||
git checkout $REACT_SDK_BRANCH
|
git checkout $REACT_SDK_BRANCH
|
||||||
yarn link
|
yarn link
|
||||||
yarn link matrix-js-sdk
|
yarn link matrix-js-sdk
|
||||||
yarn install
|
yarn --network-timeout=100000 install
|
||||||
cd ../
|
cd ../
|
||||||
|
|
||||||
echo "Setting up riot-web with react-sdk and js-sdk packages"
|
echo "Setting up riot-web with react-sdk and js-sdk packages"
|
||||||
|
|
|
@ -5769,10 +5769,10 @@ matrix-mock-request@^1.2.3:
|
||||||
bluebird "^3.5.0"
|
bluebird "^3.5.0"
|
||||||
expect "^1.20.2"
|
expect "^1.20.2"
|
||||||
|
|
||||||
matrix-react-sdk@1.1.0:
|
matrix-react-sdk@1.1.2:
|
||||||
version "1.1.0"
|
version "1.1.2"
|
||||||
resolved "https://registry.yarnpkg.com/matrix-react-sdk/-/matrix-react-sdk-1.1.0.tgz#3f1c139cb4c33190b9dcb36a6e776d3ad53334f6"
|
resolved "https://registry.yarnpkg.com/matrix-react-sdk/-/matrix-react-sdk-1.1.2.tgz#bff86db4fc521deb3076467707dcc338bbff0542"
|
||||||
integrity sha512-3JjyzbrmokzCl5Ss/0dWjUyc8EuO3uWvD3LBHZhTkFHe1uSiHjC2+Oy8hiJha8tubJtCWnQPE7tXIffkYmvdAQ==
|
integrity sha512-MKALTgxSULFSJZagts9+oMu/SZFNHHfZcMKgDWJELdgTIcHUg/rIOFt2y1ghkbpWJjC2wGM8J5E0TAsL0aeWcQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
babel-plugin-syntax-dynamic-import "^6.18.0"
|
babel-plugin-syntax-dynamic-import "^6.18.0"
|
||||||
babel-runtime "^6.26.0"
|
babel-runtime "^6.26.0"
|
||||||
|
|
Loading…
Reference in New Issue