From f8682b6256ff7c51a6c8dd89464c635e68274003 Mon Sep 17 00:00:00 2001 From: Radley Date: Tue, 19 Mar 2024 11:50:08 -0700 Subject: [PATCH] Added GitHub Plugin URI to enable plugin updates using Git Updater. --- readme.md | 10 ++++++++++ rs-utility-blocks.php | 5 +++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 29ad7db..732072d 100644 --- a/readme.md +++ b/readme.md @@ -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: @@ -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 \ No newline at end of file diff --git a/rs-utility-blocks.php b/rs-utility-blocks.php index aefba08..f7f2352 100644 --- a/rs-utility-blocks.php +++ b/rs-utility-blocks.php @@ -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 {