Skip to content

Commit

Permalink
Added GitHub Plugin URI to enable plugin updates using Git Updater.
Browse files Browse the repository at this point in the history
  • Loading branch information
RadGH committed Mar 19, 2024
1 parent 866a77e commit f8682b6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
10 changes: 10 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ This plugin adds several blocks and utilities to the block editor, including vis

![Screenshot of the "User Field" block showing available options](screenshot-2.png)

## Plugin Updates

This plugin is hosted on GitHub. To enable automatic plugin updates you can use the plugin [Git Updater](https://github.com/afragen/git-updater).

## Development Setup

To use Javascript to compile the file in /assets/scripts/src/block-editor.js you must first install NPM, then follow these steps:
Expand Down Expand Up @@ -67,5 +71,11 @@ add_filter( 'rs/login_form/args', 'my_theme_login_form_args', 10, 2 );

## Changelog

### 1.2.3
* Added `GitHub Plugin URI` to enable plugin updates using Git Updater.

### 1.2.2
* Added `rs/login_form/args` filter to modify the login form args.

### 1.0.0
* Initial release
5 changes: 3 additions & 2 deletions rs-utility-blocks.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
/*
Plugin Name: RS Utility Blocks
Description: Adds custom blocks and utilities to the block editor, including visibility conditions and blocks to display the current user's information or current post's information, and a login form block.
Version: 1.2.2
Version: 1.2.3
Author: Radley Sustaire
Author URI: https://radleysustaire.com
GitHub Plugin URI: https://github.com/afragen/git-updater
*/

define( 'RS_Utility_Blocks_PATH', __DIR__ );
define( 'RS_Utility_Blocks_URL', plugin_dir_url(__FILE__) );
define( 'RS_Utility_Blocks_VERSION', '1.2.2' );
define( 'RS_Utility_Blocks_VERSION', '1.2.3' );

class RS_Utility_Blocks {

Expand Down

0 comments on commit f8682b6

Please sign in to comment.