Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
class AyeCode_Connect_Helper {

// Hold the version number
var $version = "1.0.4";
var $version = "1.0.5";

// Hold the default strings.
var $strings = array();
Expand Down Expand Up @@ -93,6 +93,13 @@ private function format_plugin_slug( $key ) {
* Install and activate the AyeCode Connect Plugin
*/
public function ayecode_connect_install() {
// Security check.
check_ajax_referer( 'ayecode-connect-helper', 'security' );

if ( ! current_user_can( 'manage_options' ) ) {
wp_send_json_error( $this->strings['error'] );
}

// bail if localhost
if ( $this->is_localhost() ) {
wp_send_json_error( $this->strings['error_localhost'] );
Expand Down
3 changes: 3 additions & 0 deletions vendor/ayecode/ayecode-connect-helper/change-log.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
= 1.0.5 - 2026-01-20 =
* Extra sanitization for AyeCode Connect plugin install request - FIXED/SECURITY

= 1.0.4 - 2023-12-14 =
* Update textdomain - CHANGED

Expand Down
2 changes: 1 addition & 1 deletion vendor/ayecode/wp-ayecode-ui/ayecode-ui-loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
add_action('after_setup_theme', function () {
global $ayecode_ui_version,$ayecode_ui_file_key;
$this_version = "0.2.42";
$this_version = "0.2.43";
if(empty($ayecode_ui_version) || version_compare($this_version , $ayecode_ui_version, '>')){
$ayecode_ui_version = $this_version ;
$ayecode_ui_file_key = wp_hash( __FILE__ );
Expand Down
3 changes: 3 additions & 0 deletions vendor/ayecode/wp-ayecode-ui/change-log.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
= 0.2.43 - 2026-01-22 =
* Dropdown does not show the option selected if the field value is 0 - FIXED

= 0.2.42 - 2025-10-30 =
* Detect Breakdance builder preview - ADDED

Expand Down
4 changes: 2 additions & 2 deletions vendor/ayecode/wp-ayecode-ui/example-plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
Plugin Name: AyeCode UI
Plugin URI: https://ayecode.io/
Description: This is an example plugin to test AyeCode UI Quickly.
Version: 0.2.42
Version: 0.2.43
Author: AyeCode Ltd
Author URI: https://userswp.io
License: GPL-2.0+
License URI: http://www.gnu.org/licenses/gpl-2.0.txt
Text Domain: ayecode-ui
Domain Path: /languages
Requires at least: 5.0
Tested up to: 6.8
Tested up to: 6.9
*/

// If this file is called directly, abort.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class AyeCode_UI_Settings {
*
* @var string
*/
public $version = '0.2.42';
public $version = '0.2.43';

/**
* Class textdomain.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -988,7 +988,6 @@ public static function select( $args = array() ) {
} elseif ( ( $args['value'] === '0' || $args['value'] === 0 ) && ( $val === '0' || $val === 0 ) ) {
$selected = selected( $args['value'], $val, false );
}

$output .= '<option value="' . esc_attr( $val ) . '" ' . $selected . '>' . esc_attr( $name ) . '</option>';
}
}
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.31 - 2026-01-22 =
* Border radius can't be unset when border is set to default - FIXED

= 1.2.30 - 2025-11-13 =
* Bricks block settings don't saves default value properly - FIXED

Expand Down
4 changes: 2 additions & 2 deletions vendor/ayecode/wp-super-duper/sd-functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ function sd_get_border_input( $type = 'border', $overwrite = array() ) {
'rounded-bottom' => 'rounded-bottom',
'rounded-left' => 'rounded-left',
);
$defaults['element_require'] = '([%border%]&&[%border%]!="0")';
$defaults['element_require'] = '(([%border%]&&[%border%]!="0")||[%rounded%])';
} elseif ( 'rounded_size' === $type ) {
$defaults['title'] = __( 'Border radius size', 'ayecode-connect' );

Expand All @@ -254,7 +254,7 @@ function sd_get_border_input( $type = 'border', $overwrite = array() ) {
'lg' => __( 'Large', 'ayecode-connect' ),
);
}
$defaults['element_require'] = '([%border%]&&[%border%]!="0")';
$defaults['element_require'] = '(([%border%]&&[%border%]!="0")||[%rounded_size%]!="")';
} elseif ( 'width' === $type ) { // BS%
$defaults['title'] = __( 'Border width', 'ayecode-connect' );
$defaults['options'] = array(
Expand Down
4 changes: 2 additions & 2 deletions vendor/ayecode/wp-super-duper/sd-plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
* @wordpress-plugin
* Plugin Name: Super Duper - Examples
* Description: This is a Hello World test plugin for WP Super Duper Class.
* Version: 1.2.30
* Version: 1.2.31
* Author: AyeCode
* Author URI: https://ayecode.io
* Text Domain: super-duper
* Domain Path: /languages
* Requires at least: 5.0
* Tested up to: 6.8
* Tested up to: 6.9
*/

if ( ! defined( 'ABSPATH' ) ) {
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.30' );
define( 'SUPER_DUPER_VER', '1.2.31' );

/**
* A Class to be able to create a Widget, Shortcode or Block to be able to output content for WordPress.
Expand Down
42 changes: 21 additions & 21 deletions vendor/composer/installed.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
"packages": [
{
"name": "ayecode/ayecode-connect-helper",
"version": "1.0.4",
"version_normalized": "1.0.4.0",
"version": "1.0.5",
"version_normalized": "1.0.5.0",
"source": {
"type": "git",
"url": "https://github.com/AyeCode/ayecode-connect-helper.git",
"reference": "d9d9ba849b808a38bb23532e7585c4186bc086cd"
"reference": "e778b5e3a3b8e7550ef8e82ed45550b593af683d"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/AyeCode/ayecode-connect-helper/zipball/d9d9ba849b808a38bb23532e7585c4186bc086cd",
"reference": "d9d9ba849b808a38bb23532e7585c4186bc086cd",
"url": "https://api.github.com/repos/AyeCode/ayecode-connect-helper/zipball/e778b5e3a3b8e7550ef8e82ed45550b593af683d",
"reference": "e778b5e3a3b8e7550ef8e82ed45550b593af683d",
"shasum": ""
},
"require": {
Expand All @@ -24,7 +24,7 @@
"squizlabs/php_codesniffer": "^3.2",
"wp-coding-standards/wpcs": "*"
},
"time": "2023-12-14T17:21:42+00:00",
"time": "2026-01-20T12:50:52+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
Expand Down Expand Up @@ -53,26 +53,26 @@
],
"support": {
"issues": "https://github.com/AyeCode/ayecode-connect-helper/issues",
"source": "https://github.com/AyeCode/ayecode-connect-helper/tree/1.0.4"
"source": "https://github.com/AyeCode/ayecode-connect-helper/tree/1.0.5"
},
"install-path": "../ayecode/ayecode-connect-helper"
},
{
"name": "ayecode/wp-ayecode-ui",
"version": "0.2.42",
"version_normalized": "0.2.42.0",
"version": "0.2.43",
"version_normalized": "0.2.43.0",
"source": {
"type": "git",
"url": "https://github.com/AyeCode/wp-ayecode-ui.git",
"reference": "41cee308506cd448b1b97167c1a3d125805611d2"
"reference": "75232df33684c7e28b58569431ffd6463a02759a"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/AyeCode/wp-ayecode-ui/zipball/41cee308506cd448b1b97167c1a3d125805611d2",
"reference": "41cee308506cd448b1b97167c1a3d125805611d2",
"url": "https://api.github.com/repos/AyeCode/wp-ayecode-ui/zipball/75232df33684c7e28b58569431ffd6463a02759a",
"reference": "75232df33684c7e28b58569431ffd6463a02759a",
"shasum": ""
},
"time": "2025-10-30T12:20:29+00:00",
"time": "2026-01-22T13:23:41+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
Expand Down Expand Up @@ -101,7 +101,7 @@
],
"support": {
"issues": "https://github.com/AyeCode/wp-ayecode-ui/issues",
"source": "https://github.com/AyeCode/wp-ayecode-ui/tree/0.2.42"
"source": "https://github.com/AyeCode/wp-ayecode-ui/tree/0.2.43"
},
"install-path": "../ayecode/wp-ayecode-ui"
},
Expand Down Expand Up @@ -206,24 +206,24 @@
},
{
"name": "ayecode/wp-super-duper",
"version": "1.2.30",
"version_normalized": "1.2.30.0",
"version": "1.2.31",
"version_normalized": "1.2.31.0",
"source": {
"type": "git",
"url": "https://github.com/AyeCode/wp-super-duper.git",
"reference": "49f3b1bbc46240ada865c7cc00900860b15e2f2e"
"reference": "71d4ea3f9eaecd2ff582b23f0dc716d6b65e36db"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/AyeCode/wp-super-duper/zipball/49f3b1bbc46240ada865c7cc00900860b15e2f2e",
"reference": "49f3b1bbc46240ada865c7cc00900860b15e2f2e",
"url": "https://api.github.com/repos/AyeCode/wp-super-duper/zipball/71d4ea3f9eaecd2ff582b23f0dc716d6b65e36db",
"reference": "71d4ea3f9eaecd2ff582b23f0dc716d6b65e36db",
"shasum": ""
},
"require": {
"composer/installers": "~1.0",
"php": ">=5.4.0"
},
"time": "2025-11-13T14:10:46+00:00",
"time": "2026-01-22T13:26:51+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.30"
"source": "https://github.com/AyeCode/wp-super-duper/tree/1.2.31"
},
"install-path": "../ayecode/wp-super-duper"
},
Expand Down
22 changes: 11 additions & 11 deletions vendor/composer/installed.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,26 @@
'name' => 'uswerwp/userswp',
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'reference' => 'ded014d2d3a31b54534b2076e20da34eaa815cdb',
'reference' => '9040dd2349a5c3ab232bd76fa629d2a72e6e6988',
'type' => 'project',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
'dev' => true,
),
'versions' => array(
'ayecode/ayecode-connect-helper' => array(
'pretty_version' => '1.0.4',
'version' => '1.0.4.0',
'reference' => 'd9d9ba849b808a38bb23532e7585c4186bc086cd',
'pretty_version' => '1.0.5',
'version' => '1.0.5.0',
'reference' => 'e778b5e3a3b8e7550ef8e82ed45550b593af683d',
'type' => 'library',
'install_path' => __DIR__ . '/../ayecode/ayecode-connect-helper',
'aliases' => array(),
'dev_requirement' => false,
),
'ayecode/wp-ayecode-ui' => array(
'pretty_version' => '0.2.42',
'version' => '0.2.42.0',
'reference' => '41cee308506cd448b1b97167c1a3d125805611d2',
'pretty_version' => '0.2.43',
'version' => '0.2.43.0',
'reference' => '75232df33684c7e28b58569431ffd6463a02759a',
'type' => 'library',
'install_path' => __DIR__ . '/../ayecode/wp-ayecode-ui',
'aliases' => array(),
Expand All @@ -47,9 +47,9 @@
'dev_requirement' => false,
),
'ayecode/wp-super-duper' => array(
'pretty_version' => '1.2.30',
'version' => '1.2.30.0',
'reference' => '49f3b1bbc46240ada865c7cc00900860b15e2f2e',
'pretty_version' => '1.2.31',
'version' => '1.2.31.0',
'reference' => '71d4ea3f9eaecd2ff582b23f0dc716d6b65e36db',
'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' => 'ded014d2d3a31b54534b2076e20da34eaa815cdb',
'reference' => '9040dd2349a5c3ab232bd76fa629d2a72e6e6988',
'type' => 'project',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand Down