Plugin Directory

Changeset 491737

Timestamp:
01/18/2012 04:24:14 PM (13 years ago)
Author:
taylorde
Message:

tagging v 0.3.1

Location:
tdd-progress-bar
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • tdd-progress-bar/tags/0.3.1/css/default.css

    r491108 r491737  
    11.tdd_pb_global_container {
    2     max-width:900px;
    3     width:400px;
     2    max-width:900px;
     3    width:400px;
    44}
    55
    66.tdd_pb_bar_container {
    7     position:relative;
    8     background-color:#333;
    9     overflow:hidden;
     7    position:relative;
     8    background-color:#333;
     9    overflow:hidden;
    1010    height: 50px;
    11     border:1px solid black;
     11    border:1px solid black;
    1212
    13     box-shadow:inset 0 0 4px #000000;
    14 
     13    -webkit-box-shadow: inset 0 0 4px #000000;
     14    -moz-box-shadow: inset 0 0 4px #000000;
     15    box-shadow: inset 0 0 4px #000000;
    1516    border-top-right-radius: 15px 100px;
    1617    border-bottom-right-radius: 15px 100px;
     
    1920.tdd_pb_red {
    2021    background-position: 0px 0;
    21     }
     22}
    2223
    2324.tdd_pb_race .tdd_pb_red {
    2425    background-position: 0px -12px;
    25     }
     26}
    2627
    2728.tdd_pb_orange {
    2829    background-position: 0px -50px;
    29     }
     30}
    3031
    3132.td_pb_race .td_pb_orange {
    3233    background-position: 0px -62px;
    33     }
     34}
    3435
    3536.td_pb_yellow {
    3637    background-position: 0px -100px;
    37     }
     38}
    3839
    3940.td_pb_race .td_pb_yellow {
    4041    background-position: 0px -112px;
    41     }
     42}
    4243
    4344.td_pb_green {
    4445    background-position: 0px -150px;
    45     }
     46}
    4647
    4748.td_pb_race .td_pb_green {
    4849    background-position: 0px -162px;
    49     }
     50}
    5051
    5152.td_pb_teal {
    5253    background-position: 0px -200px;
    53     }
     54}
    5455
    5556.td_pb_race .td_pb_teal {
    5657    background-position: 0px -212px;
    57     }
     58}
    5859
    5960.td_pb_lightblue {
    6061    background-position: 0px -250px;
    61     }
     62}
    6263
    6364.td_pb_race .td_pb_lightblue {
    6465    background-position: 0px -262px;
    65     }
     66}
    6667
    6768.td_pb_blue {
    6869    background-position: 0px -300px;
    69     }
     70}
    7071
    7172.td_pb_race .td_pb_blue {
    7273    background-position: 0px -312px;
    73     }
     74}
    7475
    7576.td_pb_purple {
    7677    background-position: 0px -350px;
    77     }
     78}
    7879
    7980.td_pb_race .td_pb_purple {
    8081    background-position: 0px -362px;
    81     }
     82}
    8283
    8384.td_pb_fuchsia {
    8485    background-position: 0px -400px;
    85     }
    86    
     86}
     87
    8788.td_pb_race .td_pb_fuchsia {
    8889    background-position: 0px -415px;
    89     }
     90}
    9091
    9192.td_pb_strawberry {
    9293    background-position: 0px -450px;
    93     }
    94    
     94}
     95
    9596.td_pb_race .td_pb_strawberry {
    9697    background-position: 0px -465px;
    97     }
     98}
    9899
    99100.td_pb_black {
    100101    background-position: 0px -500px;
    101     }
     102}
    102103
    103104.td_pb_race .td_pb_black {
    104105    background-position: 0px -515px;
    105     }
     106}
    106107
    107108.td_pb_silver {
    108109    background-position: 0px -550px;
    109     }
     110}
    110111
    111112.td_pb_race .td_pb_silver {
    112113    background-position: 0px -565px;
    113     }
    114 
     114}
    115115
    116116.tdd_pb_bar {
    117     background-image:url(../images/bars.png);
    118     width:0;
    119     height:100%;
     117    background-image: url(../images/bars.png);
     118    width: 0;
     119    height: 100%;
     120
     121    -webkit-box-shadow: 1px 0 4px #000;
     122    -moz-box-shadow: 1px 0 4px #000;
    120123    box-shadow: 1px 0 4px #000;
    121     z-index:2;
    122    
     124    z-index: 2;
    123125    border-top-right-radius: 15px 100px;
    124126    border-bottom-right-radius: 15px 100px;
     
    126128
    127129.td_pb_race .tdd_pb_bar_container {
    128     height:25px;
    129     }
     130    height:25px;
     131}
    130132
    131133.td_pb_race .tdd_pb_bar_container .td_pb_numbers {
    132     font-size:15px;
    133     margin-top:4px;
    134     }
     134    font-size:15px;
     135    margin-top:4px;
     136}
    135137
    136138.td_pb_numbers {
    137     text-shadow:-1px -1px 1px #000;
    138     font-size:30px;
    139     margin-top:7px;
    140     margin-right:10px;
    141     color:#ececec;
    142     position:absolute;
    143     right:0;
    144     line-height:1em;
     139    text-shadow:-1px -1px 1px #000;
     140    font-size:30px;
     141    margin-top:7px;
     142    margin-right:10px;
     143    color:#ececec;
     144    position:absolute;
     145    right:0;
     146    line-height:1em;
    145147}
  • tdd-progress-bar/tags/0.3.1/readme.txt

    r491108 r491737  
    55Requires at least: 3.2.1
    66Tested up to: 3.3.1
    7 Stable tag: 0.3
     7Stable tag: 0.3
    88
    99Configure and display any number of percent-complete progress bars.
     
    4545== Changelog ==
    4646
     47
     48
     49
     50
    4751= 0.3 =
    4852* New Colors! Added Black and Silver to the mix.
     
    7579
    7680= .1 =
    77 The first version
     81The first version admin side as well), and remove the action that adds the styles to the public side.
     82
     83= 0.1.2 =
     84* If you'd like the settings page to work, upgrade.
     85
     86= 0.1.1 =
     87* Blocking bugfix. Plugin won't work unless you upgrade
     88
     89= .1 =
     90Yes, you should totally upgrade to the first version released...
  • tdd-progress-bar/tags/0.3.1/tdd-progress-bar.php

    r491108 r491737  
    7272*/
    7373function tdd_pb_load_styles() {
    74     wp_enqueue_style( 'tdd_pb_style', plugins_url( 'css/default.css', __FILE__ ), '', '.1' );
    75    
     74    if ( defined('WP_DEBUG') ) {
     75        if ( WP_DEBUG ) {
     76            wp_enqueue_style( 'tdd_pb_style', plugins_url( 'css/default.css', __FILE__ ), '', '.3' );
     77        } else {
     78            wp_enqueue_style( 'tdd_pb_style', plugins_url( 'css/default.min.css', __FILE__ ), '', '.3' );
     79        }
     80    } else {
     81        wp_enqueue_style( 'tdd_pb_style', plugins_url( 'css/default.min.css', __FILE__ ), '', '.3' );
     82    }
    7683}
    7784
  • tdd-progress-bar/trunk/css/default.css

    r491108 r491737  
    11.tdd_pb_global_container {
    2     max-width:900px;
    3     width:400px;
     2    max-width:900px;
     3    width:400px;
    44}
    55
    66.tdd_pb_bar_container {
    7     position:relative;
    8     background-color:#333;
    9     overflow:hidden;
     7    position:relative;
     8    background-color:#333;
     9    overflow:hidden;
    1010    height: 50px;
    11     border:1px solid black;
     11    border:1px solid black;
    1212
    13     box-shadow:inset 0 0 4px #000000;
    14 
     13    -webkit-box-shadow: inset 0 0 4px #000000;
     14    -moz-box-shadow: inset 0 0 4px #000000;
     15    box-shadow: inset 0 0 4px #000000;
    1516    border-top-right-radius: 15px 100px;
    1617    border-bottom-right-radius: 15px 100px;
     
    1920.tdd_pb_red {
    2021    background-position: 0px 0;
    21     }
     22}
    2223
    2324.tdd_pb_race .tdd_pb_red {
    2425    background-position: 0px -12px;
    25     }
     26}
    2627
    2728.tdd_pb_orange {
    2829    background-position: 0px -50px;
    29     }
     30}
    3031
    3132.td_pb_race .td_pb_orange {
    3233    background-position: 0px -62px;
    33     }
     34}
    3435
    3536.td_pb_yellow {
    3637    background-position: 0px -100px;
    37     }
     38}
    3839
    3940.td_pb_race .td_pb_yellow {
    4041    background-position: 0px -112px;
    41     }
     42}
    4243
    4344.td_pb_green {
    4445    background-position: 0px -150px;
    45     }
     46}
    4647
    4748.td_pb_race .td_pb_green {
    4849    background-position: 0px -162px;
    49     }
     50}
    5051
    5152.td_pb_teal {
    5253    background-position: 0px -200px;
    53     }
     54}
    5455
    5556.td_pb_race .td_pb_teal {
    5657    background-position: 0px -212px;
    57     }
     58}
    5859
    5960.td_pb_lightblue {
    6061    background-position: 0px -250px;
    61     }
     62}
    6263
    6364.td_pb_race .td_pb_lightblue {
    6465    background-position: 0px -262px;
    65     }
     66}
    6667
    6768.td_pb_blue {
    6869    background-position: 0px -300px;
    69     }
     70}
    7071
    7172.td_pb_race .td_pb_blue {
    7273    background-position: 0px -312px;
    73     }
     74}
    7475
    7576.td_pb_purple {
    7677    background-position: 0px -350px;
    77     }
     78}
    7879
    7980.td_pb_race .td_pb_purple {
    8081    background-position: 0px -362px;
    81     }
     82}
    8283
    8384.td_pb_fuchsia {
    8485    background-position: 0px -400px;
    85     }
    86    
     86}
     87
    8788.td_pb_race .td_pb_fuchsia {
    8889    background-position: 0px -415px;
    89     }
     90}
    9091
    9192.td_pb_strawberry {
    9293    background-position: 0px -450px;
    93     }
    94    
     94}
     95
    9596.td_pb_race .td_pb_strawberry {
    9697    background-position: 0px -465px;
    97     }
     98}
    9899
    99100.td_pb_black {
    100101    background-position: 0px -500px;
    101     }
     102}
    102103
    103104.td_pb_race .td_pb_black {
    104105    background-position: 0px -515px;
    105     }
     106}
    106107
    107108.td_pb_silver {
    108109    background-position: 0px -550px;
    109     }
     110}
    110111
    111112.td_pb_race .td_pb_silver {
    112113    background-position: 0px -565px;
    113     }
    114 
     114}
    115115
    116116.tdd_pb_bar {
    117     background-image:url(../images/bars.png);
    118     width:0;
    119     height:100%;
     117    background-image: url(../images/bars.png);
     118    width: 0;
     119    height: 100%;
     120
     121    -webkit-box-shadow: 1px 0 4px #000;
     122    -moz-box-shadow: 1px 0 4px #000;
    120123    box-shadow: 1px 0 4px #000;
    121     z-index:2;
    122    
     124    z-index: 2;
    123125    border-top-right-radius: 15px 100px;
    124126    border-bottom-right-radius: 15px 100px;
     
    126128
    127129.td_pb_race .tdd_pb_bar_container {
    128     height:25px;
    129     }
     130    height:25px;
     131}
    130132
    131133.td_pb_race .tdd_pb_bar_container .td_pb_numbers {
    132     font-size:15px;
    133     margin-top:4px;
    134     }
     134    font-size:15px;
     135    margin-top:4px;
     136}
    135137
    136138.td_pb_numbers {
    137     text-shadow:-1px -1px 1px #000;
    138     font-size:30px;
    139     margin-top:7px;
    140     margin-right:10px;
    141     color:#ececec;
    142     position:absolute;
    143     right:0;
    144     line-height:1em;
     139    text-shadow:-1px -1px 1px #000;
     140    font-size:30px;
     141    margin-top:7px;
     142    margin-right:10px;
     143    color:#ececec;
     144    position:absolute;
     145    right:0;
     146    line-height:1em;
    145147}
  • tdd-progress-bar/trunk/readme.txt

    r491108 r491737  
    55Requires at least: 3.2.1
    66Tested up to: 3.3.1
    7 Stable tag: 0.3
     7Stable tag: 0.3
    88
    99Configure and display any number of percent-complete progress bars.
     
    4545== Changelog ==
    4646
     47
     48
     49
     50
    4751= 0.3 =
    4852* New Colors! Added Black and Silver to the mix.
     
    7579
    7680= .1 =
    77 The first version
     81The first version admin side as well), and remove the action that adds the styles to the public side.
     82
     83= 0.1.2 =
     84* If you'd like the settings page to work, upgrade.
     85
     86= 0.1.1 =
     87* Blocking bugfix. Plugin won't work unless you upgrade
     88
     89= .1 =
     90Yes, you should totally upgrade to the first version released...
  • tdd-progress-bar/trunk/tdd-progress-bar.php

    r491108 r491737  
    7272*/
    7373function tdd_pb_load_styles() {
    74     wp_enqueue_style( 'tdd_pb_style', plugins_url( 'css/default.css', __FILE__ ), '', '.1' );
    75    
     74    if ( defined('WP_DEBUG') ) {
     75        if ( WP_DEBUG ) {
     76            wp_enqueue_style( 'tdd_pb_style', plugins_url( 'css/default.css', __FILE__ ), '', '.3' );
     77        } else {
     78            wp_enqueue_style( 'tdd_pb_style', plugins_url( 'css/default.min.css', __FILE__ ), '', '.3' );
     79        }
     80    } else {
     81        wp_enqueue_style( 'tdd_pb_style', plugins_url( 'css/default.min.css', __FILE__ ), '', '.3' );
     82    }
    7683}
    7784
Note: See TracChangeset for help on using the changeset viewer.