Skip to content

Commit b9c0d0d

Browse files
authored
Merge pull request #163 from Automattic/release-0.5.0
Release 0.5.0
2 parents b8ec7f2 + 8abb8f5 commit b9c0d0d

File tree

10 files changed

+25
-8
lines changed

10 files changed

+25
-8
lines changed

.wporg/screenshot-1.png

6.35 KB
Loading

.wporg/screenshot-2.png

-85.8 KB
Loading

.wporg/screenshot-3.png

268 KB
Loading

.wporg/screenshot-4.png

245 KB
Loading

.wporg/screenshot-5.png

211 KB
Loading

README.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,23 @@
66
- Tested up to: 6.1
77
- Requires PHP: 7.4
88
- License: [GPLv2](http://www.gnu.org/licenses/gpl-2.0.html)
9-
- Stable tag: 0.4.0
9+
- Stable tag: 0.5.0
1010
- GitHub Plugin URI: https://github.com/Automattic/chatrix
1111

1212
Matrix client for WordPress.
1313

1414
## Description
1515
Easily add a [Matrix](https://matrix.org) client to WordPress pages, either through the Block Editor, or as a _popup_.
1616

17+
### Feedback welcome
18+
If you have any feedback or questions about Chatrix, please do talk to plugin maintainers at [#chatrix:matrix.org](https://matrix.to/#/#chatrix:matrix.org).
19+
1720
## Screenshots
18-
![Block](.wporg/screenshot-1.png)
19-
![Popup](.wporg/screenshot-2.png)
21+
![Block - Login](.wporg/screenshot-1.png)
22+
![Block - Room List](.wporg/screenshot-2.png)
23+
![Block - Timeline](.wporg/screenshot-3.png)
24+
![Popup - Settings](.wporg/screenshot-4.png)
25+
![Popup - Timeline](.wporg/screenshot-5.png)
2026

2127
## Frequently Asked Questions
2228
### How can I install this plugin on my site?
@@ -52,6 +58,17 @@ add_filter( 'chatrix_instances', function ( array $default_instances ) {
5258
~~~
5359

5460
## Changelog
61+
62+
### 0.5.0
63+
- Logout and delete data when user logs out of WordPress [[#150](https://github.com/Automattic/chatrix/pull/150), [#153](https://github.com/Automattic/chatrix/pull/153)]
64+
- Improvements to single room mode [[#151](https://github.com/Automattic/chatrix/pull/151)]
65+
- Add a Settings entry to the options menu of the room
66+
- Closing the Settings screen navigates to configured `roomId`
67+
- Closing the Room (timeline) screen navigates to session picker
68+
- Hide the left panel completely
69+
- Fix issue that caused Chatrix to not load in certain conditions [[#160](https://github.com/Automattic/chatrix/pull/160)]
70+
- Allow setting a unit for certain styling options (previously was always `px`) [[#154](https://github.com/Automattic/chatrix/pull/154)]
71+
5572
### 0.4.0
5673
- Prevent data corruption when more than one Chatrix instance (block or Popup) is active, either in multiple browser tabs or windows, or in the same page [[#75](https://github.com/Automattic/chatrix/pull/75)]
5774
- Allow setting the height of the block from the block editor [[#135](https://github.com/Automattic/chatrix/pull/135)]

chatrix.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Author: Automattic
66
* Author URI: https://automattic.com/
77
* Plugin URI: https://github.com/Automattic/chatrix
8-
* Version: 0.4.0
8+
* Version: 0.5.0
99
*/
1010

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

2424
// Do not edit this line, it's automatically set by bin/prepare-release.sh.
25-
$version = '0.4.0';
25+
$version = '0.5.0';
2626

2727
return $version;
2828
}

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "automattic/chatrix",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "WordPress plugin to embed a Matrix client into WordPress pages.",
55
"type": "wordpress-plugin",
66
"license": "GPL",

frontend/block/block.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://schemas.wp.org/trunk/block.json",
33
"apiVersion": 2,
44
"name": "automattic/chatrix",
5-
"version": "0.4.0",
5+
"version": "0.5.0",
66
"title": "Chatrix",
77
"category": "embed",
88
"icon": "format-chat",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chatrix",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "Embedded Matrix client for WordPress",
55
"repository": "git@github.com:Automattic/chatrix.git",
66
"author": "Automattic",

0 commit comments

Comments
 (0)