Skip to content

Commit

Permalink
v2.3.0: * adds Magic Eden wallet support + Brave solana support
Browse files Browse the repository at this point in the history
  • Loading branch information
0xNe0x1 committed Feb 27, 2024
1 parent 4597ac8 commit 2960714
Show file tree
Hide file tree
Showing 9 changed files with 40 additions and 37 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ https://web3wordpress.xyz/
In order to release the plugins simply push a git tag:

```
git tag v2.2.1
git push origin v2.2.1
git tag v2.3.0
git push origin v2.3.0
```
2 changes: 1 addition & 1 deletion block.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"category": "widgets",
"description": "Web3 payments directly into your own wallet. A Block-enabled WordPress plugin for P2P crypto payments with on-the-fly conversion.",
"keywords": [ "payments", "cryptocurrency", "p2p", "web3", "depay" ],
"version": "2.2.1",
"version": "2.3.0",
"textdomain": "depay-payments",
"example": {},
"editorScript": "depay-payments-script",
Expand Down
54 changes: 27 additions & 27 deletions core/includes/assets/js/widgets.bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion core/includes/classes/class-depay-payments-block.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public static function render_block(array $attributes) {
$wrapper_attributes
);

wp_register_style('depay-payments-frontend-style', DEPAYPAYMENTS_PLUGIN_URL . 'core/includes/assets/css/frontend.css', '2.2.1');
wp_register_style('depay-payments-frontend-style', DEPAYPAYMENTS_PLUGIN_URL . 'core/includes/assets/css/frontend.css', '2.3.0');
wp_enqueue_style('depay-payments-frontend-style');

wp_register_script(
Expand Down
2 changes: 1 addition & 1 deletion core/includes/classes/class-depay-payments-link.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public static function register() {
DEPAYPAYMENTS_PLUGIN_URL . 'core/includes/assets/js/frontend.js',
[],
DEPAYPAYMENTS_PLUGIN_URL . 'core/includes/assets/js/frontend.js',
'2.2.1',
'2.3.0',
true
);

Expand Down
2 changes: 1 addition & 1 deletion core/includes/classes/class-depay-payments-run.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function __construct(){

private function add_hooks(){

wp_register_style('depay-payments-frontend-style', DEPAYPAYMENTS_PLUGIN_URL . 'core/includes/assets/css/frontend.css', '2.2.1');
wp_register_style('depay-payments-frontend-style', DEPAYPAYMENTS_PLUGIN_URL . 'core/includes/assets/css/frontend.css', '2.3.0');
wp_enqueue_style('depay-payments-frontend-style');

wp_register_script(
Expand Down
4 changes: 2 additions & 2 deletions depay-payments.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* Plugin Name: DePay Payments
* Plugin URI: https://depay.com/plugins/wordpress
* Description: Web3 payments directly into your own wallet. Block-enabled Wordpress plugin for P2P cryptocurrency payments on multiple blockchains, with on-the-fly token conversion.
* Version: 2.2.1
* Version: 2.3.0
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Author: DePay
Expand All @@ -29,7 +29,7 @@
define( 'DEPAYPAYMENTS_NAME', 'DePay Payments' );

// Plugin version
define( 'DEPAYPAYMENTS_VERSION', '2.2.1' );
define( 'DEPAYPAYMENTS_VERSION', '2.3.0' );

// Plugin Root File
define( 'DEPAYPAYMENTS_PLUGIN_FILE', __FILE__ );
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@depay/web3-wordpress-depay-payments",
"moduleName": "WordpressDePayPayments",
"version": "2.2.1",
"version": "2.3.0",
"description": "Web3 payments directly into your own wallet. A Block-enabled WordPress plugin for P2P cryptocurrency payments on multiple blockchains.",
"main": "./dist/umd/index.js",
"module": "./dist/esm/index.js",
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: depayfi
Tags: payments, cryptocurrency, p2p, web3, depay
Requires at least: 5.0
Tested up to: 6.4
Stable tag: 2.2.1
Stable tag: 2.3.0
Requires PHP: 5.6
License: GPLv2
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -81,6 +81,9 @@ Building on the idea that "Web3" is the next generation of a blockchain-based an

== Changelog ==

= 2.3.0 =
* adds Magic Eden wallet support + Brave solana support

= 2.2.1 =
* upgrade dependencies
* fix polygon RPC
Expand Down

0 comments on commit 2960714

Please sign in to comment.