Changeset 1044467
- Timestamp:
- 12/14/2014 05:04:59 PM (11 years ago)
- Location:
- post-status-scheduler/trunk
- Files:
-
- 3 edited
-
js/scheduler.js (modified) (1 diff)
-
post-status-scheduler.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
post-status-scheduler/trunk/js/scheduler.js
r1013039 r1044467 3 3 $('#schedulerdate').datepicker({ 4 4 5 dateFormat: 'yy-mm-dd' 5 dateFormat: 'yy-mm-dd', 6 changeMonth: true, 7 changeYear: true, 6 8 7 9 }); -
post-status-scheduler/trunk/post-status-scheduler.php
r1038771 r1044467 5 5 Plugin Name: Post Status Scheduler 6 6 Description: Change status, category or postmeta of any post type at a scheduled timestamp. 7 Version: 1.0. 47 Version: 1.0.5 8 8 Author: Andreas Färnstrand <andreas@farnstranddev.se> 9 9 Author URI: http://www.farnstranddev.se … … 42 42 if( !defined( 'POST_STATUS_SCHEDULER_TEXTDOMAIN' ) ) define( 'POST_STATUS_SCHEDULER_TEXTDOMAIN', 'post-status-scheduler' ); 43 43 if( !defined( 'POST_STATUS_SCHEDULER_TEXTDOMAIN_PATH' ) ) define( 'POST_STATUS_SCHEDULER_TEXTDOMAIN_PATH', dirname( plugin_basename( __FILE__) ) .'/languages' ); 44 if( !defined( 'POST_STATUS_SCHEDULER_VERSION' ) ) define( 'POST_STATUS_SCHEDULER_VERSION', '1.0. 4' );44 if( !defined( 'POST_STATUS_SCHEDULER_VERSION' ) ) define( 'POST_STATUS_SCHEDULER_VERSION', '1.0.5' ); 45 45 46 46 // Create a new scheduler instance -
post-status-scheduler/trunk/readme.txt
r1038771 r1044467 4 4 Requires at least: 3.9 5 5 Tested up to: 4.0 6 Stable tag: 1.0. 46 Stable tag: 1.0.5 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 52 52 == Changelog == 53 53 54 = 1.0.5 = 55 * Bugfix to make the make it possible to chose month even though there are multiple datepickers on the same page. 56 54 57 = 1.0.4 = 55 58 * Both tags and categories are now changed correctly. Previously tags were changed to their id and not the name. … … 82 85 == Upgrade Notice == 83 86 87 = 1.0.5 = 88 * If you have problems with picking a month in the datepicker, 1.0.5 will fix this issue. It was a problem with multiple datepickers included from other plugins on the same page. Mainly ACF it seems. The theme of the datepicker is still overridden. The functionality however is ok. 89 84 90 = 1.0.4 = 85 91 * Upgrade to this version to keep tags from being set to their id instead of the name.
Note: See TracChangeset
for help on using the changeset viewer.