Editorial Calendar - Version 2.1.1

Version Description

Added a namespace to fix a small issue of potential javascript file conflict with wp_enqueue_script()

Download this release

Release Info

Developer stresslimit
Plugin Icon wp plugin Editorial Calendar
Version 2.1.1
Comparing to
See all releases

Code changes from version 2.1 to 2.1.1

Files changed (2) hide show
  1. edcal.php +2 -2
  2. readme.txt +5 -1
edcal.php CHANGED
@@ -18,7 +18,7 @@
18
  /*
19
  Plugin Name: WordPress Editorial Calendar
20
  Description: The Editorial Calendar makes it possible to see all your posts and drag and drop them to manage your blog.
21
- Version: 2.1
22
  Author: Colin Vernon, Justin Evans, Joachim Kudish, Mary Vogt, and Zack Grossbart
23
  Author URI: http://www.zackgrossbart.com
24
  Plugin URI: http://stresslimitdesign.com/editorial-calendar-plugin
@@ -506,13 +506,13 @@ class EdCal {
506
  * locale. We can do this based on the locale in the localized bundle to make sure the date locale matches
507
  * the locale for the other strings.
508
  */
509
- wp_enqueue_script( "date", path_join(WP_PLUGIN_URL, basename( dirname( __FILE__ ) )."/lib/languages/date-".__('en-US', 'editorial-calendar').".js"), array( 'jquery' ) );
510
  wp_enqueue_script( 'jquery' );
511
  wp_enqueue_script( 'jquery-ui-draggable' );
512
  wp_enqueue_script( 'jquery-ui-droppable' );
513
 
514
  //wp_enqueue_script( "date-extras", path_join(WP_PLUGIN_URL, basename( dirname( __FILE__ ) )."/lib/date.extras.js"), array( 'jquery' ) );
515
 
 
516
  wp_enqueue_script( "edcal-lib", path_join(WP_PLUGIN_URL, basename( dirname( __FILE__ ) )."/lib/edcallib.min.js"), array( 'jquery' ) );
517
 
518
  if (isset($_GET['qunit'])) {
18
  /*
19
  Plugin Name: WordPress Editorial Calendar
20
  Description: The Editorial Calendar makes it possible to see all your posts and drag and drop them to manage your blog.
21
+ Version: 2.1.1
22
  Author: Colin Vernon, Justin Evans, Joachim Kudish, Mary Vogt, and Zack Grossbart
23
  Author URI: http://www.zackgrossbart.com
24
  Plugin URI: http://stresslimitdesign.com/editorial-calendar-plugin
506
  * locale. We can do this based on the locale in the localized bundle to make sure the date locale matches
507
  * the locale for the other strings.
508
  */
 
509
  wp_enqueue_script( 'jquery' );
510
  wp_enqueue_script( 'jquery-ui-draggable' );
511
  wp_enqueue_script( 'jquery-ui-droppable' );
512
 
513
  //wp_enqueue_script( "date-extras", path_join(WP_PLUGIN_URL, basename( dirname( __FILE__ ) )."/lib/date.extras.js"), array( 'jquery' ) );
514
 
515
+ wp_enqueue_script( "edcal-date", path_join(WP_PLUGIN_URL, basename( dirname( __FILE__ ) )."/lib/languages/date-".__('en-US', 'editorial-calendar').".js"), array( 'jquery' ) );
516
  wp_enqueue_script( "edcal-lib", path_join(WP_PLUGIN_URL, basename( dirname( __FILE__ ) )."/lib/edcallib.min.js"), array( 'jquery' ) );
517
 
518
  if (isset($_GET['qunit'])) {
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: cvernon, justinstresslimit, jkudish, MaryVogt, zgrossbart
3
  Tags: posts, post, calendar, AJAX, admin, administration
4
  Requires at least: 2.8.5
5
  Tested up to: 3.4
6
- Stable tag: 2.1
7
 
8
  The Editorial Calendar makes it possible to see all your posts and drag and drop them to manage your blog.
9
 
@@ -173,6 +173,10 @@ Moving published posts can cause problems with some RSS feeds and is generally n
173
 
174
  == Changelog ==
175
 
 
 
 
 
176
  = 2.1 =
177
 
178
  The calendar now moves posts from the drafts drawer to the main calendar properly on blogs with the alternate functionality of the date function.
3
  Tags: posts, post, calendar, AJAX, admin, administration
4
  Requires at least: 2.8.5
5
  Tested up to: 3.4
6
+ Stable tag: 2.1.1
7
 
8
  The Editorial Calendar makes it possible to see all your posts and drag and drop them to manage your blog.
9
 
173
 
174
  == Changelog ==
175
 
176
+ = 2.1.1 =
177
+
178
+ Added a namespace to fix a small issue of potential javascript file conflict with wp_enqueue_script()
179
+
180
  = 2.1 =
181
 
182
  The calendar now moves posts from the drafts drawer to the main calendar properly on blogs with the alternate functionality of the date function.