Plugin Directory

Changeset 2175830


Ignore:
Timestamp:
10/18/2019 07:23:58 PM (6 years ago)
Author:
iconpress
Message:

Updated version

Location:
iconpress-lite/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • iconpress-lite/trunk/iconpress.php

    r2054618 r2175830  
    77 * DomainPath: /languages
    88 * Author: IconPress team
    9  * Version: 1.4.5
     9 * Version: 1.4.6
    1010 * Author URI: https://iconpress.io/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash
    1111 */
     
    2626}
    2727
    28 define( 'ICONPRESSLITE_VERSION', '1.4.5' );
     28define( 'ICONPRESSLITE_VERSION', '1.4.6' );
    2929define( 'ICONPRESSLITE_DIR', plugin_dir_path( __FILE__ ) );
    3030define( 'ICONPRESSLITE_URI', plugin_dir_url( __FILE__ ) );
  • iconpress-lite/trunk/lib/helpers/FileSystem.php

    r2054618 r2175830  
    187187    public static function __cleanupSvgFile( $svg = '', $internal_id = '', $gen_sprite = false )
    188188    {
     189        if( is_null($svg) || ! is_object($svg) ){
     190            return false;
     191        }
    189192
    190193        if ( $svg->attributes()->id ) {
  • iconpress-lite/trunk/lib/integrations/gutenberg/index.php

    r2054618 r2175830  
    2525        'iconpress-gtb-block-style-css', // Handle.
    2626        ICONPRESSLITE_URI . 'lib/integrations/gutenberg/dist/blocks.style.build.css', // Block style CSS.
    27         array( 'wp-editor' ) // Dependency to include the CSS after it.
     27        array() // Dependency to include the CSS after it.
    2828    );
    2929} );
  • iconpress-lite/trunk/lib/integrations/wpb/element_iconpress_box/iconpress_box.php

    r1947810 r2175830  
    1717        function __construct()
    1818        {
    19             add_action( 'init', array( $this, 'map' ) );
     19            add_action( 'vc_after_init', array( $this, 'map' ) );
    2020            add_shortcode( 'vc_iconpress_box', array( $this, 'html_output' ) );
    2121        }
  • iconpress-lite/trunk/lib/integrations/wpb/element_iconpress_icon/iconpress_icon.php

    r1947810 r2175830  
    1717        function __construct()
    1818        {
    19             add_action( 'init', array( $this, 'map' ) );
     19            add_action( 'vc_after_init', array( $this, 'map' ) );
    2020            add_shortcode( 'vc_iconpress_icon', array( $this, 'html_output' ) );
    2121        }
  • iconpress-lite/trunk/readme.txt

    r2054618 r2175830  
    33Requires at least: 4.7
    44Tested up to: 5.0
    5 Stable tag: 1.4.5
     5Stable tag: 1.4.6
    66Requires PHP: 5.4
    77License: GPLv3
     
    149149* Fixed missing stylesheet notice;
    150150
     151= 1.4.6 - 18 October 2019 =
     152* Fixed WPBakery Page builder compatibility;
     153* Improved: unloaded Gutenberg dependecy;
     154
    151155= 1.4.4 - 9 january 2019 =
    152156* Added Multisite support;
Note: See TracChangeset for help on using the changeset viewer.