Plugin Directory

Changeset 392538


Ignore:
Timestamp:
06/02/2011 10:02:14 PM (15 years ago)
Author:
Yatko
Message:

changed: +1 widget title
fixed bugs: standard +1 button missing

Location:
google-1-widget/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • google-1-widget/trunk/index.html

    r392519 r392538  
    99    <h1>Google +1 WordPress Widget <g:plusone></g:plusone></h1>
    1010    <p>Google +1 WordPress widget adds a configurable Google +1 Button to your WordPress blog.</p>
    11     <h4>Version 1.1.0</h4>
     11    <h4>Version 1.1.1</h4>
    1212    <p>You can set the title, alignment, size and background of the +1 button. Simply install the plugin and place the widget.</p>
    1313
  • google-1-widget/trunk/plusone.html

    r392519 r392538  
    99    <h1>Google +1 WordPress Widget <g:plusone></g:plusone></h1>
    1010    <p>Google +1 WordPress widget adds a configurable Google +1 Button to your WordPress blog.</p>
    11     <h4>Version 1.1.0</h4>
     11    <h4>Version 1.1.1</h4>
    1212    <p>You can set the title, alignment, size and background of the +1 button. Simply install the plugin and place the widget.</p>
    1313
  • google-1-widget/trunk/plusone.php

    r392519 r392538  
    44Plugin URI: http://www.yatko.com/dev/widgets/wordpress/googleplusone/
    55Description: Google +1 WordPress widget adds a configurable Google +1 Button to your WordPress blog. You can set the title, alignment, size and background of the +1 button. Simply install the plugin and place the widget. Visit http://www.yatko.com/dev/widgets/wordpress/googleplusone/
    6 Version: 1.1.0
     6Version: 1.1.1
    77Author: Yatko
    88Author URI: http://www.yatko.com
     
    5252
    5353        /* Create the widget. */
    54         $this->WP_Widget( 'pusone-widget', __('+1 Button Widget', 'pusone'), $widget_ops, $control_ops );
     54        $this->WP_Widget( 'pusone-widget', __('Google +1 Widget', 'pusone'), $widget_ops, $control_ops );
    5555    }
    5656
     
    120120        <!-- plusone Size: Select Box -->
    121121        <p>
    122             <label for="<?php echo $this->get_field_id( 'plusone_Size' ); ?>"><?php _e('+1 Size:', 'medium'); ?></label>
     122            <label for="<?php echo $this->get_field_id( 'plusone_Size' ); ?>"><?php _e('+1 Size:', 'standard'); ?></label>
    123123            <select id="<?php echo $this->get_field_id( 'plusone_Size' ); ?>" name="<?php echo $this->get_field_name( 'plusone_Size' ); ?>" class="plusOneSelect" style="width:100%;">
    124124                <option <?php if ( 'small' == $instance['format'] ) echo 'selected="selected"'; ?>>small</option>
    125125                <option <?php if ( 'medium' == $instance['format'] ) echo 'selected="selected"'; ?>>medium</option>
     126                <option <?php if ( 'standard' == $instance['format'] ) echo 'selected="selected"'; ?>>standard</option>
    126127                <option <?php if ( 'tall' == $instance['format'] ) echo 'selected="selected"'; ?>>tall</option>
    127128            </select>
  • google-1-widget/trunk/readme.txt

    r392519 r392538  
    55Requires at least: 2.0.2
    66Tested up to: 3.1.3
    7 Stable tag: 1.1.0
     7Stable tag: 1.1.1
    88
    99Google +1 WordPress widget adds a configurable Google +1 Button to your WordPress blog
     
    2828
    2929== Changelog ==
     30= 1.1.1 =
     31* fixed: standard +1 button missing
     32* changed: Widget title
     33
    3034= 1.1.0 =
    3135* changed: +1 size select box
Note: See TracChangeset for help on using the changeset viewer.