Changeset 1290883
- Timestamp:
- 11/20/2015 03:57:39 PM (10 years ago)
- Location:
- tm-replace-howdy
- Files:
-
- 1 added
- 5 deleted
- 2 edited
- 3 copied
-
tags/1.4.2 (added)
-
tags/1.4.2/index.php (copied) (copied from tm-replace-howdy/trunk/index.php) (4 diffs)
-
tags/1.4.2/options.php (copied) (copied from tm-replace-howdy/trunk/options.php)
-
tags/1.4.2/readme.txt (copied) (copied from tm-replace-howdy/trunk/readme.txt) (5 diffs)
-
trunk/index.php (modified) (4 diffs)
-
trunk/languages (deleted)
-
trunk/license.txt (deleted)
-
trunk/readme.txt (modified) (5 diffs)
-
trunk/screenshot-1.jpg (deleted)
-
trunk/screenshot-2.jpg (deleted)
-
trunk/techm_options.php (deleted)
Legend:
- Unmodified
- Added
- Removed
-
tm-replace-howdy/tags/1.4.2/index.php
r1290865 r1290883 6 6 Author: David Wood 7 7 Author URI: http://davidwood.ninja/ 8 Version: 1.4. 08 Version: 1.4.2 9 9 License: GPL v3 10 10 Text Domain: tm-replace-howdy … … 18 18 define( 'TM_REPLACE_HOWDY_FILE', __FILE__ ); 19 19 20 /** 21 * Class TM_Replace_Howdy 22 */ 20 23 class TM_Replace_Howdy { 21 24 22 25 protected 23 $version = '1.4. 0', // Plugin version number for internal use26 $version = '1.4.2', // Plugin version number for internal use 24 27 // Array containing standard greetings 25 28 $tm_howdy_fun = array( … … 77 80 78 81 // Register our actions 82 add_action( 'plugins_loaded', array( $this, '_load_textdomain' ) ); 79 83 add_action( 'init', array( $this, 'init' ) ); 80 84 add_action( 'admin_menu', array( $this, 'add_admin_page' ) ); … … 82 86 // Register deactivation hook 83 87 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' ); 87 96 } 88 97 -
tm-replace-howdy/tags/1.4.2/readme.txt
r1290865 r1290883 6 6 Donate link: http://technicalmastermind.com/donate/ 7 7 Requires at least: 3.8 8 Tested up to: 4. 08 Tested up to: 4.4 9 9 Stable tag: 1.4.1 10 10 … … 50 50 51 51 = 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. 52 Due 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)! 53 53 54 54 == Installation == … … 59 59 60 60 == Frequently Asked Questions == 61 None yet! Ask me in the [WordPress.org forums](http://wordpress.org/tags/tm-replace-howdy?forum_id=10#postform)!61 Sorry, 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! 62 62 63 63 == Screenshots == … … 65 65 66 66 == Changelog == 67 = 1.4.2 = 68 * Fixed an i18n issue, now using WP language packs! 67 69 = 1.4.1 = 68 70 * Fixed a settings bug … … 102 104 103 105 == Upgrade Notice == 106 = 1.4.2 = 107 Fixed an i18n issue, now using WP language packs! 104 108 = 1.4.1 = 105 109 Fixed a settings bug -
tm-replace-howdy/trunk/index.php
r1002155 r1290883 6 6 Author: David Wood 7 7 Author URI: http://davidwood.ninja/ 8 Version: 1.4. 08 Version: 1.4.2 9 9 License: GPL v3 10 10 Text Domain: tm-replace-howdy … … 18 18 define( 'TM_REPLACE_HOWDY_FILE', __FILE__ ); 19 19 20 /** 21 * Class TM_Replace_Howdy 22 */ 20 23 class TM_Replace_Howdy { 21 24 22 25 protected 23 $version = '1.4. 0', // Plugin version number for internal use26 $version = '1.4.2', // Plugin version number for internal use 24 27 // Array containing standard greetings 25 28 $tm_howdy_fun = array( … … 77 80 78 81 // Register our actions 82 add_action( 'plugins_loaded', array( $this, '_load_textdomain' ) ); 79 83 add_action( 'init', array( $this, 'init' ) ); 80 84 add_action( 'admin_menu', array( $this, 'add_admin_page' ) ); … … 82 86 // Register deactivation hook 83 87 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' ); 87 96 } 88 97 -
tm-replace-howdy/trunk/readme.txt
r1290864 r1290883 6 6 Donate link: http://technicalmastermind.com/donate/ 7 7 Requires at least: 3.8 8 Tested up to: 4. 08 Tested up to: 4.4 9 9 Stable tag: 1.4.1 10 10 … … 50 50 51 51 = 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. 52 Due 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)! 53 53 54 54 == Installation == … … 59 59 60 60 == Frequently Asked Questions == 61 None yet! Ask me in the [WordPress.org forums](http://wordpress.org/tags/tm-replace-howdy?forum_id=10#postform)!61 Sorry, 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! 62 62 63 63 == Screenshots == … … 65 65 66 66 == Changelog == 67 = 1.4.2 = 68 * Fixed an i18n issue, now using WP language packs! 67 69 = 1.4.1 = 68 70 * Fixed a settings bug … … 102 104 103 105 == Upgrade Notice == 106 = 1.4.2 = 107 Fixed an i18n issue, now using WP language packs! 104 108 = 1.4.1 = 105 109 Fixed a settings bug
Note: See TracChangeset
for help on using the changeset viewer.