WPide - Version 2.0.10

Version Description

  • Fixed a problem with file loading (ajax) indicator not showing.
Download this release

Release Info

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

Code changes from version 2.0.9 to 2.0.10

Files changed (3) hide show
  1. WPide.php +3 -1
  2. jqueryFileTree.js +1 -0
  3. readme.txt +4 -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.9
7
  Author: Simon Dunton
8
  Author URI: http://www.wpsites.co.uk
9
  */
@@ -553,6 +553,8 @@ class wpide
553
  image_data = file+'::'+response;
554
 
555
  });
 
 
556
 
557
 
558
  window.open('http://www.sumopaint.com/app/?key=ebcdaezjeojbfgih&url=<?php echo $app_url. "/wp-content";?>' + file + '&opt=' + image_data + '&title=Edit image&service=Save back to WPide&target=<?php echo urlencode( $app_url . "/wp-admin/admin.php?wpide_save_image=yes" ) ;?>');
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.10
7
  Author: Simon Dunton
8
  Author URI: http://www.wpsites.co.uk
9
  */
553
  image_data = file+'::'+response;
554
 
555
  });
556
+
557
+ jQuery.ajaxSetup({async:true});//enable async again
558
 
559
 
560
  window.open('http://www.sumopaint.com/app/?key=ebcdaezjeojbfgih&url=<?php echo $app_url. "/wp-content";?>' + file + '&opt=' + image_data + '&title=Edit image&service=Save back to WPide&target=<?php echo urlencode( $app_url . "/wp-admin/admin.php?wpide_save_image=yes" ) ;?>');
jqueryFileTree.js CHANGED
@@ -89,6 +89,7 @@ if(jQuery) (function($){
89
  // Get the initial file list
90
  jQuery.ajaxSetup({async:false}); //we need to wait until we get the response
91
  showTree( $(this), escape(o.root) );
 
92
 
93
  //if nothing returned then let user know something wrong with permissions
94
  if ( $(this).children('.jqueryFileTree').length==0 ){
89
  // Get the initial file list
90
  jQuery.ajaxSetup({async:false}); //we need to wait until we get the response
91
  showTree( $(this), escape(o.root) );
92
+ jQuery.ajaxSetup({async:true}); //enable async again
93
 
94
  //if nothing returned then let user know something wrong with permissions
95
  if ( $(this).children('.jqueryFileTree').length==0 ){
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.9
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,9 @@ Either the image contains no image data (its a new empty file) or the image is n
76
 
77
  == Changelog ==
78
 
 
 
 
79
  = 2.0.9 =
80
  * Upload snapshot of current ajaxorg editor (master/build/src) at 00:30 on the 22 May 2012. Which fixes some issues with selecting big blocks of text, code folding seems better with gutter interface hidden when not in use
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.10
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.10 =
80
+ * Fixed a problem with file loading (ajax) indicator not showing.
81
+
82
  = 2.0.9 =
83
  * Upload snapshot of current ajaxorg editor (master/build/src) at 00:30 on the 22 May 2012. Which fixes some issues with selecting big blocks of text, code folding seems better with gutter interface hidden when not in use
84