Plugin Directory

Changeset 1044467


Ignore:
Timestamp:
12/14/2014 05:04:59 PM (11 years ago)
Author:
farne
Message:

New version 1.0.5. Bugfix for datepicker.

Location:
post-status-scheduler/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • post-status-scheduler/trunk/js/scheduler.js

    r1013039 r1044467  
    33  $('#schedulerdate').datepicker({
    44
    5     dateFormat: 'yy-mm-dd'
     5    dateFormat: 'yy-mm-dd',
     6    changeMonth: true,
     7    changeYear: true,
    68
    79  });
  • post-status-scheduler/trunk/post-status-scheduler.php

    r1038771 r1044467  
    55  Plugin Name: Post Status Scheduler
    66  Description: Change status, category or postmeta of any post type at a scheduled timestamp.
    7   Version: 1.0.4
     7  Version: 1.0.5
    88  Author: Andreas Färnstrand <andreas@farnstranddev.se>
    99  Author URI: http://www.farnstranddev.se
     
    4242        if( !defined( 'POST_STATUS_SCHEDULER_TEXTDOMAIN' ) )         define( 'POST_STATUS_SCHEDULER_TEXTDOMAIN', 'post-status-scheduler' );
    4343    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' );
    4545
    4646    // Create a new scheduler instance
  • post-status-scheduler/trunk/readme.txt

    r1038771 r1044467  
    44Requires at least: 3.9
    55Tested up to: 4.0
    6 Stable tag: 1.0.4
     6Stable tag: 1.0.5
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5252== Changelog ==
    5353
     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
    5457= 1.0.4 =
    5558* Both tags and categories are now changed correctly. Previously tags were changed to their id and not the name.
     
    8285== Upgrade Notice ==
    8386
     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
    8490= 1.0.4 =
    8591* 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.