Skip to content

Commit

Permalink
Rebrand
Browse files Browse the repository at this point in the history
  • Loading branch information
gruve-p committed Jan 11, 2020
1 parent b42e885 commit 6ef1ea3
Show file tree
Hide file tree
Showing 8 changed files with 41 additions and 41 deletions.
10 changes: 5 additions & 5 deletions README.md
@@ -1,14 +1,14 @@
# GRS-LND-For-WP - v0.1.2
## A WordPress plugin for managing & using your LND node.
## A WordPress plugin for managing & using your GRS LND node.

### Description
LND For WP is a WordPress plugin that allows you to manage and use your LND node, right from your WordPress administration panel. It provides a fully functional wallet interface, allowing you to send and receive funds across the Lightning Network with ease. The user interface is responsive and will adapt to fit any web enabled desktop, tablet or mobile device. You can search the Lightning Network graph, manage peer connections and open & close channels with ease.
GRS LND For WP is a WordPress plugin that allows you to manage and use your GRS LND node, right from your WordPress administration panel. It provides a fully functional wallet interface, allowing you to send and receive funds across the Lightning Network with ease. The user interface is responsive and will adapt to fit any web enabled desktop, tablet or mobile device. You can search the Lightning Network graph, manage peer connections and open & close channels with ease.
The plugin has QR support, enabling basic encoding & decoding of QR codes.
LND For WP also adds a number of WordPress 'shortcodes', allowing you to embed LND functionality directly in your website pages and posts. New Shortcodes will be added with future versions, as needs & use cases arise.
GRS LND For WP also adds a number of WordPress 'shortcodes', allowing you to embed LND functionality directly in your website pages and posts. New Shortcodes will be added with future versions, as needs & use cases arise.

### Installation

LND For WP can be installed directly from WordPress. Simply navigate to the 'Plugins -> Add New' page and search for 'LND For WP'. You can also view LND For WP on the [WordPress.org Plugin Directory](https://wordpress.org/plugins/grs-lnd-for-wp/)
GRS LND For WP can be installed directly from WordPress. Simply navigate to the 'Plugins -> Add New' page and search for 'GRS LND For WP'. You can also view GRS LND For WP on the [WordPress.org Plugin Directory](https://wordpress.org/plugins/grs-lnd-for-wp/)

To install the plugin manually using source code from this repository:

Expand All @@ -17,7 +17,7 @@ To install the plugin manually using source code from this repository:
3. Click the 'Upload Plugin' button, select 'Browse' and choose the release .zip that you downloaded in step 1.
4. Press 'Install Now'.
5. On the next screen, press the 'Activate' button to turn on the plugin.
6. You're done. You should now see the 'LND For WP' link on your WP admin navigation menu.
6. You're done. You should now see the 'GRS LND For WP' link on your WP admin navigation menu.

### Frequently Asked Questions

Expand Down
6 changes: 3 additions & 3 deletions README.txt
@@ -1,4 +1,4 @@
=== LND For WP ===
=== GRS LND For WP ===
Contributors: Groestlcoin
Tags: lnd, lightning, lightning network, groestlcoin
Requires at least: 3.1
Expand All @@ -7,11 +7,11 @@ Stable tag: 0.1.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Manage and use your LND node, right from your WordPress administration panel.
Manage and use your GRS LND node, right from your WordPress administration panel.

== Description ==

LND For WP is a WordPress plugin that allows you to manage and use your LND node, right from your WordPress administration panel. It provides a fully functional wallet interface, allowing you to send and receive funds across the Lightning Network with ease. The user interface is responsive and will adapt to fit any web enabled desktop, tablet or mobile device. You can search the Lightning Network graph, manage peer connections and open & close channels with ease. The plugin has QR support, enabling basic encoding & decoding of QR codes. LND For WP also adds a number of WordPress 'shortcodes', allowing you to embed LND functionality directly in your website pages and posts. New Shortcodes will be added with future versions, as needs & use cases arise.
GRS LND For WP is a WordPress plugin that allows you to manage and use your GRS LND node, right from your WordPress administration panel. It provides a fully functional wallet interface, allowing you to send and receive funds across the Lightning Network with ease. The user interface is responsive and will adapt to fit any web enabled desktop, tablet or mobile device. You can search the Lightning Network graph, manage peer connections and open & close channels with ease. The plugin has QR support, enabling basic encoding & decoding of QR codes. GRS LND For WP also adds a number of WordPress 'shortcodes', allowing you to embed LND functionality directly in your website pages and posts. New Shortcodes will be added with future versions, as needs & use cases arise.

== Installation ==

Expand Down
6 changes: 3 additions & 3 deletions admin/class-lnd-for-wp-admin.php
Expand Up @@ -58,7 +58,7 @@ public function setup_wp_admin_menu() {

$icon = plugins_url( 'img/lightning.png', __FILE__ );

add_menu_page( "LND For WP", 'LND For WP', 'manage_options', 'lnd-for-wp', array( $this , 'admin_index') ,$icon );
add_menu_page( "GRS LND For WP", 'GRS LND For WP', 'manage_options', 'lnd-for-wp', array( $this , 'admin_index') ,$icon );

}

Expand Down Expand Up @@ -242,7 +242,7 @@ public function handle_settings_form_post() {
}

/*
* Returns an object of standard class containing the remote lnd node
* Returns an object of standard class containing the remote grs lnd node
* connection & configuration details
*
* @since 0.1.0
Expand Down Expand Up @@ -759,7 +759,7 @@ public function is_ssl() {
*/
public function admin_footer() {

echo "LND For Wordpress Version $this->version <br />
echo "GRS LND For Wordpress Version $this->version <br />
This software is released for free.
";

Expand Down
10 changes: 5 additions & 5 deletions admin/partials/lnd-for-wp-admin-display.php
Expand Up @@ -21,14 +21,14 @@
<?php } ?>

<div class="lnd-wp-contain">
<h1><?php esc_html_e("LND For WP", $this->plugin_name); ?></h1>
<h1><?php esc_html_e("GRS LND For WP", $this->plugin_name); ?></h1>
<hr />
<p>
<?php esc_html_e("Welcome to LND for WordPress.", $this->plugin_name); ?><br />
<?php esc_html_e("Integrate, manage & use your LND Node right from your WordPress website.", $this->plugin_name); ?>
<?php esc_html_e("Welcome to GRS LND for WordPress.", $this->plugin_name); ?><br />
<?php esc_html_e("Integrate, manage & use your GRS LND Node right from your WordPress website.", $this->plugin_name); ?>
</p>
<p>
<?php esc_html_e("Get started by configuring your LND node connection details below.", $this->plugin_name); ?>
<?php esc_html_e("Get started by configuring your GRS LND node connection details below.", $this->plugin_name); ?>
</p>

<div class="lnd-wp-scroll-marker"></div>
Expand Down Expand Up @@ -175,4 +175,4 @@
</div>

</div>
</div>
</div>
4 changes: 2 additions & 2 deletions admin/partials/lnd-for-wp-admin-offline.php
Expand Up @@ -17,7 +17,7 @@

<h2>
<a href="admin.php?page=lnd-for-wp">
LND For WP
GRS LND For WP
</a> &rarr; <?php esc_html_e("Node Offline", $this->plugin_name); ?>
</h2>

Expand All @@ -32,4 +32,4 @@
<a href="?page=<?php echo esc_html( $_REQUEST['page'] ); ?>" class="btn btn-primary">Refresh</a>
</div>

</div>
</div>
38 changes: 19 additions & 19 deletions classes/lnd.class.php
Expand Up @@ -47,7 +47,7 @@ class lnd {

/*
* the maximum number of seconds to wait while attempting to
* connect to the remote lnd node
* connect to the remote grs lnd node
*/
private $connection_timeout = 5;

Expand Down Expand Up @@ -120,7 +120,7 @@ public function set_host( $lnd_host ){

/*
* Set the maximum number of seconds to wait while attempting to connect
* to the remote lnd node
* to the remote grs lnd node
*/
public function set_connection_timeout( $seconds ){

Expand Down Expand Up @@ -220,7 +220,7 @@ public function load_tls_cert( $tls_certificate_path ){


/**
* Check if lnd node is reachable
* Check if grs lnd node is reachable
*
* returns true or false.
*
Expand Down Expand Up @@ -253,7 +253,7 @@ public function is_node_reachable() {
}

/**
* Check if lnd node is online
* Check if grs lnd node is online
*
* returns true or false.
*
Expand Down Expand Up @@ -289,7 +289,7 @@ public function is_node_online() {
}

/**
* Check if lnd node is online & locked
* Check if grs lnd node is online & locked
*
* returns true or false.
*
Expand Down Expand Up @@ -322,7 +322,7 @@ public function is_node_locked( $override_cache = false ) {
}

/**
* Query lnd node for its version
* Query grs lnd node for its version
*
* @since 0.1.0
*/
Expand Down Expand Up @@ -606,7 +606,7 @@ public function connect_peer( $pubkey, $host ){
}

/**
* Query lnd node for its alias
* Query grs lnd node for its alias
*
* @since 0.1.0
*/
Expand Down Expand Up @@ -644,7 +644,7 @@ public function get_node_alias() {
}

/**
* Query lnd node for its pub key
* Query grs lnd node for its pub key
*
* @since 0.1.0
*/
Expand Down Expand Up @@ -698,7 +698,7 @@ public function get_peer_alias( $pubkey ) {
}

/**
* Query lnd node to check if its synced to chain
* Query grs lnd node to check if its synced to chain
*
* @since 0.1.0
*/
Expand All @@ -724,7 +724,7 @@ public function get_node_synced() {
}

/**
* Query lnd node for the block height
* Query grs lnd node for the block height
*
* @since 0.1.0
*/
Expand All @@ -746,7 +746,7 @@ public function get_node_blockheight() {
}

/**
* Query lnd node for number of active peers
* Query grs lnd node for number of active peers
*
* @since 0.1.0
*/
Expand All @@ -771,7 +771,7 @@ public function get_node_num_peers() {
}

/**
* Query lnd node for number of active channels
* Query grs lnd node for number of active channels
*
* @since 0.1.0
*/
Expand All @@ -797,7 +797,7 @@ public function get_node_num_channels() {
}

/**
* Query lnd node for total gros available across all channels
* Query grs lnd node for total gros available across all channels
*
* @since 0.1.0
*/
Expand All @@ -823,7 +823,7 @@ public function get_total_channel_balance() {
}

/**
* Query lnd node for total blockchain balance (layer 1)
* Query grs lnd node for total blockchain balance (layer 1)
*
* @since 0.1.0
*/
Expand All @@ -849,7 +849,7 @@ public function get_total_blockchain_balance() {
}

/**
* Query lnd node for total unconfirmed blockchain balance (layer 1)
* Query grs lnd node for total unconfirmed blockchain balance (layer 1)
*
* @since 0.1.0
*/
Expand All @@ -875,7 +875,7 @@ public function get_unconfirmed_balance() {
}

/**
* Query lnd node for total confirmed blockchain balance (layer 1)
* Query grs lnd node for total confirmed blockchain balance (layer 1)
*
* @since 0.1.0
*/
Expand All @@ -901,7 +901,7 @@ public function get_confirmed_balance() {
}

/**
* Query lnd node and request a new on chain Groestlcoin address
* Query grs lnd node and request a new on chain Groestlcoin address
*
* @since 0.1.0
*/
Expand Down Expand Up @@ -939,7 +939,7 @@ public function invoice_is_paid( $payment_hash ) {
}

/**
* Query lnd node to unlock wallet
* Query grs lnd node to unlock wallet
*
* @since 0.1.0
*/
Expand All @@ -955,7 +955,7 @@ public function unlock_wallet( $wallet_password ) {
}

/**
* Query lnd node to get active connected peers
* Query grs lnd node to get active connected peers
*
* @since 0.1.0
*/
Expand Down
4 changes: 2 additions & 2 deletions includes/class-lnd-for-wp.php
Expand Up @@ -26,11 +26,11 @@ class LND_For_WP {
protected $loader;

/**
* The LND instance responsible for communicating with LND node
* The LND instance responsible for communicating with GRS LND node
*
* @since 0.1.0
* @access protected
* @var LND_For_WP_Lnd $lnd Communicates with remote LND node
* @var LND_For_WP_Lnd $lnd Communicates with remote GRS LND node
*/

protected $lnd;
Expand Down
4 changes: 2 additions & 2 deletions lnd-for-wp.php
Expand Up @@ -12,9 +12,9 @@
* @package grs-lnd-for-wp
*
* @wordpress-plugin
* Plugin Name: LND For WP
* Plugin Name: GRS LND For WP
* Plugin URI: http://github.com/Groestlcoin/grs-lnd-for-wp/
* Description: Manage and use your LND node.
* Description: Manage and use your GRS LND node.
* Version: 0.1.2
* Author: Groestlcoin Developers
* Author URI: https://www.groestlcoin.org/
Expand Down

0 comments on commit 6ef1ea3

Please sign in to comment.