Plugin Directory

Changeset 806679


Ignore:
Timestamp:
11/19/2013 09:18:39 AM (11 years ago)
Author:
Mike_Cowobo
Message:

Updating to version 0.5.8

Location:
wp-tiles
Files:
1 added
4 edited
17 copied

Legend:

Unmodified
Added
Removed
  • wp-tiles/tags/0.5.8/readme.txt

    r785733 r806679  
    66Requires at least: 3.4.2
    77Tested up to: 3.5.2
    8 Stable tag: 0.6
     8Stable tag: 0.5.8
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    217217== Changelog ==
    218218
     219= 0.5.8 =
     220
     221* Made plugin compatible with qTranslate
     222
    219223= 0.5.7 =
    220224
  • wp-tiles/tags/0.5.8/wp-tiles-admin.php

    r770836 r806679  
    532532        foreach ( $default_value as $k => $current ) {
    533533            printf ( "<div style='float:left'><input type='text' value='%s' name='%s' width=140px><br>
    534                 <textarea style='height:100px;width:140px' id='%s' name='%s'>%s</textarea></div>",
     534                <textarea style='height:100px;width:140px' name='%s'>%s</textarea></div>",
    535535                $k,
    536536                "{$wp_tiles_settings['option_name']}[{$value['group']}][{$value['name']}][name][]",
    537                 $current['name'],
     537                //$current['name'],
    538538                "{$wp_tiles_settings['option_name']}[{$value['group']}][{$value['name']}][field][]",
    539539                $current
  • wp-tiles/tags/0.5.8/wp-tiles.class.php

    r785733 r806679  
    110110
    111111        public function show_tiles( $atts_arg ) {
     112
    112113            /**
    113114             * Options and attributes
     
    180181
    181182                    </ul>
    182 
    183                 <?php if ( $wp_query->max_num_pages > 1 ) : ?>
    184                         <nav id="<?php echo $wptiles_id; ?>-pagination" class="navigation" role="navigation">
    185                             <h3 class="assistive-text"><?php _e( 'Post navigation', 'twentytwelve' ); ?></h3>
    186                             <div class="nav-previous alignleft"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentytwelve' ) ); ?></div>
    187                             <div class="nav-next alignright"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentytwelve' ) ); ?></div>
    188                         </nav><!-- #<?php echo $html_id; ?> .navigation -->
    189                 <?php endif; ?>
    190183
    191184                </div>
     
    312305                $data[] = array(
    313306                    "id"          => $post->ID,
    314                     "title"       => $post->post_title,
     307                    "title"       => apply_filters( 'the_title', $post->post_title ),
    315308                    "url"         => get_permalink( $post->ID ),
    316309                    "byline"      => $byline,
    317310                    "img"         => $this->get_first_image( $post ),
    318311                    "color"       => $color,
    319                     "bylineColor"
    320                     => $this->HexToRGBA( $color, $display_options['bylineOpacity'], true ),
     312                    "bylineColor" => $this->HexToRGBA( $color, $display_options['bylineOpacity'], true ),
    321313                    "hideByline"  => $hideByline,
    322314                    "categories"  => $category_slugs
  • wp-tiles/tags/0.5.8/wp-tiles.php

    r785733 r806679  
    44  Plugin URI: http://trenvopress.com/
    55  Description: Add fully customizable dynamic tiles to your WordPress posts and pages.
    6   Version: 0.5.7
     6  Version: 0.5.8
    77  Author: Mike Martel
    88  Author URI: http://trenvopress.com
     
    1818 * @since 0.1
    1919 */
    20 define( 'WPTILES_VERSION', '0.5.7' );
     20define( 'WPTILES_VERSION', '0.5.8' );
    2121
    2222/**
  • wp-tiles/trunk/readme.txt

    r785733 r806679  
    66Requires at least: 3.4.2
    77Tested up to: 3.5.2
    8 Stable tag: 0.6
     8Stable tag: 0.5.8
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    217217== Changelog ==
    218218
     219= 0.5.8 =
     220
     221* Made plugin compatible with qTranslate
     222
    219223= 0.5.7 =
    220224
  • wp-tiles/trunk/wp-tiles-admin.php

    r770836 r806679  
    532532        foreach ( $default_value as $k => $current ) {
    533533            printf ( "<div style='float:left'><input type='text' value='%s' name='%s' width=140px><br>
    534                 <textarea style='height:100px;width:140px' id='%s' name='%s'>%s</textarea></div>",
     534                <textarea style='height:100px;width:140px' name='%s'>%s</textarea></div>",
    535535                $k,
    536536                "{$wp_tiles_settings['option_name']}[{$value['group']}][{$value['name']}][name][]",
    537                 $current['name'],
     537                //$current['name'],
    538538                "{$wp_tiles_settings['option_name']}[{$value['group']}][{$value['name']}][field][]",
    539539                $current
  • wp-tiles/trunk/wp-tiles.class.php

    r785733 r806679  
    110110
    111111        public function show_tiles( $atts_arg ) {
     112
    112113            /**
    113114             * Options and attributes
     
    180181
    181182                    </ul>
    182 
    183                 <?php if ( $wp_query->max_num_pages > 1 ) : ?>
    184                         <nav id="<?php echo $wptiles_id; ?>-pagination" class="navigation" role="navigation">
    185                             <h3 class="assistive-text"><?php _e( 'Post navigation', 'twentytwelve' ); ?></h3>
    186                             <div class="nav-previous alignleft"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentytwelve' ) ); ?></div>
    187                             <div class="nav-next alignright"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentytwelve' ) ); ?></div>
    188                         </nav><!-- #<?php echo $html_id; ?> .navigation -->
    189                 <?php endif; ?>
    190183
    191184                </div>
     
    312305                $data[] = array(
    313306                    "id"          => $post->ID,
    314                     "title"       => $post->post_title,
     307                    "title"       => apply_filters( 'the_title', $post->post_title ),
    315308                    "url"         => get_permalink( $post->ID ),
    316309                    "byline"      => $byline,
    317310                    "img"         => $this->get_first_image( $post ),
    318311                    "color"       => $color,
    319                     "bylineColor"
    320                     => $this->HexToRGBA( $color, $display_options['bylineOpacity'], true ),
     312                    "bylineColor" => $this->HexToRGBA( $color, $display_options['bylineOpacity'], true ),
    321313                    "hideByline"  => $hideByline,
    322314                    "categories"  => $category_slugs
  • wp-tiles/trunk/wp-tiles.php

    r785733 r806679  
    44  Plugin URI: http://trenvopress.com/
    55  Description: Add fully customizable dynamic tiles to your WordPress posts and pages.
    6   Version: 0.5.7
     6  Version: 0.5.8
    77  Author: Mike Martel
    88  Author URI: http://trenvopress.com
     
    1818 * @since 0.1
    1919 */
    20 define( 'WPTILES_VERSION', '0.5.7' );
     20define( 'WPTILES_VERSION', '0.5.8' );
    2121
    2222/**
Note: See TracChangeset for help on using the changeset viewer.