Skip to content

Commit 05cf790

Browse files
committed
🚚 Consistent use of RainbowKit Login as user-facing name
1 parent 8071f42 commit 05cf790

File tree

9 files changed

+18
-27
lines changed

9 files changed

+18
-27
lines changed

blocks/login-block/block.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
}
3131
},
3232
"category": "widgets",
33-
"description": "Show WP Rainbow login & logout links.",
33+
"description": "Show RainbowKit Login login & logout links.",
3434
"icon": "money",
3535
"name": "wp-rainbow/login",
3636
"styles": [
@@ -87,5 +87,5 @@
8787
"fontSize": true
8888
}
8989
},
90-
"title": "WP Rainbow Login"
90+
"title": "RainbowKit Login"
9191
}

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wp-rainbow/wp-rainbow",
3-
"description": "WP Rainbow",
3+
"description": "RainbowKit Login",
44
"type": "project",
55
"license": "GPL-2.0-or-later",
66
"authors": [

inc/class-wp-rainbow-settings.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ protected function setup() {
4848
*/
4949
public function action_admin_menu() {
5050
add_menu_page(
51-
'WP Rainbow Settings',
52-
'WP Rainbow',
51+
'RainbowKit Login Settings',
52+
'RainbowKit Login',
5353
'manage_options',
5454
'wp_rainbow',
5555
[ self::$instance, 'wp_rainbow_settings_page_html' ],
@@ -224,7 +224,7 @@ public function wp_rainbow_disable_passwords_for_wp_users_callback() {
224224
<em>
225225
<small>
226226
<?php
227-
esc_html_e( 'If enabled, non-admin WP Rainbow users will be passwordless.', 'wp-rainbow' );
227+
esc_html_e( 'If enabled, non-admin RainbowKit Login users will be passwordless.', 'wp-rainbow' );
228228
?>
229229
</small>
230230
</em>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wp-rainbow",
3-
"version": "0.2.7",
3+
"version": "0.2.8",
44
"description": "RainbowKit Login (Web3 Integration for Sign-In With Ethereum)",
55
"author": "Davis Shaver",
66
"license": "GPL-2.0-or-later",

phpcs.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0"?>
2-
<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="WP Rainbow" xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/squizlabs/PHP_CodeSniffer/master/phpcs.xsd">
3-
<description>PHP_CodeSniffer standard for WP Rainbow.</description>
2+
<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="RainbowKit Login" xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/squizlabs/PHP_CodeSniffer/master/phpcs.xsd">
3+
<description>PHP_CodeSniffer standard for RainbowKit Login.</description>
44

55
<!-- Include Alley Rules -->
66
<rule ref="Alley-Interactive" />

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# WP Rainbow
1+
# RainbowKit Login (Web3 Integration for Sign-In With Ethereum)
22

33
[![PHPUnit Tests](https://github.com/davisshaver/wp-rainbow/actions/workflows/phpunit-tests.yml/badge.svg)](https://github.com/davisshaver/wp-rainbow/actions/workflows/phpunit-tests.yml)
44

@@ -8,7 +8,7 @@ _Want to try it out? [Head here.](https://wp-rainbow.davisshaver.com/wp-login.ph
88

99
## Installation
1010

11-
The recommended way to install WP Rainbow is downloading the ZIP file from [the most recent release](https://github.com/davisshaver/wp-rainbow/releases).
11+
The recommended way to install RainbowKit Login is downloading the ZIP file from [the most recent release](https://github.com/davisshaver/wp-rainbow/releases).
1212

1313
## Development
1414

readme.txt

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ Tags: WordPress, web3, SIWE, Ethereum, RainbowKit, Sign-In With Ethereum
44
Tested up to: 6.0
55
Requires at least: 5.9
66
Requires PHP: 7.0
7-
Stable tag: 0.2.7
7+
Stable tag: 0.2.8
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
1010

11-
WP Rainbow allows WordPress users to log in with Ethereum using the Sign-In With Ethereum standard, powered by RainbowKit.
11+
RainbowKit Login allows WordPress users to log in with Ethereum using the Sign-In With Ethereum standard, powered by RainbowKit.
1212

1313
== Description ==
1414

@@ -46,15 +46,6 @@ Find reference implementations of all filters in [example plugin here](https://g
4646
== Changelog ==
4747

4848
= 0.2.7 =
49-
* Optimize files included in plugin on WordPress.org
50-
51-
= 0.2.6 =
52-
* Optimize files included in plugin on WordPress.org
53-
54-
= 0.2.5 =
55-
* Optimize files included in plugin on WordPress.org
56-
57-
= 0.2.4 =
5849
* Initial plugin release to WordPress.org
5950

6051
== Screenshots =

wp-rainbow-filter-examples.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* Plugin Name: WP Rainbow Filter Examples
3+
* Plugin Name: RainbowKit Login Filter Examples
44
* Version: 0.0.1
55
*
66
* @package WP_Rainbow_Filter_Examples

wp-rainbow.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* WP Rainbow
3+
* RainbowKit Login
44
*
55
* @package WP_Rainbow
66
* @author Davis Shaver
@@ -9,8 +9,8 @@
99
* @wordpress-plugin
1010
* Plugin Name: RainbowKit Login (Web3 Integration for Sign-In With Ethereum)
1111
* Plugin URI: https://wp-rainbow.davisshaver.com/
12-
* Description: WP Rainbow allows WordPress users to log in with Ethereum using the Sign-In With Ethereum standard, powered by RainbowKit.
13-
* Version: 0.2.7
12+
* Description: RainbowKit Login allows WordPress users to log in with Ethereum using the Sign-In With Ethereum standard, powered by RainbowKit.
13+
* Version: 0.2.8
1414
* Author: Davis Shaver
1515
* Author URI: https://davisshaver.com/
1616
* License: GPL v2 or later
@@ -27,7 +27,7 @@
2727
*
2828
* @var string
2929
*/
30-
define( 'WP_RAINBOW_ASSETS_VERSION', '0.2.7' );
30+
define( 'WP_RAINBOW_ASSETS_VERSION', '0.2.8' );
3131

3232
// Include the autoloader.
3333
add_action(

0 commit comments

Comments
 (0)