Skip to content

Commit 5352744

Browse files
Release v4.1.2
* [ADD] Widget loading animation. * [DEL] Deprecated options.
2 parents 0342c62 + fc7d1d8 commit 5352744

File tree

10 files changed

+144
-176
lines changed

10 files changed

+144
-176
lines changed

HISTORY.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
## Change Log
22

3+
#### [v4.1.2](https://github.com/aplazame/woocommerce/tree/v4.1.2) (2024-10-14)
4+
5+
* [ADD] Widget loading animation.
6+
* [DEL] Deprecated options.
7+
38
#### [v4.1.1](https://github.com/aplazame/woocommerce/tree/v4.1.1) (2024-09-12)
49

510
* Minor release for marketplace.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugin_path ?= plugin
22
i18n_path ?= i18n/languages
33
i18n_name ?= aplazame-es_ES
4-
version ?= v4.1.1
4+
version ?= v4.1.2
55
errors = $(shell find . -type f -name "*.php" -exec php -l "{}" \;| grep "Errors parsing ";)
66

77
clean:

plugin/README.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: aplazame,woocommerce,ecommerce,payment,checkout,credit,aplazar,financiar,f
44
Requires at least: 4.0.1
55
Tested up to: 6.6.2
66
Requires PHP: 5.3.0
7-
Stable tag: 4.1.1
7+
Stable tag: 4.1.2
88
License: BSD-3-Clause
99
License URI: https://github.com/aplazame/woocommerce/blob/master/LICENSE
1010

@@ -77,6 +77,11 @@ Of course, simply select an *"Aplazame refund"* in the product detail.
7777

7878
== Changelog ==
7979

80+
#### [v4.1.2](https://github.com/aplazame/woocommerce/tree/v4.1.2) (2024-10-14)
81+
82+
* [ADD] Widget loading animation.
83+
* [DEL] Deprecated options.
84+
8085
#### [v4.1.1](https://github.com/aplazame/woocommerce/tree/v4.1.1) (2024-09-12)
8186

8287
* Minor release for marketplace.

plugin/aplazame.php

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* Plugin Name: Aplazame
44
* Plugin URI: https://github.com/aplazame/woocommerce
5-
* Version: 4.1.1
5+
* Version: 4.1.2
66
* Description: Aplazame offers a payment method to receive funding for the purchases.
77
* Author: Aplazame
88
* Author URI: https://aplazame.com
@@ -11,7 +11,7 @@
1111
* Domain Path: /i18n/languages/
1212
*
1313
* WC requires at least: 3.0.0
14-
* WC tested up to: 9.2.3
14+
* WC tested up to: 9.3.3
1515
*
1616
* License: GNU General Public License v3.0
1717
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
@@ -25,7 +25,7 @@
2525
require_once 'lib/Aplazame/Aplazame/autoload.php';
2626

2727
class WC_Aplazame {
28-
const VERSION = '4.1.1';
28+
const VERSION = '4.1.2';
2929
const METHOD_ID = 'aplazame';
3030
const METHOD_TITLE = 'Aplazame';
3131

@@ -385,8 +385,6 @@ class WC_Aplazame_Install {
385385
'cart_widget_ver' => 'v5',
386386
'product_slider' => 'yes',
387387
'cart_slider' => 'yes',
388-
'product_small_size' => 'no',
389-
'cart_small_size' => 'no',
390388
);
391389

392390
public static function upgrade() {

plugin/classes/wc-aplazame-gateway.php

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -296,12 +296,6 @@ public function init_form_fields() {
296296
'description' => __( 'Show slider in product widget (only v5)', 'aplazame' ),
297297
'label' => __( 'Show slider info', 'aplazame' ),
298298
),
299-
'product_small_size' => array(
300-
'type' => 'checkbox',
301-
'title' => __( 'Small size', 'aplazame' ),
302-
'description' => __( 'Reduce size of product widget (only v5)', 'aplazame' ),
303-
'label' => __( 'Reduce size', 'aplazame' ),
304-
),
305299
'product_downpayment_info' => array(
306300
'type' => 'checkbox',
307301
'title' => __( 'Downpayment info', 'aplazame' ),
@@ -426,12 +420,6 @@ public function init_form_fields() {
426420
'description' => __( 'Show slider in cart widget (only v5)', 'aplazame' ),
427421
'label' => __( 'Show slider info', 'aplazame' ),
428422
),
429-
'cart_small_size' => array(
430-
'type' => 'checkbox',
431-
'title' => __( 'Small size', 'aplazame' ),
432-
'description' => __( 'Reduce size of cart widget (only v5)', 'aplazame' ),
433-
'label' => __( 'Reduce size', 'aplazame' ),
434-
),
435423
'cart_downpayment_info' => array(
436424
'type' => 'checkbox',
437425
'title' => __( 'Downpayment info', 'aplazame' ),
-310 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)