Version Description
Download this release
Release Info
Developer | pross |
Plugin | Customizer Export/Import |
Version | 0.9.1 |
Comparing to | |
See all releases |
Code changes from version 0.9 to 0.9.1
- classes/class-cei-core.php +2 -2
- customizer-export-import.php +2 -2
- readme.txt +3 -0
classes/class-cei-core.php
CHANGED
@@ -79,8 +79,8 @@ final class CEI_Core {
|
|
79 |
static public function controls_enqueue_scripts()
|
80 |
{
|
81 |
// Register
|
82 |
-
wp_register_style( 'cei-css', CEI_PLUGIN_URL . '
|
83 |
-
wp_register_script( 'cei-js', CEI_PLUGIN_URL . '
|
84 |
|
85 |
// Localize
|
86 |
wp_localize_script( 'cei-js', 'CEIl10n', array(
|
79 |
static public function controls_enqueue_scripts()
|
80 |
{
|
81 |
// Register
|
82 |
+
wp_register_style( 'cei-css', CEI_PLUGIN_URL . 'css/customizer.css', array(), CEI_VERSION );
|
83 |
+
wp_register_script( 'cei-js', CEI_PLUGIN_URL . 'js/customizer.js', array( 'jquery' ), CEI_VERSION, true );
|
84 |
|
85 |
// Localize
|
86 |
wp_localize_script( 'cei-js', 'CEIl10n', array(
|
customizer-export-import.php
CHANGED
@@ -3,14 +3,14 @@
|
|
3 |
* Plugin Name: Customizer Export/Import
|
4 |
* Plugin URI: http://www.wpbeaverbuilder.com/wordpress-customizer-export-import-plugin/?utm_source=external&utm_medium=customizer-export&utm_campaign=plugins-page
|
5 |
* Description: Adds settings export and import functionality to the WordPress customizer.
|
6 |
-
* Version: 0.9
|
7 |
* Author: The Beaver Builder Team
|
8 |
* Author URI: http://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=customizer-export&utm_campaign=plugins-page
|
9 |
* License: GNU General Public License v2.0
|
10 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
* Text Domain: customizer-export-import
|
12 |
*/
|
13 |
-
define( 'CEI_VERSION', '0.9' );
|
14 |
define( 'CEI_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
15 |
define( 'CEI_PLUGIN_URL', plugins_url( '/', __FILE__ ) );
|
16 |
|
3 |
* Plugin Name: Customizer Export/Import
|
4 |
* Plugin URI: http://www.wpbeaverbuilder.com/wordpress-customizer-export-import-plugin/?utm_source=external&utm_medium=customizer-export&utm_campaign=plugins-page
|
5 |
* Description: Adds settings export and import functionality to the WordPress customizer.
|
6 |
+
* Version: 0.9.1
|
7 |
* Author: The Beaver Builder Team
|
8 |
* Author URI: http://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=customizer-export&utm_campaign=plugins-page
|
9 |
* License: GNU General Public License v2.0
|
10 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
* Text Domain: customizer-export-import
|
12 |
*/
|
13 |
+
define( 'CEI_VERSION', '0.9.1' );
|
14 |
define( 'CEI_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
15 |
define( 'CEI_PLUGIN_URL', plugins_url( '/', __FILE__ ) );
|
16 |
|
readme.txt
CHANGED
@@ -96,3 +96,6 @@ Please visit our blog for more info on the [Customizer Export/Import plugin](htt
|
|
96 |
= Version 0.9 =
|
97 |
|
98 |
- Allow options with `widget` or `sidebar` in their key to be exported.
|
|
|
|
|
|
96 |
= Version 0.9 =
|
97 |
|
98 |
- Allow options with `widget` or `sidebar` in their key to be exported.
|
99 |
+
|
100 |
+
= Version 0.9.1 =
|
101 |
+
- Fixed issue with slashes in plugin asset urls and S3. Props Huskynarr.
|