Black Studio TinyMCE Widget - Version 1.4.2

Version Description

  • Added support for wp_enqueue_editor hook
  • Added compatibility with Advanced Image Styles plugin
  • Added danish translation (Contributor: Mikkel Rommelhoff)
Download this release

Release Info

Developer marcochiesi
Plugin Icon 128x128 Black Studio TinyMCE Widget
Version 1.4.2
Comparing to
See all releases

Code changes from version 1.4.1 to 1.4.2

black-studio-tinymce-widget.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Black Studio TinyMCE Widget
4
  Plugin URI: http://wordpress.org/extend/plugins/black-studio-tinymce-widget/
5
  Description: Adds a WYSIWYG widget based on the standard TinyMCE WordPress visual editor.
6
- Version: 1.4.1
7
  Author: Black Studio
8
  Author URI: http://www.blackstudio.it
9
  License: GPL2
@@ -211,6 +211,7 @@ function black_studio_tinymce_scripts() {
211
  wp_enqueue_script( 'wpdialogs-popup' );
212
  wp_enqueue_script( 'black-studio-tinymce-widget', plugins_url('black-studio-tinymce-widget' . $suffix . '.js', __FILE__ ), array( 'jquery', 'editor' ), $version, true );
213
  wp_localize_script( 'black-studio-tinymce-widget', 'black_studio_tinymce_local', $local_data );
 
214
  }
215
  else {
216
  wp_enqueue_script( 'black-studio-tinymce-widget-legacy', plugins_url('black-studio-tinymce-widget-legacy' . $suffix . '.js', __FILE__ ), array( 'jquery', 'editor' ), $version, true );
3
  Plugin Name: Black Studio TinyMCE Widget
4
  Plugin URI: http://wordpress.org/extend/plugins/black-studio-tinymce-widget/
5
  Description: Adds a WYSIWYG widget based on the standard TinyMCE WordPress visual editor.
6
+ Version: 1.4.2
7
  Author: Black Studio
8
  Author URI: http://www.blackstudio.it
9
  License: GPL2
211
  wp_enqueue_script( 'wpdialogs-popup' );
212
  wp_enqueue_script( 'black-studio-tinymce-widget', plugins_url('black-studio-tinymce-widget' . $suffix . '.js', __FILE__ ), array( 'jquery', 'editor' ), $version, true );
213
  wp_localize_script( 'black-studio-tinymce-widget', 'black_studio_tinymce_local', $local_data );
214
+ do_action( 'wp_enqueue_editor', array( 'tinymce' => true ) ); // Advanced Image Styles compatibility
215
  }
216
  else {
217
  wp_enqueue_script( 'black-studio-tinymce-widget-legacy', plugins_url('black-studio-tinymce-widget-legacy' . $suffix . '.js', __FILE__ ), array( 'jquery', 'editor' ), $version, true );
languages/black-studio-tinymce-widget-da_DK.mo ADDED
Binary file
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: marcochiesi, thedarkmist
3
  Donate link: http://www.blackstudio.it/en/wordpress-plugins/black-studio-tinymce-widget/
4
  Tags: wysiwyg, widget, tinymce, editor, image, media, rich text, rich text editor, visual editor, wysiwyg editor, tinymce editor, widget editor, html editor, wysiwyg widget, html widget, editor widget, text widget, rich text widget, enhanced text widget, tinymce widget, visual widget, image widget, media widget
5
  Requires at least: 3.0
6
- Tested up to: 3.9
7
- Stable tag: 1.4.1
8
 
9
  Adds a WYSIWYG widget based on the standard TinyMCE WordPress visual editor.
10
 
@@ -73,6 +73,11 @@ When dealing with a WordPress site URL change it is necessary to face the "seria
73
 
74
  == Changelog ==
75
 
 
 
 
 
 
76
  = 1.4.1 =
77
  * Enhanced HTML source code formatting
78
 
3
  Donate link: http://www.blackstudio.it/en/wordpress-plugins/black-studio-tinymce-widget/
4
  Tags: wysiwyg, widget, tinymce, editor, image, media, rich text, rich text editor, visual editor, wysiwyg editor, tinymce editor, widget editor, html editor, wysiwyg widget, html widget, editor widget, text widget, rich text widget, enhanced text widget, tinymce widget, visual widget, image widget, media widget
5
  Requires at least: 3.0
6
+ Tested up to: 3.9.1
7
+ Stable tag: 1.4.2
8
 
9
  Adds a WYSIWYG widget based on the standard TinyMCE WordPress visual editor.
10
 
73
 
74
  == Changelog ==
75
 
76
+ = 1.4.2 =
77
+ * Added support for `wp_enqueue_editor` hook
78
+ * Added compatibility with Advanced Image Styles plugin
79
+ * Added danish translation (Contributor: Mikkel Rommelhoff)
80
+
81
  = 1.4.1 =
82
  * Enhanced HTML source code formatting
83