Black Studio TinyMCE Widget - Version 1.4.8

Version Description

  • Fixed bug on image captions on WordPress 4.0 (part 2)
Download this release

Release Info

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

Code changes from version 1.4.7 to 1.4.8

Files changed (2) hide show
  1. black-studio-tinymce-widget.php +3 -3
  2. readme.txt +4 -1
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.7
7
  Author: Black Studio
8
  Author URI: http://www.blackstudio.it
9
  License: GPLv3
@@ -194,8 +194,8 @@ function black_studio_tinymce_init_editor( $initArray ) {
194
  $initArray['remove_redundant_brs'] = false;
195
  // Force p block
196
  $initArray['forced_root_block'] = 'p';
197
- // Add proper newlines to source (i.e. around divs)
198
- $initArray['indent '] = true;
199
  // Return modified settings
200
  return $initArray;
201
  }
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.8
7
  Author: Black Studio
8
  Author URI: http://www.blackstudio.it
9
  License: GPLv3
194
  $initArray['remove_redundant_brs'] = false;
195
  // Force p block
196
  $initArray['forced_root_block'] = 'p';
197
+ // Apply source formatting
198
+ $initArray['apply_source_formatting'] = true;
199
  // Return modified settings
200
  return $initArray;
201
  }
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.blackstudio.it/en/wordpress-plugins/black-studio-tinymce
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: 4.0
7
- Stable tag: 1.4.7
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl.html
10
 
@@ -111,6 +111,9 @@ add_filter( 'black_studio_tinymce_after_text', '__return_empty_string' );
111
 
112
  == Changelog ==
113
 
 
 
 
114
  = 1.4.7 =
115
  * Fixed bug on image captions on WordPress 4.0
116
 
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: 4.0
7
+ Stable tag: 1.4.8
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl.html
10
 
111
 
112
  == Changelog ==
113
 
114
+ = 1.4.8 =
115
+ * Fixed bug on image captions on WordPress 4.0 (part 2)
116
+
117
  = 1.4.7 =
118
  * Fixed bug on image captions on WordPress 4.0
119