Changeset 2175830
- Timestamp:
- 10/18/2019 07:23:58 PM (6 years ago)
- Location:
- iconpress-lite/trunk
- Files:
-
- 6 edited
-
iconpress.php (modified) (2 diffs)
-
lib/helpers/FileSystem.php (modified) (1 diff)
-
lib/integrations/gutenberg/index.php (modified) (1 diff)
-
lib/integrations/wpb/element_iconpress_box/iconpress_box.php (modified) (1 diff)
-
lib/integrations/wpb/element_iconpress_icon/iconpress_icon.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
iconpress-lite/trunk/iconpress.php
r2054618 r2175830 7 7 * DomainPath: /languages 8 8 * Author: IconPress team 9 * Version: 1.4. 59 * Version: 1.4.6 10 10 * Author URI: https://iconpress.io/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash 11 11 */ … … 26 26 } 27 27 28 define( 'ICONPRESSLITE_VERSION', '1.4. 5' );28 define( 'ICONPRESSLITE_VERSION', '1.4.6' ); 29 29 define( 'ICONPRESSLITE_DIR', plugin_dir_path( __FILE__ ) ); 30 30 define( 'ICONPRESSLITE_URI', plugin_dir_url( __FILE__ ) ); -
iconpress-lite/trunk/lib/helpers/FileSystem.php
r2054618 r2175830 187 187 public static function __cleanupSvgFile( $svg = '', $internal_id = '', $gen_sprite = false ) 188 188 { 189 if( is_null($svg) || ! is_object($svg) ){ 190 return false; 191 } 189 192 190 193 if ( $svg->attributes()->id ) { -
iconpress-lite/trunk/lib/integrations/gutenberg/index.php
r2054618 r2175830 25 25 'iconpress-gtb-block-style-css', // Handle. 26 26 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. 28 28 ); 29 29 } ); -
iconpress-lite/trunk/lib/integrations/wpb/element_iconpress_box/iconpress_box.php
r1947810 r2175830 17 17 function __construct() 18 18 { 19 add_action( ' init', array( $this, 'map' ) );19 add_action( 'vc_after_init', array( $this, 'map' ) ); 20 20 add_shortcode( 'vc_iconpress_box', array( $this, 'html_output' ) ); 21 21 } -
iconpress-lite/trunk/lib/integrations/wpb/element_iconpress_icon/iconpress_icon.php
r1947810 r2175830 17 17 function __construct() 18 18 { 19 add_action( ' init', array( $this, 'map' ) );19 add_action( 'vc_after_init', array( $this, 'map' ) ); 20 20 add_shortcode( 'vc_iconpress_icon', array( $this, 'html_output' ) ); 21 21 } -
iconpress-lite/trunk/readme.txt
r2054618 r2175830 3 3 Requires at least: 4.7 4 4 Tested up to: 5.0 5 Stable tag: 1.4. 55 Stable tag: 1.4.6 6 6 Requires PHP: 5.4 7 7 License: GPLv3 … … 149 149 * Fixed missing stylesheet notice; 150 150 151 = 1.4.6 - 18 October 2019 = 152 * Fixed WPBakery Page builder compatibility; 153 * Improved: unloaded Gutenberg dependecy; 154 151 155 = 1.4.4 - 9 january 2019 = 152 156 * Added Multisite support;
Note: See TracChangeset
for help on using the changeset viewer.