Skip to content

Commit

Permalink
Release 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jvoliveiraGN committed Nov 30, 2023
1 parent ec342a4 commit 9a279d5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion assets/js/payment-token-efi.min.js
100755 → 100644

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions gerencianet-oficial.php
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@
* Plugin Name: Efí by Gerencianet Oficial
* Plugin URI: https://wordpress.org/plugins/woo-gerencianet-official/
* Description: Gateway de pagamento Efi by Gerencianet para WooCommerce
* Version: 2.2.0
* Version: 2.2.1
* Author: Efi by Gerencianet
* Author URI: https://www.sejaefi.com.br
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: gerencianet-oficial
* Domain Path: /languages
* WC requires at least: 5.0.0
* WC tested up to: 7.5.1
* WC tested up to: 8.3.0
*/

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}

define( 'GERENCIANET_OFICIAL_VERSION', '2.2.0' );
define( 'GERENCIANET_OFICIAL_VERSION', '2.2.1' );
define( 'GERENCIANET_BOLETO_ID', 'WC_Gerencianet_Boleto' );
define( 'GERENCIANET_CARTAO_ID', 'WC_Gerencianet_Cartao' );
define( 'GERENCIANET_PIX_ID', 'WC_Gerencianet_Pix' );
Expand Down
2 changes: 1 addition & 1 deletion includes/payment-methods/class-wc-gerencianet-cartao.php
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public function payment_fields() {
<script>
var options = {
payeeCode: '<?php echo esc_html($this->get_option( 'gn_payee_code' )); ?>',
enviroment:'<?php echo esc_html($this->get_option( 'gn_sandbox' )) == 'yes'? 'homologation' : 'production'; ?>'
enviroment:'<?php echo esc_html($this->get_option( 'gn_sandbox' )) == 'yes'? 'sandbox' : 'production'; ?>'
}
</script>
<script type="module" src="<?php echo plugins_url( '../assets/js/payment-token-efi.min.js', plugin_dir_path( __FILE__ ) ); ?>"></script>
Expand Down
2 changes: 1 addition & 1 deletion includes/payment-methods/class-wc-gerencianet-pix.php
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public function __construct() {
$this->id = GERENCIANET_PIX_ID; // payment gateway plugin ID
$this->has_fields = true; // custom form
$this->method_title = __( 'Efí - PIX', Gerencianet_I18n::getTextDomain() );
$this->method_description = __( 'Com Efí você pode receber pagamentos via Pix', Gerencianet_I18n::getTextDomain() );
$this->method_description = __( 'Com a Efí você pode receber pagamentos via Pix', Gerencianet_I18n::getTextDomain() );

$this->supports = array(
'products',
Expand Down
4 changes: 2 additions & 2 deletions readme.txt
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Contributors: Efí Bank
Tags: woocommerce, gerencianet, payment, transparent checkout, pix, Boleto, card, brazil, payments brazil, cartão de crédito, efí, efi, efipay, efi bank, efi pay, efípay, efí bank, efí pay
Requires at least: 5.x
Tested up to: 6.2
Stable tag: 2.2.0
Tested up to: 6.4
Stable tag: 2.2.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down

0 comments on commit 9a279d5

Please sign in to comment.