Plugin Directory

Changeset 1071116


Ignore:
Timestamp:
01/19/2015 03:45:53 PM (11 years ago)
Author:
captaintheme
Message:

1.0.9

Location:
recipe-hero
Files:
253 added
4 edited

Legend:

Unmodified
Added
Removed
  • recipe-hero/trunk/README.md

    r1061027 r1071116  
    66* **Requires at least:** 3.8.0
    77* **Tested up to:** 4.1.0
    8 * **Stable tag:** 1.0.8
     8* **Stable tag:** 1.0.9
    99* **License:** GPLv2 or later
    1010* **License URI:** http://www.gnu.org/licenses/gpl-2.0.html
     
    136136## Changelog
    137137
     138= 1.0.9 =
     139* Conflict with WooCommerce + Permalinks - #bryceisstupid
     140
    138141= 1.0.8 =
    139142* Enhancement: Frontend CSS file renaming
  • recipe-hero/trunk/README.txt

    r1061027 r1071116  
    55Requires at least: 3.8.0
    66Tested up to: 4.1.0
    7 Stable tag: 1.0.8
     7Stable tag: 1.0.9
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    135135== Changelog ==
    136136
     137= 1.0.9 =
     138* Conflict with WooCommerce + Permalinks - #bryceisstupid
     139
    137140= 1.0.8 =
    138141* Enhancement: Frontend CSS file renaming
  • recipe-hero/trunk/includes/admin/class-rh-admin-permalink-settings.php

    r1038648 r1071116  
    88 * @link      http://captaintheme.com
    99 * @copyright 2014 Captain Theme
     10 * @since     1.0.9
    1011 */
    1112
     
    9596            <tbody>
    9697                <tr>
    97                     <th><label><input name="recipe_permalink" type="radio" value="<?php echo $structures[0]; ?>" class="wctog" <?php checked( $structures[0], $recipe_permalink ); ?> /> <?php _e( 'Default', 'recipe-hero' ); ?></label></th>
     98                    <th><label><input name="recipe_permalink" type="radio" value="<?php echo $structures[0]; ?>" class="rhtog" <?php checked( $structures[0], $recipe_permalink ); ?> /> <?php _e( 'Default', 'recipe-hero' ); ?></label></th>
    9899                    <td><code><?php echo home_url(); ?>/?recipe=sample-recipe</code></td>
    99100                </tr>
    100101                <tr>
    101                     <th><label><input name="recipe_permalink" type="radio" value="<?php echo $structures[1]; ?>" class="wctog" <?php checked( $structures[1], $recipe_permalink ); ?> /> <?php _e( 'Recipe', 'recipe-hero' ); ?></label></th>
     102                    <th><label><input name="recipe_permalink" type="radio" value="<?php echo $structures[1]; ?>" class="rhtog" <?php checked( $structures[1], $recipe_permalink ); ?> /> <?php _e( 'Recipe', 'recipe-hero' ); ?></label></th>
    102103                    <td><code><?php echo home_url(); ?>/<?php echo $recipe_base; ?>/sample-recipe/</code></td>
    103104                </tr>
    104105                <?php if ( $shop_page_id ) : ?>
    105106                    <tr>
    106                         <th><label><input name="recipe_permalink" type="radio" value="<?php echo $structures[2]; ?>" class="wctog" <?php checked( $structures[2], $recipe_permalink ); ?> /> <?php _e( 'Recipes base', 'recipe-hero' ); ?></label></th>
     107                        <th><label><input name="recipe_permalink" type="radio" value="<?php echo $structures[2]; ?>" class="rhtog" <?php checked( $structures[2], $recipe_permalink ); ?> /> <?php _e( 'Recipes base', 'recipe-hero' ); ?></label></th>
    107108                        <td><code><?php echo home_url(); ?>/<?php echo $base_slug; ?>/sample-recipe/</code></td>
    108109                    </tr>
     
    119120        <script type="text/javascript">
    120121            jQuery(function(){
    121                 jQuery('input.wctog').change(function() {
     122                jQuery('input.rhtog').change(function() {
    122123                    jQuery('#recipe_hero_permalink_structure').val( jQuery(this).val() );
    123124                });
  • recipe-hero/trunk/recipe-hero.php

    r1061027 r1071116  
    1212 * Plugin URI:        http://recipehero.in/
    1313 * Description:       The last recipe plugin you'll ever need.
    14  * Version:           1.0.8
     14 * Version:           1.0.9
    1515 * Author:            Bryce Adams
    1616 * Author URI:        http://bryce.se/
     
    1919 * License URI:       http://www.gnu.org/licenses/gpl-2.0.txt
    2020 * Domain Path:       /languages
    21  * Made with the amazing: WordPress-Plugin-Boilerplate: v2.6.1
    2221 */
    2322
     
    3736 *
    3837 * @class RecipeHero
    39  * @version 1.0.8
     38 * @version 1.0.9
    4039 */
    4140
     
    4544     * Plugin version, used for cache-busting of style and script file references.
    4645     *
    47      * @since   1.0.8
     46     * @since   1.0.9
    4847     *
    4948     * @var     string
    5049     */
    51     public static $version = '1.0.8';
     50    public static $version = '1.0.9';
    5251
    5352    /**
Note: See TracChangeset for help on using the changeset viewer.