WPide - Version 2.0.12

Version Description

  • Added links to the WordPress codex and the PHP manual from within the function refrence for further info
Download this release

Release Info

Developer WPsites
Plugin Icon 128x128 WPide
Version 2.0.12
Comparing to
See all releases

Code changes from version 2.0.11 to 2.0.12

Files changed (3) hide show
  1. WPide.php +1 -1
  2. js/load-editor.js +4 -2
  3. readme.txt +7 -1
WPide.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WPide
4
  Plugin URI: https://github.com/WPsites/WPide
5
  Description: WordPress code editor with auto completion of both WordPress and PHP functions with reference, syntax highlighting, line numbers, tabbed editing, automatic backup.
6
- Version: 2.0.11
7
  Author: Simon Dunton
8
  Author URI: http://www.wpsites.co.uk
9
  */
3
  Plugin Name: WPide
4
  Plugin URI: https://github.com/WPsites/WPide
5
  Description: WordPress code editor with auto completion of both WordPress and PHP functions with reference, syntax highlighting, line numbers, tabbed editing, automatic backup.
6
+ Version: 2.0.12
7
  Author: Simon Dunton
8
  Author URI: http://www.wpsites.co.uk
9
  */
js/load-editor.js CHANGED
@@ -353,7 +353,8 @@ function wpide_function_help() {
353
  "<span class='wpide_func_desc'>" + autocomplete_wordpress[key].desc + "</span><br /><br /><em class='wpide_func_params'>" +
354
  param_text + "</em>"+
355
  "<strong class='wpide_func_highlight'>)</strong> " +
356
- returns_text
 
357
  );
358
  }
359
 
@@ -388,7 +389,8 @@ function wpide_function_help() {
388
  autocomplete_php[key].desc + "<br /><br /><em class='wpide_func_params'>" +
389
  param_text + "</em>" +
390
  "<strong class='wpide_func_highlight'>)</strong>" +
391
- returns_text
 
392
  );
393
 
394
  }
353
  "<span class='wpide_func_desc'>" + autocomplete_wordpress[key].desc + "</span><br /><br /><em class='wpide_func_params'>" +
354
  param_text + "</em>"+
355
  "<strong class='wpide_func_highlight'>)</strong> " +
356
+ returns_text +
357
+ "<p><a href='http://codex.wordpress.org/Function_Reference/" + key + "' target='_blank'>See " + key + "() in the WordPress codex</a></p>"
358
  );
359
  }
360
 
389
  autocomplete_php[key].desc + "<br /><br /><em class='wpide_func_params'>" +
390
  param_text + "</em>" +
391
  "<strong class='wpide_func_highlight'>)</strong>" +
392
+ returns_text +
393
+ "<p><a href='http://php.net/manual/en/function." + key.replace(/_/g, "-") + ".php' target='_blank'>See " + key + "() in the PHP manual</a></p>"
394
  );
395
 
396
  }
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: WPsites, Thomas Wieczorek
3
  Tags: code, theme editor, plugin editor, code editor
4
  Requires at least: 3.0
5
  Tested up to: 3.3.2
6
- Stable tag: 2.0.11
7
 
8
  WordPress code editor with auto completion of both WordPress and PHP functions with reference, syntax highlighting, line numbers, tabbed editing, automatic backup.
9
 
@@ -76,6 +76,12 @@ Either the image contains no image data (its a new empty file) or the image is n
76
 
77
  == Changelog ==
78
 
 
 
 
 
 
 
79
  = 2.0.10 =
80
  * Fixed a problem with file loading (ajax) indicator not showing.
81
 
3
  Tags: code, theme editor, plugin editor, code editor
4
  Requires at least: 3.0
5
  Tested up to: 3.3.2
6
+ Stable tag: 2.0.12
7
 
8
  WordPress code editor with auto completion of both WordPress and PHP functions with reference, syntax highlighting, line numbers, tabbed editing, automatic backup.
9
 
76
 
77
  == Changelog ==
78
 
79
+ = 2.0.12 =
80
+ * Added links to the WordPress codex and the PHP manual from within the function refrence for further info
81
+
82
+ = 2.0.11 =
83
+ * Newly created files use to contain a space, instead it now defaults to a blank file.
84
+
85
  = 2.0.10 =
86
  * Fixed a problem with file loading (ajax) indicator not showing.
87