You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-12-04 05:02:41 +03:00
Merge remote-tracking branch 'origin/develop' into rav/load_olm_from_global
This commit is contained in:
20
CHANGELOG.md
20
CHANGELOG.md
@@ -6,6 +6,26 @@ unreleased changes
|
|||||||
applications which use end-to-end encryption. See the
|
applications which use end-to-end encryption. See the
|
||||||
[README](README.md#end-to-end-encryption-support) for details.
|
[README](README.md#end-to-end-encryption-support) for details.
|
||||||
|
|
||||||
|
Changes in [0.7.9](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v0.7.9) (2017-06-01)
|
||||||
|
================================================================================================
|
||||||
|
[Full Changelog](https://github.com/matrix-org/matrix-js-sdk/compare/v0.7.8...v0.7.9)
|
||||||
|
|
||||||
|
* Initial framework for indexeddb-backed crypto store
|
||||||
|
[\#445](https://github.com/matrix-org/matrix-js-sdk/pull/445)
|
||||||
|
* Factor out reEmit to a common module
|
||||||
|
[\#444](https://github.com/matrix-org/matrix-js-sdk/pull/444)
|
||||||
|
* crypto/algorithms/base.js: Convert to es6
|
||||||
|
[\#443](https://github.com/matrix-org/matrix-js-sdk/pull/443)
|
||||||
|
* maySendRedactionForEvent for userId
|
||||||
|
[\#435](https://github.com/matrix-org/matrix-js-sdk/pull/435)
|
||||||
|
* MatrixClient: add getUserId()
|
||||||
|
[\#441](https://github.com/matrix-org/matrix-js-sdk/pull/441)
|
||||||
|
* Run jsdoc on a custom babeling of the source
|
||||||
|
[\#442](https://github.com/matrix-org/matrix-js-sdk/pull/442)
|
||||||
|
* Add in a public api getStoredDevice allowing clients to get a specific
|
||||||
|
device
|
||||||
|
[\#439](https://github.com/matrix-org/matrix-js-sdk/pull/439)
|
||||||
|
|
||||||
Changes in [0.7.8](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v0.7.8) (2017-05-22)
|
Changes in [0.7.8](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v0.7.8) (2017-05-22)
|
||||||
================================================================================================
|
================================================================================================
|
||||||
[Full Changelog](https://github.com/matrix-org/matrix-js-sdk/compare/v0.7.8-rc.1...v0.7.8)
|
[Full Changelog](https://github.com/matrix-org/matrix-js-sdk/compare/v0.7.8-rc.1...v0.7.8)
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "matrix-js-sdk",
|
"name": "matrix-js-sdk",
|
||||||
"version": "0.7.8",
|
"version": "0.7.9",
|
||||||
"description": "Matrix Client-Server SDK for Javascript",
|
"description": "Matrix Client-Server SDK for Javascript",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -206,7 +206,9 @@ if [ -n "$signing_id" ]; then
|
|||||||
|
|
||||||
tarfile="$tag.tar.gz"
|
tarfile="$tag.tar.gz"
|
||||||
gh_project_url=$(git remote get-url origin |
|
gh_project_url=$(git remote get-url origin |
|
||||||
sed -e 's#^git@github.com:#https://github.com/#' -e 's/\.git$//')
|
sed -e 's#^git@github\.com:#https://github.com/#' \
|
||||||
|
-e 's#^git\+ssh://git@github\.com/#https://github.com/#' \
|
||||||
|
-e 's/\.git$//')
|
||||||
project_name="${gh_project_url##*/}"
|
project_name="${gh_project_url##*/}"
|
||||||
curl -L "${gh_project_url}/archive/${tarfile}" -o "${tarfile}"
|
curl -L "${gh_project_url}/archive/${tarfile}" -o "${tarfile}"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user