Minor update in plugin

This commit is contained in:
Rene V. Vergara A. 2022-12-26 17:10:06 -05:00
parent bb6c7b5f08
commit 1839a253d2
2 changed files with 16 additions and 9 deletions

View File

@ -1,6 +1,13 @@
*** Changelog ***
# ZGo Payment Plugin for WooCommerce
## Version 0.8 - 2022-12-26
ZGo's WooCommerce backend API in test mode
Set licence to GPL v2 or later
## Version 0.5 - 2022-11-18
integration to ZGo's Authentication End Point in test mode
## Version 0.2 - 2022-11-07
* Initial alpha release
Uses test authentication and payent REST API ()

View File

@ -2,12 +2,14 @@
/**
* Plugin Name: ZGo Payment Gateway
* Plugin URI: https://vergara.tech'
* Description: ZGo latest payment processing solution. Accept payments using Zcash.
* Text Domain: zgopmtgwy
* Version: 0.5
* Author: Vergara Tech
* Description: ZGo latest payment processing solution for Woocommerce. Accept payments using Zcash.
* Version: 0.8
* Requires at least: 5.2
* Requires PHP: 7.2
* Author: Vergara Tech LLC
* Author URI: https://vergara.tech
*
* License: GPL v2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
**/
if ( ! defined( 'ABSPATH' ) ) {
@ -71,7 +73,7 @@ function zgopmt_init() {
$this->siteURL = get_site_url();
$this->console_log("Site URL: " . $this->siteURL);
$this->domain = 'zgopmt';
$this->domain = 'zgopmtgwy';
$this->id = "zgo_payment";
$this->icon = $iconurl;
@ -395,9 +397,7 @@ function zgopmt_init() {
public function base64url_encode($data) {
$edata = str_replace('=','',strtr(base64_encode($data), '+/', '-_'));
// $this->console_log('data -> ' . $data);
// $this->console_log('edata -> ' . $edata);
return $edata;
return $edata;
}
}