Skip to content

Commit

Permalink
composer packages updated
Browse files Browse the repository at this point in the history
  • Loading branch information
stiofan committed Jan 26, 2024
1 parent c72a700 commit 6bb15de
Show file tree
Hide file tree
Showing 41 changed files with 1,256 additions and 895 deletions.
18 changes: 0 additions & 18 deletions vendor/autoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,6 @@

// autoload.php @generated by Composer

if (PHP_VERSION_ID < 50600) {
if (!headers_sent()) {
header('HTTP/1.1 500 Internal Server Error');
}
$err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
if (!ini_get('display_errors')) {
if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
fwrite(STDERR, $err);
} elseif (!headers_sent()) {
echo $err;
}
}
trigger_error(
$err,
E_USER_ERROR
);
}

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

return ComposerAutoloaderInitf3d2d3b01d25e99f52c2a4d35c24b58c::getLoader();
48 changes: 12 additions & 36 deletions vendor/ayecode/ayecode-connect-helper/ayecode-connect-helper.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?php

if ( ! defined( 'ABSPATH' ) ) {
exit;
}
Expand All @@ -13,7 +12,7 @@
class AyeCode_Connect_Helper {

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

// Hold the default strings.
var $strings = array();
Expand All @@ -30,24 +29,20 @@ class AyeCode_Connect_Helper {
* @param array $pages
*/
public function __construct( $strings = array(), $pages = array() ) {

// Only fire if not localhost and the current user has the right permissions.
if ( ! $this->is_localhost() && current_user_can( 'manage_options' ) ) {


// set default strings
$default_strings = array(
'connect_title' => __( "Thanks for choosing an AyeCode Product!" ),
'connect_external' => __( "Please confirm you wish to connect your site?" ),
'connect' => sprintf( __( "<strong>Have a license?</strong> Forget about entering license keys or downloading zip files, connect your site for instant access. %slearn more%s" ), "<a href='https://ayecode.io/introducing-ayecode-connect/' target='_blank'>", "</a>" ),
'connect_button' => __( "Connect Site" ),
'connecting_button' => __( "Connecting..." ),
'error_localhost' => __( "This service will only work with a live domain, not a localhost." ),
'error' => __( "Something went wrong, please refresh and try again." ),
'connect_title' => __( "Thanks for choosing an AyeCode Product!", 'ayecode-connect' ),
'connect_external' => __( "Please confirm you wish to connect your site?", 'ayecode-connect' ),
'connect' => wp_sprintf( __( "<strong>Have a license?</strong> Forget about entering license keys or downloading zip files, connect your site for instant access. %slearn more%s", 'ayecode-connect' ), "<a href='https://ayecode.io/introducing-ayecode-connect/' target='_blank'>", "</a>" ),
'connect_button' => __( "Connect Site", 'ayecode-connect' ),
'connecting_button' => __( "Connecting...", 'ayecode-connect' ),
'error_localhost' => __( "This service will only work with a live domain, not a localhost.", 'ayecode-connect' ),
'error' => __( "Something went wrong, please refresh and try again.", 'ayecode-connect' ),
);
$this->strings = array_merge( $default_strings, $strings );


// set default pages
$default_pages = array();
$this->pages = array_merge( $default_pages, $pages );
Expand All @@ -65,7 +60,6 @@ public function __construct( $strings = array(), $pages = array() ) {
if ( ! has_action( 'wp_ajax_nopriv_ayecode_connect_helper_installed' ) ) {
add_action( 'wp_ajax_nopriv_ayecode_connect_helper_installed', array( $this, 'ayecode_connect_helper_installed' ) );
}

}

/**
Expand Down Expand Up @@ -99,7 +93,6 @@ private function format_plugin_slug( $key ) {
* Install and activate the AyeCode Connect Plugin
*/
public function ayecode_connect_install() {

// bail if localhost
if ( $this->is_localhost() ) {
wp_send_json_error( $this->strings['error_localhost'] );
Expand Down Expand Up @@ -302,19 +295,13 @@ public function ayecode_connect_install_notice() {
</span>
<span class="acch-float-left acch-text">
<h3 class="acch-title"><?php echo esc_attr( $connect_title_string ); ?></h3>
<p>
<?php
echo $connect_string;
?>
<p><?php echo $connect_string; ?>
</p>
</span>

<span class="acch-float-left acch-button">
<button onclick="ayecode_connect_helper(this);" id="gd-connect-site"
class="button button-primary"
data-connecting="<?php echo esc_attr( $connecting_button_string ); ?>"><?php echo esc_attr( $connect_button_string ) ?></button>
<button onclick="ayecode_connect_helper(this);" id="gd-connect-site" class="button button-primary" data-connecting="<?php echo esc_attr( $connecting_button_string ); ?>"><?php echo esc_attr( $connect_button_string ) ?></button>
</span>

</div>

<?php
Expand Down Expand Up @@ -361,11 +348,8 @@ class="button button-primary"
</span>

<span class="acch-float-left acch-button">
<button onclick="ayecode_connect_helper(this);" id="gd-connect-site"
class="button button-primary"
data-connecting="<?php echo esc_attr( $connecting_button_string ); ?>"><?php echo esc_attr( $connect_button_string ) ?></button>
<button onclick="ayecode_connect_helper(this);" id="gd-connect-site" class="button button-primary" data-connecting="<?php echo esc_attr( $connecting_button_string ); ?>"><?php echo esc_attr( $connect_button_string ) ?></button>
</span>

</div>
</div>
<?php
Expand Down Expand Up @@ -414,7 +398,6 @@ public function script() {
.acch-button {
zoom: 1.3;
}

</style>
<script>
/**
Expand Down Expand Up @@ -450,9 +433,7 @@ function ayecode_connect_helper($this) {
}
}
});
}


}
<?php
// add thickbox if external request is requested
if(! empty( $_REQUEST['external-connect-request'] )) {
Expand All @@ -465,7 +446,6 @@ function ayecode_connect_helper($this) {
<?php
}
?>

</script>
<?php
}
Expand All @@ -480,17 +460,13 @@ public function maybe_show() {

// check if on a page set to show
if ( isset( $_REQUEST['page'] ) && in_array( $_REQUEST['page'], $this->pages ) ) {

// check if not active and connected
if ( ! defined( 'AYECODE_CONNECT_VERSION' ) || ! get_option( 'ayecode_connect_blog_token' ) ) {
$show = true;
}

}

return $show;
}

}

}
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,2 +1,5 @@
= 1.0.4 - 2023-12-14 =
* Update textdomain - CHANGED

= 1.0.3 =
* Added version comparisons so we know if the connect message will show or not - ADDED

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion vendor/ayecode/wp-ayecode-ui/assets-v5/css/ayecode-ui.css

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions vendor/ayecode/wp-ayecode-ui/assets-v5/scss/_main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -333,3 +333,10 @@ a[class^='bg-'],
a[class*='bg-'] {
transition: background-color .25s ease;
}


// Uploader in safari button overflowing
.geodir-add-files .moxie-shim {
position: initial !important;
background: transparent; // this is for divi theme that does background position stuff and breaks it.
}
Original file line number Diff line number Diff line change
Expand Up @@ -148,4 +148,12 @@ body.modal-open .modal{

.zi-7 {
z-index: 1000000 !important
}
}


// Uploader in safari button overflowing
.geodir-add-files .moxie-shim {
position: initial !important;
background: transparent; // this is for divi theme that does background position stuff and breaks it.
}

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui-fse.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui-rtl.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui.css

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions vendor/ayecode/wp-ayecode-ui/assets/scss/_main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -331,3 +331,9 @@ ul.list-unstyled li {margin-bottom:1rem;}
}
}


// Uploader in safari button overflowing
.geodir-add-files .moxie-shim {
position: initial !important;
background: transparent; // this is for divi theme that does background position stuff and breaks it.
}
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,10 @@ html[data-scroll='0'],html:not([data-scroll]){
}

/* Fix conflicts calendar year selector */
body>.flatpickr-calendar .flatpickr-month .flatpickr-current-month>*{display:inline-block}
body>.flatpickr-calendar .flatpickr-month .flatpickr-current-month>*{display:inline-block}

// Uploader in safari button overflowing
.geodir-add-files .moxie-shim {
position: initial !important;
background: transparent; // this is for divi theme that does background position stuff and breaks it.
}
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.0";
$this_version = "0.2.6";
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
18 changes: 18 additions & 0 deletions vendor/ayecode/wp-ayecode-ui/change-log.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
= 0.2.6 - 2024-01-25 =
* Single quote breaks validation message - FIXED
* WP Editor Styles can now style headings, links, typography - ADDED

= 0.2.5 - 2023-12-14 =
* Update textdomain - CHANGED
* Inline CSS breaks p element in block editor - FIXED

= 0.2.4 =
* Last ios fix broke standard image select from library - FIXED

= 0.2.3 =
* iOS add listing add images button not working - FIXED

= 0.2.1 =
* Manage native mobile datepicker for date or time input on mobile - CHANGED
* plupload button on safari can overflow and block other page elements - FIXED

= 0.2.0 =
* color-scheme-flip-on-scroll feature should flip when mobile menu opened even if not scrolled - FIXED
* Font awesome icon-picker searcher updated to latest 6.x - UPDATED
Expand Down
Loading

0 comments on commit 6bb15de

Please sign in to comment.