Plugin Directory

Changeset 469925


Ignore:
Timestamp:
12/01/2011 04:34:07 PM (14 years ago)
Author:
technical_mastermind
Message:

Updating to 1.3.1

Location:
tm-replace-howdy
Files:
1 deleted
7 edited
7 copied

Legend:

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

    r469914 r469925  
    55Description: The Replace Howdy Plugin is designed to replace the word "Howdy" in the WordPress backend header with something else. By default it randomly pulls from a list of several replacement words and phrases such as "Hello", "Welcome", and "Get to the choppa". The plugin also comes with a menu where you can limit it to "professional" sounding greetings, set a static word or phrase, or add your own list (which can be by itself or added into the default list for even more variety)!
    66Author: David Wood
    7 Version: 1.3
     7Version: 1.3.1
    88Author URI: http://iamdavidwood.com/
    99Contributors: Micah Wood
     
    2626
    2727class tm_replace_howdy {
    28     private $version = '1.3',
     28    private $version = '1.3.1',
    2929        $tm_howdy_fun = array( // Array containing standard greetings
    3030        'Hello',
  • tm-replace-howdy/tags/1.3.1/js/tm-replace-howdy-3_1.js

    r465373 r469925  
    11jQuery(document).ready(function($) {
    2     $('#user_info p').html(
    3             $('#user_info p')
    4             .html()
    5             .replace(/Howdy/,tmReplaceHowdy.noHowdy));
     2    try {
     3        $('#user_info p').html(
     4            $('#user_info p')
     5                .html()
     6                .replace(/Howdy/,tmReplaceHowdy.noHowdy));
     7    } catch(err) {
     8        return false;
     9    }
    610});
  • tm-replace-howdy/tags/1.3.1/js/tm-replace-howdy-3_2.js

    r465373 r469925  
    11jQuery(document).ready(function($) {
    2     $('#user_info .hide-if-no-js p').html(
    3             $('#user_info .hide-if-no-js p')
    4             .html()
    5             .replace(/Howdy/,tmReplaceHowdy.noHowdy));
     2    try {
     3        $('#user_info .hide-if-no-js p').html(
     4            $('#user_info .hide-if-no-js p')
     5                .html()
     6                .replace(/Howdy/,tmReplaceHowdy.noHowdy));
     7    } catch(err) {
     8        return false;
     9    }
    610});
  • tm-replace-howdy/tags/1.3.1/js/tm-replace-howdy-3_3.js

    r469914 r469925  
    11jQuery(document).ready(function($) {
    2     $('#wp-admin-bar-my-account > a').html(
    3             $('#wp-admin-bar-my-account > a')
    4             .html()
    5             .replace(/Howdy/,tmReplaceHowdy.noHowdy));
     2    try {
     3        $('#wp-admin-bar-my-account > a').html(
     4            $('#wp-admin-bar-my-account > a')
     5                .html()
     6                .replace(/Howdy/,tmReplaceHowdy.noHowdy));
     7    } catch(err) {
     8        return false;
     9    }
    610});
  • tm-replace-howdy/tags/1.3.1/readme.txt

    r469914 r469925  
    1010Requires at least: 3.0
    1111Tested up to:      3.3
    12 Stable tag:        1.3
    13 Version:           1.3
     12Stable tag:        1.3.1
     13Version:           1.3.1
    1414
    1515== Description ==
     
    5858
    5959== Upgrade Notice ==
     60= 1.3.1 =
     61Fixed a JavaScript related bug that could break WordPress functionality. Replace Howdy now degrades more gracefully when faced with a JavaScript error.
    6062= 1.3 =
    6163Further updated for WordPress 3.3 compatibility and updated core functionality to be more secure and efficient.
     
    7577
    7678== Changelog ==
     79= 1.3.1 =
     80* Fixed a JavaScript related bug that could break WordPress functionality
    7781= 1.3 =
    7882* Further updated for WordPress 3.3 compatibility
  • tm-replace-howdy/trunk/index.php

    r469914 r469925  
    55Description: The Replace Howdy Plugin is designed to replace the word "Howdy" in the WordPress backend header with something else. By default it randomly pulls from a list of several replacement words and phrases such as "Hello", "Welcome", and "Get to the choppa". The plugin also comes with a menu where you can limit it to "professional" sounding greetings, set a static word or phrase, or add your own list (which can be by itself or added into the default list for even more variety)!
    66Author: David Wood
    7 Version: 1.3
     7Version: 1.3.1
    88Author URI: http://iamdavidwood.com/
    99Contributors: Micah Wood
     
    2626
    2727class tm_replace_howdy {
    28     private $version = '1.3',
     28    private $version = '1.3.1',
    2929        $tm_howdy_fun = array( // Array containing standard greetings
    3030        'Hello',
  • tm-replace-howdy/trunk/js/tm-replace-howdy-3_1.js

    r465373 r469925  
    11jQuery(document).ready(function($) {
    2     $('#user_info p').html(
    3             $('#user_info p')
    4             .html()
    5             .replace(/Howdy/,tmReplaceHowdy.noHowdy));
     2    try {
     3        $('#user_info p').html(
     4            $('#user_info p')
     5                .html()
     6                .replace(/Howdy/,tmReplaceHowdy.noHowdy));
     7    } catch(err) {
     8        return false;
     9    }
    610});
  • tm-replace-howdy/trunk/js/tm-replace-howdy-3_2.js

    r465373 r469925  
    11jQuery(document).ready(function($) {
    2     $('#user_info .hide-if-no-js p').html(
    3             $('#user_info .hide-if-no-js p')
    4             .html()
    5             .replace(/Howdy/,tmReplaceHowdy.noHowdy));
     2    try {
     3        $('#user_info .hide-if-no-js p').html(
     4            $('#user_info .hide-if-no-js p')
     5                .html()
     6                .replace(/Howdy/,tmReplaceHowdy.noHowdy));
     7    } catch(err) {
     8        return false;
     9    }
    610});
  • tm-replace-howdy/trunk/js/tm-replace-howdy-3_3.js

    r469914 r469925  
    11jQuery(document).ready(function($) {
    2     $('#wp-admin-bar-my-account > a').html(
    3             $('#wp-admin-bar-my-account > a')
    4             .html()
    5             .replace(/Howdy/,tmReplaceHowdy.noHowdy));
     2    try {
     3        $('#wp-admin-bar-my-account > a').html(
     4            $('#wp-admin-bar-my-account > a')
     5                .html()
     6                .replace(/Howdy/,tmReplaceHowdy.noHowdy));
     7    } catch(err) {
     8        return false;
     9    }
    610});
  • tm-replace-howdy/trunk/readme.txt

    r469914 r469925  
    1010Requires at least: 3.0
    1111Tested up to:      3.3
    12 Stable tag:        1.3
    13 Version:           1.3
     12Stable tag:        1.3.1
     13Version:           1.3.1
    1414
    1515== Description ==
     
    5858
    5959== Upgrade Notice ==
     60= 1.3.1 =
     61Fixed a JavaScript related bug that could break WordPress functionality. Replace Howdy now degrades more gracefully when faced with a JavaScript error.
    6062= 1.3 =
    6163Further updated for WordPress 3.3 compatibility and updated core functionality to be more secure and efficient.
     
    7577
    7678== Changelog ==
     79= 1.3.1 =
     80* Fixed a JavaScript related bug that could break WordPress functionality
    7781= 1.3 =
    7882* Further updated for WordPress 3.3 compatibility
Note: See TracChangeset for help on using the changeset viewer.