Plugin Directory

Changeset 740377


Ignore:
Timestamp:
07/13/2013 09:27:14 PM (13 years ago)
Author:
Crinsane
Message:

Forgot to update the version tag to 1.2

Location:
rg-slider/tags/1.2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • rg-slider/tags/1.2/readme.txt

    r735868 r740377  
    33Requires at least: 3.5
    44Tested up to: 3.5.2
    5 Stable tag: 1.1
     5Stable tag: 1.2
    66License: GPLv2
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2020* Crop images to size without the use of Photoshop or something
    2121* Set all kinds of options (image size, image quality, slideshow animation)
    22 * UI that's very close to the native WordPress feel. 
     22* UI that's very close to the native WordPress feel.
    2323* Available in English and Dutch (Other translations wanted!)
    2424
     
    3939= 1.1 =
    4040* Fixed bug where pagination in list table didn't show
    41 * Fixed bug that prevented all slides to be loaded
     41* Fixed bug that prevented all slides to be loaded
     42
     43= 1.2 =
     44* Fixed bug where the editor on all pages was pushed over the slug buttons.
  • rg-slider/tags/1.2/rg-slider.php

    r735868 r740377  
    55Plugin URI: http://robgloudemans.nl/rg-slider
    66Description: A jQuery slideshow on your website/blog made easy
    7 Version: 1.1
     7Version: 1.2
    88Author: Rob Gloudemans
    99Author URI: http://robgloudemans.nl
     
    167167            wp_enqueue_style('jcrop');
    168168
    169             // Because of our hack with the submenu page without a parent, 
     169            // Because of our hack with the submenu page without a parent,
    170170            // we need this extra javascript script to set the active menu item
    171171            // Only cosmetic
     
    182182        // And enqueue the main scripts file
    183183        wp_enqueue_script('rg-slide-main', plugins_url('assets/js/rg-slider-scripts.js', __FILE__), array('jquery'), '1.0', TRUE);
    184        
     184
    185185        // Localize the main scripts file and add the l10n object for translation
    186186        wp_localize_script('rg-slide-main', 'rg_l10n_object', array(
     
    222222                'value' => $r['permalink']
    223223            );
    224            
     224
    225225            array_push($result, $temp);
    226226        }
     
    247247add_shortcode('rg-slider', 'rg_slider_shortcode');
    248248
    249 function rg_slider_shortcode($atts) 
     249function rg_slider_shortcode($atts)
    250250{
    251251    if( ! array_key_exists('show', $atts))
Note: See TracChangeset for help on using the changeset viewer.