diff --git a/includes/sixtenpress-shortcodes/README.md b/includes/sixtenpress-shortcodes/README.md index e5b0cbb..ca12e54 100644 --- a/includes/sixtenpress-shortcodes/README.md +++ b/includes/sixtenpress-shortcodes/README.md @@ -102,6 +102,10 @@ If an image ID is required, Six/Ten Press image fields in a group will work, as ### Changelog +#### 0.3.3 +* fixed: check for script/style enqueue +* fixed: localized scripts/inline styles output only once + #### 0.3.2 * reduced unnecessary CSS * tweaked filter for hooks on which to load the modal buttons diff --git a/includes/sixtenpress-shortcodes/includes/class-sixtenpress-shortcodes.php b/includes/sixtenpress-shortcodes/includes/class-sixtenpress-shortcodes.php index 2da926e..2a20c34 100644 --- a/includes/sixtenpress-shortcodes/includes/class-sixtenpress-shortcodes.php +++ b/includes/sixtenpress-shortcodes/includes/class-sixtenpress-shortcodes.php @@ -1,4 +1,8 @@ * @copyright 2016 Robin Cornett * @license GPL-2.0+ - * @version 0.3.2 + * @version 0.3.3 * @link https://gitlab.com/robincornett/sixtenpress-shortcodes * @since 0.1.0 */ @@ -37,7 +37,7 @@ * Loader versioning: http://jtsternberg.github.io/wp-lib-loader/ */ -if ( ! class_exists( 'SixTenPressShortcodes_032', false ) ) { +if ( ! class_exists( 'SixTenPressShortcodes_033', false ) ) { /** * Versioned loader class-name @@ -48,18 +48,18 @@ if ( ! class_exists( 'SixTenPressShortcodes_032', false ) ) { * @package SixTenPressShortcodes * @author Robin Cornett * @license GPL-2.0+ - * @version 0.3.2 + * @version 0.3.3 * @link https://gitlab.com/robincornett/sixtenpress-shortcodes * @since 0.1.0 */ - class SixTenPressShortcodes_032 { + class SixTenPressShortcodes_033 { /** * SixTenPressShortcodes version number * @var string * @since 0.1.0 */ - const VERSION = '0.3.2'; + const VERSION = '0.3.3'; /** * Current version hook priority. @@ -68,7 +68,7 @@ if ( ! class_exists( 'SixTenPressShortcodes_032', false ) ) { * @var int * @since 0.1.0 */ - const PRIORITY = 9992; + const PRIORITY = 9991; /** * Starts the version checking process. @@ -152,5 +152,5 @@ if ( ! class_exists( 'SixTenPressShortcodes_032', false ) ) { } // Kick it off. - new SixTenPressShortcodes_032(); + new SixTenPressShortcodes_033(); }