Skip to content

Commit

Permalink
Merge branch 'branch-1.8.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
Screenfeed committed Sep 13, 2018
2 parents 752d913 + b37deba commit e914395
Show file tree
Hide file tree
Showing 150 changed files with 629 additions and 182 deletions.
2 changes: 1 addition & 1 deletion assets/css/admin.css
Original file line number Diff line number Diff line change
Expand Up @@ -1179,7 +1179,7 @@ ul.imagify-datas-details.imagify-datas-details {
overflow: hidden;
border-top: 2px solid transparent;
padding-top: 5px;
font-size: 8px;
font-size: 11px;
}
.nggform .imagify-datas-actions-links {
position: relative;
Expand Down
2 changes: 1 addition & 1 deletion assets/css/admin.min.css

Large diffs are not rendered by default.

21 changes: 20 additions & 1 deletion assets/css/options.css
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,7 @@ label[for="imagify_sizes_full"] + .imagify-info {
}

.imagify-menu-bar-img {
box-sizing: border-box;
max-width: 100%;
height: auto;
margin-top: 0;
Expand Down Expand Up @@ -440,7 +441,8 @@ a.btn-rocket:focus {
}

/* Menu in admin bar label exception */
label[for="imagify_admin_bar_menu"] {
label[for="imagify_admin_bar_menu"],
label[for="imagify_partner_links"] {
font-weight: normal !important;
color: #626E7B !important;
}
Expand Down Expand Up @@ -638,6 +640,23 @@ p.imagify-custom-folder-line {
.imagify-folders-tree .imagify-is-open ~ label {
color: #7A8996;
}
.imagify-folders-tree .imagify-folder.imagify-loading:before,
.imagify-folders-tree .imagify-folder .imagify-loader {
display: none;
}
.imagify-folders-tree .imagify-folder.imagify-loading .imagify-loader {
display: inline-block;
width: 13px;
height: 21px;
font-size: 1.5em;
vertical-align: .15em;
}
.imagify-folders-tree .imagify-folder.imagify-loading .imagify-loader img {
display: inline-block;
width: 100%;
height: auto;
vertical-align: middle;
}

.imagify-folders-tree button.imagify-folder:hover,
.imagify-folders-tree button.imagify-folder:focus,
Expand Down
2 changes: 1 addition & 1 deletion assets/css/options.min.css

Large diffs are not rendered by default.

Binary file added assets/images/imagify-menu-bar-de.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/imagify-menu-bar-en.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/imagify-menu-bar-es.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/imagify-menu-bar-fr.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/imagify-menu-bar-it.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/images/imagify-menu-bar.jpg
Binary file not shown.
8 changes: 4 additions & 4 deletions assets/js/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -320,17 +320,17 @@
return;
}

$button.attr( 'disabled', 'disabled' );
$button.attr( 'disabled', 'disabled' ).addClass( 'imagify-loading' );

if ( $tree.length ) {
if ( $button.hasClass( 'imagify-is-open' ) ) {
$tree.addClass( 'hidden' );
$button.removeClass(' imagify-is-open' );
} else {
$tree.removeClass( 'hidden' );
$button.addClass(' imagify-is-open' );
$button.addClass( 'imagify-is-open' );
}
$button.removeAttr( 'disabled' );
$button.removeAttr( 'disabled' ).removeClass( 'imagify-loading' );
return;
}

Expand Down Expand Up @@ -365,7 +365,7 @@
} );
} )
.always( function(){
$button.removeAttr( 'disabled' );
$button.removeAttr( 'disabled' ).removeClass( 'imagify-loading' );
} );
} );

Expand Down
2 changes: 1 addition & 1 deletion assets/js/options.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions imagify.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Imagify
* Plugin URI: https://wordpress.org/plugins/imagify/
* Description: Dramaticaly reduce image file sizes without losing quality, make your website load faster, boost your SEO and save money on your bandwidth using Imagify, the new most advanced image optimization tool.
* Version: 1.8.1.1
* Version: 1.8.2
* Author: WP Media
* Author URI: https://wp-media.me/
* Licence: GPLv2
Expand All @@ -14,10 +14,10 @@
* Copyright 2018 WP Media
*/

defined( 'ABSPATH' ) || die( 'Cheatin\' uh?' );
defined( 'ABSPATH' ) || die( 'Cheatin uh?' );

// Imagify defines.
define( 'IMAGIFY_VERSION' , '1.8.1.1' );
define( 'IMAGIFY_VERSION' , '1.8.2' );
define( 'IMAGIFY_WP_MIN' , '4.0' );
define( 'IMAGIFY_SLUG' , 'imagify' );
define( 'IMAGIFY_FILE' , __FILE__ );
Expand Down
3 changes: 2 additions & 1 deletion inc/3rd-party/3rd-party.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
defined( 'ABSPATH' ) || die( 'Cheatin\' uh?' );
defined( 'ABSPATH' ) || die( 'Cheatin uh?' );

/**
* Plugins.
Expand All @@ -10,6 +10,7 @@
require IMAGIFY_3RD_PARTY_PATH . 'nextgen-gallery/nextgen-gallery.php';
require IMAGIFY_3RD_PARTY_PATH . 'regenerate-thumbnails/regenerate-thumbnails.php';
require IMAGIFY_3RD_PARTY_PATH . 'wp-retina-2x/wp-retina-2x.php';
require IMAGIFY_3RD_PARTY_PATH . 'wp-time-capsule/wp-time-capsule.php';
require IMAGIFY_3RD_PARTY_PATH . 'screets-lc.php';
require IMAGIFY_3RD_PARTY_PATH . 'wp-real-media-library.php';
require IMAGIFY_3RD_PARTY_PATH . 'wp-rocket.php';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
defined( 'ABSPATH' ) || die( 'Cheatin\' uh?' );
defined( 'ABSPATH' ) || die( 'Cheatin uh?' );

/**
* Tell if WP Offload S3 compatibility is loaded.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
defined( 'ABSPATH' ) || die( 'Cheatin\' uh?' );
defined( 'ABSPATH' ) || die( 'Cheatin uh?' );

/**
* Imagify WP Offload S3 attachment class.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
defined( 'ABSPATH' ) || die( 'Cheatin\' uh?' );
defined( 'ABSPATH' ) || die( 'Cheatin uh?' );

/**
* Imagify WP Offload S3 class.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
defined( 'ABSPATH' ) || die( 'Cheatin\' uh?' );
defined( 'ABSPATH' ) || die( 'Cheatin uh?' );

if ( function_exists( 'enable_media_replace' ) ) :

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
defined( 'ABSPATH' ) || die( 'Cheatin\' uh?' );
defined( 'ABSPATH' ) || die( 'Cheatin uh?' );

/**
* Compat class for Enable Media Replace plugin.
Expand Down
2 changes: 1 addition & 1 deletion inc/3rd-party/formidable-pro/formidable-pro.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
defined( 'ABSPATH' ) || die( 'Cheatin\' uh?' );
defined( 'ABSPATH' ) || die( 'Cheatin uh?' );

if ( class_exists( 'FrmProEddController' ) ) :

Expand Down
Loading

0 comments on commit e914395

Please sign in to comment.