Changeset 1028783
- Timestamp:
- 11/19/2014 04:59:35 PM (11 years ago)
- Location:
- post-status-scheduler/trunk
- Files:
-
- 3 edited
-
classes/scheduler.php (modified) (1 diff)
-
post-status-scheduler.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
post-status-scheduler/trunk/classes/scheduler.php
r1013039 r1028783 24 24 use \post_status_scheduler\Email as Email; 25 25 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' ); 27 27 28 28 class Scheduler { -
post-status-scheduler/trunk/post-status-scheduler.php
r1025696 r1028783 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. 17 Version: 1.0.2 8 8 Author: Andreas Färnstrand <andreas@farnstranddev.se> 9 9 Author URI: http://www.farnstranddev.se … … 40 40 41 41 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' ); 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. 1' );44 if( !defined( 'POST_STATUS_SCHEDULER_VERSION' ) ) define( 'POST_STATUS_SCHEDULER_VERSION', '1.0.2' ); 45 45 46 46 // Create a new scheduler instance -
post-status-scheduler/trunk/readme.txt
r1025691 r1028783 4 4 Requires at least: 3.9 5 5 Tested up to: 4.0 6 Stable tag: 1.0. 16 Stable tag: 1.0.2 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.2 = 55 * Fixed to use the correct textdomain. Translations should now work correctly. 56 54 57 = 1.0.1 = 55 58 * Fixed bug where, in settings, you could only choose public post types to show scheduler on (Reported on Github). … … 75 78 == Upgrade Notice == 76 79 80 = 1.0.2 = 81 * Upgrade to this version to get translations to work 100%. 82 77 83 = 1.0.1 = 78 84 * Gives you more post types to choose from.
Note: See TracChangeset
for help on using the changeset viewer.