Skip to content

Commit fa19d21

Browse files
committed
Releasing update 1.2.49
1 parent 84526a0 commit fa19d21

10 files changed

Lines changed: 131 additions & 112 deletions

File tree

languages/userswp-en_US.mo

0 Bytes
Binary file not shown.

languages/userswp-en_US.po

Lines changed: 94 additions & 94 deletions
Large diffs are not rendered by default.

readme.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Donate link: https://www.ko-fi.com/stiofan
44
Tags: login form, registration, registration form, user profile, user registration, members, membership
55
Requires at least: 6.1
66
Tested up to: 6.8
7-
Stable tag: 1.2.48
7+
Stable tag: 1.2.49
88
License: GPLv3
99
License URI: http://www.gnu.org/licenses/gpl-3.0.html
1010

@@ -152,7 +152,7 @@ Yes, you can customize it with Elementor, but also with Gutenberg, Divi, Beaver
152152

153153
== Changelog ==
154154

155-
= 1.2.49 - 2025-11-27 =
155+
= 1.2.49 - 2025-11-26 =
156156
* Check nonce while changing the order in register form builder - FIXED/SECURITY
157157

158158
= 1.2.48 - 2025-11-12 =

userswp.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: UsersWP
44
Plugin URI: https://userswp.io/
55
Description: The only lightweight user profile plugin for WordPress. UsersWP features front end user profile, users directory, a registration and a login form.
6-
Version: 1.2.48
6+
Version: 1.2.49
77
Author: AyeCode Ltd
88
Author URI: https://userswp.io
99
License: GPL-2.0+
@@ -24,7 +24,7 @@
2424
}
2525

2626
if ( ! defined( 'USERSWP_VERSION' ) ) {
27-
define( 'USERSWP_VERSION', '1.2.48' );
27+
define( 'USERSWP_VERSION', '1.2.49' );
2828
}
2929

3030
if ( ! defined( 'USERSWP_PATH' ) ) {

vendor/ayecode/wp-super-duper/change-log.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
= 1.2.30 - 2025-11-13 =
2+
* Bricks block settings don't saves default value properly - FIXED
3+
14
= 1.2.29 - 2025-10-31 =
25
* Shows error when GeoDirectory is not active - FIXED
36

vendor/ayecode/wp-super-duper/includes/class-super-duper-bricks-element.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,22 @@ public function sd_convert_arguments() {
178178

179179
$arg['rerender'] = true;
180180

181+
// Convert checkbox to select, because Bricks settings don't save un-checked checkbox value.
182+
if ( isset( $arg['type'] ) && $arg['type'] == 'checkbox' && empty( $arg['multiple'] ) ) {
183+
$arg['type'] = 'select';
184+
185+
if ( ! empty( $arg['value'] ) && is_scalar( $arg['value'] ) && $arg['value'] !== '0' ) {
186+
$checked_value = $arg['value'];
187+
} else {
188+
$checked_value = '1';
189+
}
190+
191+
$arg['options'] = array(
192+
$checked_value => _x( 'Yes', 'Widget option: Yes', 'geodirectory' ),
193+
'0' => _x( 'No', 'Widget option: No', 'geodirectory' )
194+
);
195+
}
196+
181197
// required
182198
if( ! empty( $arg['element_require'] ) ) {
183199
$arg['required'] = $this->sd_convert_required( $arg['element_require'] );

vendor/ayecode/wp-super-duper/sd-plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* @wordpress-plugin
66
* Plugin Name: Super Duper - Examples
77
* Description: This is a Hello World test plugin for WP Super Duper Class.
8-
* Version: 1.2.29
8+
* Version: 1.2.30
99
* Author: AyeCode
1010
* Author URI: https://ayecode.io
1111
* Text Domain: super-duper

vendor/ayecode/wp-super-duper/wp-super-duper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
if ( ! class_exists( 'WP_Super_Duper' ) ) {
77

8-
define( 'SUPER_DUPER_VER', '1.2.29' );
8+
define( 'SUPER_DUPER_VER', '1.2.30' );
99

1010
/**
1111
* A Class to be able to create a Widget, Shortcode or Block to be able to output content for WordPress.

vendor/composer/installed.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -206,24 +206,24 @@
206206
},
207207
{
208208
"name": "ayecode/wp-super-duper",
209-
"version": "1.2.29",
210-
"version_normalized": "1.2.29.0",
209+
"version": "1.2.30",
210+
"version_normalized": "1.2.30.0",
211211
"source": {
212212
"type": "git",
213213
"url": "https://github.com/AyeCode/wp-super-duper.git",
214-
"reference": "1f40eee644665f760475d0fb8c727301007e0e93"
214+
"reference": "49f3b1bbc46240ada865c7cc00900860b15e2f2e"
215215
},
216216
"dist": {
217217
"type": "zip",
218-
"url": "https://api.github.com/repos/AyeCode/wp-super-duper/zipball/1f40eee644665f760475d0fb8c727301007e0e93",
219-
"reference": "1f40eee644665f760475d0fb8c727301007e0e93",
218+
"url": "https://api.github.com/repos/AyeCode/wp-super-duper/zipball/49f3b1bbc46240ada865c7cc00900860b15e2f2e",
219+
"reference": "49f3b1bbc46240ada865c7cc00900860b15e2f2e",
220220
"shasum": ""
221221
},
222222
"require": {
223223
"composer/installers": "~1.0",
224224
"php": ">=5.4.0"
225225
},
226-
"time": "2025-10-31T05:45:44+00:00",
226+
"time": "2025-11-13T14:10:46+00:00",
227227
"type": "library",
228228
"installation-source": "dist",
229229
"autoload": {
@@ -255,7 +255,7 @@
255255
],
256256
"support": {
257257
"issues": "https://github.com/AyeCode/wp-super-duper/issues",
258-
"source": "https://github.com/AyeCode/wp-super-duper/tree/1.2.29"
258+
"source": "https://github.com/AyeCode/wp-super-duper/tree/1.2.30"
259259
},
260260
"install-path": "../ayecode/wp-super-duper"
261261
},

vendor/composer/installed.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
'name' => 'uswerwp/userswp',
44
'pretty_version' => 'dev-master',
55
'version' => 'dev-master',
6-
'reference' => '619a2da9b81f24569354f02c393faca03b26ffc0',
6+
'reference' => '84526a070fa6b47148a863cd2621937efa32749c',
77
'type' => 'project',
88
'install_path' => __DIR__ . '/../../',
99
'aliases' => array(),
@@ -47,9 +47,9 @@
4747
'dev_requirement' => false,
4848
),
4949
'ayecode/wp-super-duper' => array(
50-
'pretty_version' => '1.2.29',
51-
'version' => '1.2.29.0',
52-
'reference' => '1f40eee644665f760475d0fb8c727301007e0e93',
50+
'pretty_version' => '1.2.30',
51+
'version' => '1.2.30.0',
52+
'reference' => '49f3b1bbc46240ada865c7cc00900860b15e2f2e',
5353
'type' => 'library',
5454
'install_path' => __DIR__ . '/../ayecode/wp-super-duper',
5555
'aliases' => array(),
@@ -79,7 +79,7 @@
7979
'uswerwp/userswp' => array(
8080
'pretty_version' => 'dev-master',
8181
'version' => 'dev-master',
82-
'reference' => '619a2da9b81f24569354f02c393faca03b26ffc0',
82+
'reference' => '84526a070fa6b47148a863cd2621937efa32749c',
8383
'type' => 'project',
8484
'install_path' => __DIR__ . '/../../',
8585
'aliases' => array(),

0 commit comments

Comments
 (0)