Skip to content

Commit

Permalink
1.2.14
Browse files Browse the repository at this point in the history
  • Loading branch information
Stiofan committed Jul 17, 2024
1 parent 178c50c commit 85ce2b1
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 17 deletions.
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: https://www.ko-fi.com/stiofan
Tags: login form, registration, registration form, user profile, user registration, members, membership
Requires at least: 4.9
Tested up to: 6.6
Stable tag: 1.2.13
Stable tag: 1.2.14
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -146,6 +146,9 @@ Yes, you can customize it with Elementor, but also with Gutenberg, Divi, Beaver

== Changelog ==

= 1.2.14 - 2024-07-17 =
* non FSE themes can fail to render new blocks - FIXED

= 1.2.13 - 2024-07-16 =
* Email notification options in account not saved if only one setting is there - ADDED
* Users page shows empty p tags on block theme - FIXED
Expand Down
4 changes: 2 additions & 2 deletions userswp.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: UsersWP
Plugin URI: https://userswp.io/
Description: The only lightweight user profile plugin for WordPress. UsersWP features front end user profile, users directory, a registration and a login form.
Version: 1.2.13
Version: 1.2.14
Author: AyeCode Ltd
Author URI: https://userswp.io
License: GPL-2.0+
Expand All @@ -24,7 +24,7 @@
}

if ( ! defined( 'USERSWP_VERSION' ) ) {
define( 'USERSWP_VERSION', '1.2.13' );
define( 'USERSWP_VERSION', '1.2.14' );
}

if ( ! defined( 'USERSWP_PATH' ) ) {
Expand Down
3 changes: 3 additions & 0 deletions vendor/ayecode/wp-super-duper/change-log.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
= 1.2.5 - 2024-07-17 =
* non FSE themes can fail to render templates with blocks - FIXED

= 1.2.4 - 2024-07-16 =
* Some blocks not being wrapped inside the block wrapper - FIXED
* Issue with blocks with no arguments not adding shortcode argument - FIXED
Expand Down
7 changes: 6 additions & 1 deletion vendor/ayecode/wp-super-duper/sd-functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -3720,6 +3720,9 @@ function sd_blocks_render_blocks($block_content, $parsed_block, $thiss ){
if(! empty($parsed_block['attrs']['sd_shortcode_close'])){
$content = isset($parsed_block['attrs']['html']) ? $parsed_block['attrs']['html'] : $block_content;
$block_content = $parsed_block['attrs']['sd_shortcode'].$content.$parsed_block['attrs']['sd_shortcode_close'];

$block_content = do_shortcode($block_content);

}elseif(! empty($parsed_block['attrs']['sd_shortcode'])){
$has_warp = false;
if($block_content && strpos(trim($block_content), '<div class="wp-block-') === 0 ){
Expand All @@ -3733,8 +3736,10 @@ function sd_blocks_render_blocks($block_content, $parsed_block, $thiss ){
// Add the shortcode if its not a wrapped block
$block_content .= $parsed_block['attrs']['sd_shortcode'];
}

$block_content = do_shortcode($block_content);
}
return $block_content;
return $block_content;
}
}

Expand Down
2 changes: 1 addition & 1 deletion vendor/ayecode/wp-super-duper/wp-super-duper.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

if ( ! class_exists( 'WP_Super_Duper' ) ) {

define( 'SUPER_DUPER_VER', '1.2.4' );
define( 'SUPER_DUPER_VER', '1.2.5' );

/**
* A Class to be able to create a Widget, Shortcode or Block to be able to output content for WordPress.
Expand Down
14 changes: 7 additions & 7 deletions vendor/composer/installed.json
Original file line number Diff line number Diff line change
Expand Up @@ -206,24 +206,24 @@
},
{
"name": "ayecode/wp-super-duper",
"version": "1.2.4",
"version_normalized": "1.2.4.0",
"version": "1.2.5",
"version_normalized": "1.2.5.0",
"source": {
"type": "git",
"url": "https://github.com/AyeCode/wp-super-duper.git",
"reference": "2fc373bedb2fcc853e8115de9e82b5c5c008d3bf"
"reference": "ce5293af2df1c8a7c5412ec810e32143242203c1"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/AyeCode/wp-super-duper/zipball/2fc373bedb2fcc853e8115de9e82b5c5c008d3bf",
"reference": "2fc373bedb2fcc853e8115de9e82b5c5c008d3bf",
"url": "https://api.github.com/repos/AyeCode/wp-super-duper/zipball/ce5293af2df1c8a7c5412ec810e32143242203c1",
"reference": "ce5293af2df1c8a7c5412ec810e32143242203c1",
"shasum": ""
},
"require": {
"composer/installers": "~1.0",
"php": ">=5.4.0"
},
"time": "2024-07-16T12:53:15+00:00",
"time": "2024-07-17T10:50:48+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
Expand Down Expand Up @@ -255,7 +255,7 @@
],
"support": {
"issues": "https://github.com/AyeCode/wp-super-duper/issues",
"source": "https://github.com/AyeCode/wp-super-duper/tree/1.2.4"
"source": "https://github.com/AyeCode/wp-super-duper/tree/1.2.5"
},
"install-path": "../ayecode/wp-super-duper"
},
Expand Down
10 changes: 5 additions & 5 deletions vendor/composer/installed.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
'name' => 'uswerwp/userswp',
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'reference' => 'f94a7e2deba1e2a48f726c56d63da1a6442e60e2',
'reference' => '178c50cdabf2123c359f2a11fbae430b1f06c762',
'type' => 'project',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand Down Expand Up @@ -47,9 +47,9 @@
'dev_requirement' => false,
),
'ayecode/wp-super-duper' => array(
'pretty_version' => '1.2.4',
'version' => '1.2.4.0',
'reference' => '2fc373bedb2fcc853e8115de9e82b5c5c008d3bf',
'pretty_version' => '1.2.5',
'version' => '1.2.5.0',
'reference' => 'ce5293af2df1c8a7c5412ec810e32143242203c1',
'type' => 'library',
'install_path' => __DIR__ . '/../ayecode/wp-super-duper',
'aliases' => array(),
Expand Down Expand Up @@ -79,7 +79,7 @@
'uswerwp/userswp' => array(
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'reference' => 'f94a7e2deba1e2a48f726c56d63da1a6442e60e2',
'reference' => '178c50cdabf2123c359f2a11fbae430b1f06c762',
'type' => 'project',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand Down

0 comments on commit 85ce2b1

Please sign in to comment.