WP Editor Widget - Version 0.4.1

Version Description

  • Lowered the z-index of the WP Editor overlay modal because image buttons (in the editor) wasn't showing because they had lower z-index (thanks nbspjr on WordPress.org http://wordpress.org/support/topic/edit-mediagallery-buttons-are-not-shown-1)
Download this release

Release Info

Developer feedmeastraycat
Plugin Icon wp plugin WP Editor Widget
Version 0.4.1
Comparing to
See all releases

Code changes from version 0.4.0 to 0.4.1

Files changed (4) hide show
  1. assets/css/admin.css +2 -2
  2. license.txt +1 -1
  3. readme.txt +11 -6
  4. wp-editor-widget.php +2 -2
assets/css/admin.css CHANGED
@@ -4,7 +4,7 @@
4
  left: 30px;
5
  right: 30px;
6
  bottom: 30px;
7
- z-index: 160000;
8
  background: #fff;
9
  }
10
  #wp-editor-widget-backdrop {
@@ -16,7 +16,7 @@
16
  min-height: 360px;
17
  background: #000;
18
  opacity: .7;
19
- z-index: 159900;
20
  }
21
  #wp-editor-widget-container .close {
22
  position: absolute;
4
  left: 30px;
5
  right: 30px;
6
  bottom: 30px;
7
+ z-index: 151000;
8
  background: #fff;
9
  }
10
  #wp-editor-widget-backdrop {
16
  min-height: 360px;
17
  background: #000;
18
  opacity: .7;
19
+ z-index: 150000;
20
  }
21
  #wp-editor-widget-container .close {
22
  position: absolute;
license.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2013 David Mårtensson <david.martensson@gmail.com>
2
 
3
  Permission is hereby granted, free of charge, to any person obtaining a copy
4
  of this software and associated documentation files (the "Software"), to deal
1
+ Copyright (c) 2013 David M�rtensson <david.martensson@gmail.com>
2
 
3
  Permission is hereby granted, free of charge, to any person obtaining a copy
4
  of this software and associated documentation files (the "Software"), to deal
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: feedmeastraycat
3
  Tags: widget, wysiwyg, editor, rich text
4
  Requires at least: 3.5.1
5
- Tested up to: 3.8
6
- Stable tag: 0.4.0
7
  License: MIT
8
 
9
  WP Editor Widget adds a rich text widget where the content is edited using the standard WordPress visual editor.
@@ -13,14 +13,16 @@ License: MIT
13
  This plugin adds a rich text widget where the content is edited using the standard WordPress visual editor which most users already are familiar with.
14
  It uses the WP core function wp_editor() without adding a custom post type post for each widget making the widget quicker and simpler to edit.
15
 
 
 
16
  == Screenshots ==
17
 
18
- 1. The plugin adds a widget called "WP Editor Widget".
19
  2. In the widget you can add a title, edit the content through a link and choose to output the title or not.
20
- 3. When you click the "Edit content" link the WP Editor appears above the content, much like the Add media button. Click "Update and close" and then "Save" to save your content in the widget.
21
- 4. The widget as displayed in Twenty Twelve.
22
  5. You can choose to display the title.
23
- 6. The widget as displayed in Twenty Twelve with title output turned on.
24
 
25
  == Installation ==
26
 
@@ -30,6 +32,9 @@ It uses the WP core function wp_editor() without adding a custom post type post
30
 
31
  == Changelog ==
32
 
 
 
 
33
  = 0.4.0 =
34
  * Added standard WP functions wptexturize, convert_smilies, convert_chars, wpautop, shortcode_unautop, prepend_attachment, do_shortcode to the wp_editor_widget_content filter (thanks danieliser on WordPress.org http://profiles.wordpress.org/danieliser/)
35
 
2
  Contributors: feedmeastraycat
3
  Tags: widget, wysiwyg, editor, rich text
4
  Requires at least: 3.5.1
5
+ Tested up to: 3.8.1
6
+ Stable tag: 0.4.1
7
  License: MIT
8
 
9
  WP Editor Widget adds a rich text widget where the content is edited using the standard WordPress visual editor.
13
  This plugin adds a rich text widget where the content is edited using the standard WordPress visual editor which most users already are familiar with.
14
  It uses the WP core function wp_editor() without adding a custom post type post for each widget making the widget quicker and simpler to edit.
15
 
16
+ Feel free to help with developement or issue reporting on [Github](https://github.com/feedmeastraycat/wp-editor-widget)!
17
+
18
  == Screenshots ==
19
 
20
+ 1. The plugin adds a widget called "Rich text".
21
  2. In the widget you can add a title, edit the content through a link and choose to output the title or not.
22
+ 3. When you click the "Edit content" link the WP Editor appears above the content, much like the Add media button. Click "Save and close" to save your content in the widget.
23
+ 4. The widget as displayed in Twenty Fourteen.
24
  5. You can choose to display the title.
25
+ 6. The widget as displayed in Twenty Fourteen with title output turned on.
26
 
27
  == Installation ==
28
 
32
 
33
  == Changelog ==
34
 
35
+ = 0.4.1 =
36
+ * Lowered the z-index of the WP Editor overlay modal because image buttons (in the editor) wasn't showing because they had lower z-index (thanks nbspjr on WordPress.org http://wordpress.org/support/topic/edit-mediagallery-buttons-are-not-shown-1)
37
+
38
  = 0.4.0 =
39
  * Added standard WP functions wptexturize, convert_smilies, convert_chars, wpautop, shortcode_unautop, prepend_attachment, do_shortcode to the wp_editor_widget_content filter (thanks danieliser on WordPress.org http://profiles.wordpress.org/danieliser/)
40
 
wp-editor-widget.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WP Editor Widget
4
  Plugin URI: http://oddalice.com/
5
  Description: WP Editor Widget adds a WYSIWYG widget using the wp_editor().
6
  Author: David M&aring;rtensson, Odd Alice
7
- Version: 0.4.0
8
  Author URI: http://www.feedmeastraycat.net/
9
  */
10
 
@@ -36,7 +36,7 @@ class WPEditorWidget
36
  /**
37
  * @var string
38
  */
39
- const VERSION = "0.4.0";
40
 
41
  /**
42
  * @var string
4
  Plugin URI: http://oddalice.com/
5
  Description: WP Editor Widget adds a WYSIWYG widget using the wp_editor().
6
  Author: David M&aring;rtensson, Odd Alice
7
+ Version: 0.4.1
8
  Author URI: http://www.feedmeastraycat.net/
9
  */
10
 
36
  /**
37
  * @var string
38
  */
39
+ const VERSION = "0.4.1";
40
 
41
  /**
42
  * @var string