Plugin Directory

Changeset 1290883


Ignore:
Timestamp:
11/20/2015 03:57:39 PM (10 years ago)
Author:
technical_mastermind
Message:

Updating to 1.4.2, fixes some i18n stuff

Location:
tm-replace-howdy
Files:
1 added
5 deleted
2 edited
3 copied

Legend:

Unmodified
Added
Removed
  • tm-replace-howdy/tags/1.4.2/index.php

    r1290865 r1290883  
    66Author: David Wood
    77Author URI: http://davidwood.ninja/
    8 Version: 1.4.0
     8Version: 1.4.2
    99License: GPL v3
    1010Text Domain: tm-replace-howdy
     
    1818define( 'TM_REPLACE_HOWDY_FILE', __FILE__ );
    1919
     20/**
     21 * Class TM_Replace_Howdy
     22 */
    2023class TM_Replace_Howdy {
    2124
    2225    protected
    23         $version = '1.4.0', // Plugin version number for internal use
     26        $version = '1.4.2', // Plugin version number for internal use
    2427        // Array containing standard greetings
    2528        $tm_howdy_fun = array(
     
    7780
    7881        // Register our actions
     82        add_action( 'plugins_loaded', array( $this, '_load_textdomain' ) );
    7983        add_action( 'init', array( $this, 'init' ) );
    8084        add_action( 'admin_menu', array( $this, 'add_admin_page' ) );
     
    8286        // Register deactivation hook
    8387        register_deactivation_hook( TM_REPLACE_HOWDY_FILE, array( $this, 'deactivation' ) );
    84 
    85         // Add i18n options
    86         load_plugin_textdomain( 'tm-replace-howdy', false, basename( dirname( __FILE__ ) ) . '/languages/' );
     88    }
     89
     90    /**
     91     * Loads our plugins translations, if any.
     92     * @since 1.4.2
     93     */
     94    public function _load_textdomain() {
     95        load_plugin_textdomain( 'tm-replace-howdy' );
    8796    }
    8897
  • tm-replace-howdy/tags/1.4.2/readme.txt

    r1290865 r1290883  
    66Donate link: http://technicalmastermind.com/donate/
    77Requires at least: 3.8
    8 Tested up to: 4.0
     8Tested up to: 4.4
    99Stable tag: 1.4.1
    1010
     
    5050
    5151= A word on support and additional features =
    52 While attempts will be made to keep this plugin up-to date and working, I cannot guarantee support for this plugin.
     52Due to time constraints, I am not able to keep up with this plugin as much as I would like. If you want to help keep it up do date, feel free to create a pull request on the [GitHub repo](https://github.com/dfwood90/tm-replace-howdy)!
    5353
    5454== Installation ==
     
    5959
    6060== Frequently Asked Questions ==
    61 None yet! Ask me in the [WordPress.org forums](http://wordpress.org/tags/tm-replace-howdy?forum_id=10#postform)!
     61Sorry, I don't have any questions that people have asked! All issues and bugfixes should be submitted to me on the [GitHub repo](https://github.com/dfwood90/tm-replace-howdy) for this plugin!
    6262
    6363== Screenshots ==
     
    6565
    6666== Changelog ==
     67= 1.4.2 =
     68* Fixed an i18n issue, now using WP language packs!
    6769= 1.4.1 =
    6870* Fixed a settings bug
     
    102104
    103105== Upgrade Notice ==
     106= 1.4.2 =
     107Fixed an i18n issue, now using WP language packs!
    104108= 1.4.1 =
    105109Fixed a settings bug
  • tm-replace-howdy/trunk/index.php

    r1002155 r1290883  
    66Author: David Wood
    77Author URI: http://davidwood.ninja/
    8 Version: 1.4.0
     8Version: 1.4.2
    99License: GPL v3
    1010Text Domain: tm-replace-howdy
     
    1818define( 'TM_REPLACE_HOWDY_FILE', __FILE__ );
    1919
     20/**
     21 * Class TM_Replace_Howdy
     22 */
    2023class TM_Replace_Howdy {
    2124
    2225    protected
    23         $version = '1.4.0', // Plugin version number for internal use
     26        $version = '1.4.2', // Plugin version number for internal use
    2427        // Array containing standard greetings
    2528        $tm_howdy_fun = array(
     
    7780
    7881        // Register our actions
     82        add_action( 'plugins_loaded', array( $this, '_load_textdomain' ) );
    7983        add_action( 'init', array( $this, 'init' ) );
    8084        add_action( 'admin_menu', array( $this, 'add_admin_page' ) );
     
    8286        // Register deactivation hook
    8387        register_deactivation_hook( TM_REPLACE_HOWDY_FILE, array( $this, 'deactivation' ) );
    84 
    85         // Add i18n options
    86         load_plugin_textdomain( 'tm-replace-howdy', false, basename( dirname( __FILE__ ) ) . '/languages/' );
     88    }
     89
     90    /**
     91     * Loads our plugins translations, if any.
     92     * @since 1.4.2
     93     */
     94    public function _load_textdomain() {
     95        load_plugin_textdomain( 'tm-replace-howdy' );
    8796    }
    8897
  • tm-replace-howdy/trunk/readme.txt

    r1290864 r1290883  
    66Donate link: http://technicalmastermind.com/donate/
    77Requires at least: 3.8
    8 Tested up to: 4.0
     8Tested up to: 4.4
    99Stable tag: 1.4.1
    1010
     
    5050
    5151= A word on support and additional features =
    52 While attempts will be made to keep this plugin up-to date and working, I cannot guarantee support for this plugin.
     52Due to time constraints, I am not able to keep up with this plugin as much as I would like. If you want to help keep it up do date, feel free to create a pull request on the [GitHub repo](https://github.com/dfwood90/tm-replace-howdy)!
    5353
    5454== Installation ==
     
    5959
    6060== Frequently Asked Questions ==
    61 None yet! Ask me in the [WordPress.org forums](http://wordpress.org/tags/tm-replace-howdy?forum_id=10#postform)!
     61Sorry, I don't have any questions that people have asked! All issues and bugfixes should be submitted to me on the [GitHub repo](https://github.com/dfwood90/tm-replace-howdy) for this plugin!
    6262
    6363== Screenshots ==
     
    6565
    6666== Changelog ==
     67= 1.4.2 =
     68* Fixed an i18n issue, now using WP language packs!
    6769= 1.4.1 =
    6870* Fixed a settings bug
     
    102104
    103105== Upgrade Notice ==
     106= 1.4.2 =
     107Fixed an i18n issue, now using WP language packs!
    104108= 1.4.1 =
    105109Fixed a settings bug
Note: See TracChangeset for help on using the changeset viewer.