Skip to content

Commit f9ae2b6

Browse files
authored
Merge pull request #831 from kprajapatii/master
1.2.38
2 parents 784ff45 + d397421 commit f9ae2b6

20 files changed

Lines changed: 385 additions & 312 deletions

languages/userswp-en_US.mo

0 Bytes
Binary file not shown.

languages/userswp-en_US.po

Lines changed: 255 additions & 245 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: 5.0
66
Tested up to: 6.8
7-
Stable tag: 1.2.37
7+
Stable tag: 1.2.38
88
License: GPLv3
99
License URI: http://www.gnu.org/licenses/gpl-3.0.html
1010

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

151151
== Changelog ==
152152

153-
= 1.2.38 - TBD =
153+
= 1.2.38 - 2025-07-24 =
154154
* Option to allow user sorting by random - ADDED
155155

156156
= 1.2.37 - 2025-07-17 =

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.37
6+
Version: 1.2.38
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.37' );
27+
define( 'USERSWP_VERSION', '1.2.38' );
2828
}
2929

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

vendor/autoload.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,7 @@
1414
echo $err;
1515
}
1616
}
17-
trigger_error(
18-
$err,
19-
E_USER_ERROR
20-
);
17+
throw new RuntimeException($err);
2118
}
2219

2320
require_once __DIR__ . '/composer/autoload_real.php';

vendor/ayecode/wp-ayecode-ui/ayecode-ui-loader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616
add_action('after_setup_theme', function () {
1717
global $ayecode_ui_version,$ayecode_ui_file_key;
18-
$this_version = "0.2.39";
18+
$this_version = "0.2.40";
1919
if(empty($ayecode_ui_version) || version_compare($this_version , $ayecode_ui_version, '>')){
2020
$ayecode_ui_version = $this_version ;
2121
$ayecode_ui_file_key = wp_hash( __FILE__ );

vendor/ayecode/wp-ayecode-ui/change-log.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
= 0.2.40 - 2025-07-27 =
2+
* .sr-only with BS5 forces to display hidden label - FIXED
3+
* FontAwesome 7 compatibility changes - CHANGED
4+
15
= 0.2.39 - 2025-07-17 =
26
* Added args in FA icon sanitization hook - CHANGED
37

vendor/ayecode/wp-ayecode-ui/example-plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: AyeCode UI
44
Plugin URI: https://ayecode.io/
55
Description: This is an example plugin to test AyeCode UI Quickly.
6-
Version: 0.2.39
6+
Version: 0.2.40
77
Author: AyeCode Ltd
88
Author URI: https://userswp.io
99
License: GPL-2.0+

vendor/ayecode/wp-ayecode-ui/includes/ayecode-ui-settings.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class AyeCode_UI_Settings {
3535
*
3636
* @var string
3737
*/
38-
public $version = '0.2.39';
38+
public $version = '0.2.40';
3939

4040
/**
4141
* Class textdomain.

vendor/ayecode/wp-ayecode-ui/includes/components/class-aui-component-helper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public static function esc_classes( $text ) {
116116
$classes = array_map( "trim", $classes );
117117
$classes = array_map( "sanitize_html_class", $classes );
118118
if ( ! empty( $classes ) ) {
119-
$output = implode( " ", $classes );
119+
$output = implode( " ", array_filter( $classes ) );
120120
}
121121
}
122122

0 commit comments

Comments
 (0)