Plugin Directory

Changeset 1028783


Ignore:
Timestamp:
11/19/2014 04:59:35 PM (11 years ago)
Author:
farne
Message:

Fixed bug where translations did not work correctly. New version 1.0.2

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

Legend:

Unmodified
Added
Removed
  • post-status-scheduler/trunk/classes/scheduler.php

    r1013039 r1028783  
    2424  use \post_status_scheduler\Email as Email;
    2525   
    26   if( !defined( 'POST_STATUS_SCHEDULER_TEXTDOMAIN' ) ) define( 'POST_STATUS_SCHEDULER_TEXTDOMAIN', 'post_status_scheduler' );
     26  if( !defined( 'POST_STATUS_SCHEDULER_TEXTDOMAIN' ) ) define( 'POST_STATUS_SCHEDULER_TEXTDOMAIN', 'post-status-scheduler' );
    2727
    2828  class Scheduler {
  • post-status-scheduler/trunk/post-status-scheduler.php

    r1025696 r1028783  
    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.1
     7  Version: 1.0.2
    88  Author: Andreas Färnstrand <andreas@farnstranddev.se>
    99  Author URI: http://www.farnstranddev.se
     
    4040
    4141        if( !defined( 'POST_STATUS_SCHEDULER_PLUGIN_PATH' ) )        define( 'POST_STATUS_SCHEDULER_PLUGIN_PATH', plugin_dir_url( __FILE__ ) );
    42         if( !defined( 'POST_STATUS_SCHEDULER_TEXTDOMAIN' ) )         define( 'POST_STATUS_SCHEDULER_TEXTDOMAIN', 'post_status_scheduler' );
     42        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.1' );
     44    if( !defined( 'POST_STATUS_SCHEDULER_VERSION' ) )            define( 'POST_STATUS_SCHEDULER_VERSION', '1.0.2' );
    4545
    4646    // Create a new scheduler instance
  • post-status-scheduler/trunk/readme.txt

    r1025691 r1028783  
    44Requires at least: 3.9
    55Tested up to: 4.0
    6 Stable tag: 1.0.1
     6Stable tag: 1.0.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5252== Changelog ==
    5353
     54= 1.0.2 =
     55* Fixed to use the correct textdomain. Translations should now work correctly.
     56
    5457= 1.0.1 =
    5558* Fixed bug where, in settings, you could only choose public post types to show scheduler on (Reported on Github).
     
    7578== Upgrade Notice ==
    7679
     80= 1.0.2 =
     81* Upgrade to this version to get translations to work 100%.
     82
    7783= 1.0.1 =
    7884* Gives you more post types to choose from.
Note: See TracChangeset for help on using the changeset viewer.