Skip to content

Commit

Permalink
Merge pull request #163 from Automattic/release-0.5.0
Browse files Browse the repository at this point in the history
Release 0.5.0
  • Loading branch information
psrpinto authored Jan 25, 2023
2 parents b8ec7f2 + 8abb8f5 commit b9c0d0d
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 8 deletions.
Binary file modified .wporg/screenshot-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified .wporg/screenshot-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .wporg/screenshot-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .wporg/screenshot-4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .wporg/screenshot-5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 20 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,23 @@
- Tested up to: 6.1
- Requires PHP: 7.4
- License: [GPLv2](http://www.gnu.org/licenses/gpl-2.0.html)
- Stable tag: 0.4.0
- Stable tag: 0.5.0
- GitHub Plugin URI: https://github.com/Automattic/chatrix

Matrix client for WordPress.

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

### Feedback welcome
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).

## Screenshots
![Block](.wporg/screenshot-1.png)
![Popup](.wporg/screenshot-2.png)
![Block - Login](.wporg/screenshot-1.png)
![Block - Room List](.wporg/screenshot-2.png)
![Block - Timeline](.wporg/screenshot-3.png)
![Popup - Settings](.wporg/screenshot-4.png)
![Popup - Timeline](.wporg/screenshot-5.png)

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

## Changelog

### 0.5.0
- 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)]
- Improvements to single room mode [[#151](https://github.com/Automattic/chatrix/pull/151)]
- Add a Settings entry to the options menu of the room
- Closing the Settings screen navigates to configured `roomId`
- Closing the Room (timeline) screen navigates to session picker
- Hide the left panel completely
- Fix issue that caused Chatrix to not load in certain conditions [[#160](https://github.com/Automattic/chatrix/pull/160)]
- Allow setting a unit for certain styling options (previously was always `px`) [[#154](https://github.com/Automattic/chatrix/pull/154)]

### 0.4.0
- 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)]
- Allow setting the height of the block from the block editor [[#135](https://github.com/Automattic/chatrix/pull/135)]
Expand Down
4 changes: 2 additions & 2 deletions chatrix.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Author: Automattic
* Author URI: https://automattic.com/
* Plugin URI: https://github.com/Automattic/chatrix
* Version: 0.4.0
* Version: 0.5.0
*/

use function Automattic\Chatrix\Admin\main as adminMain;
Expand All @@ -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.4.0';
$version = '0.5.0';

return $version;
}
Expand Down
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.4.0",
"version": "0.5.0",
"description": "WordPress plugin to embed a Matrix client into WordPress pages.",
"type": "wordpress-plugin",
"license": "GPL",
Expand Down
2 changes: 1 addition & 1 deletion frontend/block/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 2,
"name": "automattic/chatrix",
"version": "0.4.0",
"version": "0.5.0",
"title": "Chatrix",
"category": "embed",
"icon": "format-chat",
Expand Down
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.4.0",
"version": "0.5.0",
"description": "Embedded Matrix client for WordPress",
"repository": "[email protected]:Automattic/chatrix.git",
"author": "Automattic",
Expand Down

0 comments on commit b9c0d0d

Please sign in to comment.