Skip to content

Commit

Permalink
Merge pull request #201 from Automattic/release-0.7.0
Browse files Browse the repository at this point in the history
Release 0.7.0
ashfame authored Mar 17, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents fe957bb + 8e77353 commit 15e6300
Showing 5 changed files with 18 additions and 6 deletions.
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@
- Tested up to: 6.1
- Requires PHP: 7.4
- License: [GPLv2](http://www.gnu.org/licenses/gpl-2.0.html)
- Stable tag: 0.6.0
- Stable tag: 0.7.0
- GitHub Plugin URI: https://github.com/Automattic/chatrix

Matrix client for WordPress.
@@ -68,6 +68,18 @@ Later, when Matrix makes the switch to OIDC, you are already prepared and can co

## Changelog

### 0.7.0

- Implement Room Previews (Peeking) functionality [[#199](https://github.com/Automattic/chatrix/pull/199)]
- Disable restoration to last screen when in Single room mode [[#196](https://github.com/Automattic/chatrix/pull/196)]
- Switch to our Hydrogen's fork (ahead of v0.3.8) as dependency which includes un-merged upstream contributions
- Fix query params in SSO
- Allow create room screen to be closed on smaller width screens
- Ensure Service worker is started before anything else
- Fix bug in normalization of homeserver
- Room Previews (Peeking) support
- Fix loading of messages & timelines in some cases

### 0.6.0

- Support for multiple blocks on the same page [[#175](https://github.com/Automattic/chatrix/pull/175)]
4 changes: 2 additions & 2 deletions chatrix.php
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
* Author: Automattic
* Author URI: https://automattic.com/
* Plugin URI: https://github.com/Automattic/chatrix
* Version: 0.6.0
* Version: 0.7.0
*/

use function Automattic\Chatrix\Admin\main as adminMain;
@@ -22,7 +22,7 @@ function automattic_chatrix_version(): string {
}

// Do not edit this line, it's automatically set by bin/prepare-release.sh.
$version = '0.6.0';
$version = '0.7.0';

return $version;
}
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "automattic/chatrix",
"version": "0.6.0",
"version": "0.7.0",
"description": "WordPress plugin to embed a Matrix client into WordPress pages.",
"type": "wordpress-plugin",
"license": "GPL",
2 changes: 1 addition & 1 deletion frontend/block/block.json
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 2,
"name": "automattic/chatrix",
"version": "0.6.0",
"version": "0.7.0",
"title": "Chatrix",
"category": "embed",
"icon": "format-chat",
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chatrix",
"version": "0.6.0",
"version": "0.7.0",
"description": "Embedded Matrix client for WordPress",
"repository": "[email protected]:Automattic/chatrix.git",
"author": "Automattic",

0 comments on commit 15e6300

Please sign in to comment.