Changeset 46101

Show
Ignore:
Timestamp:
05/15/08 23:19:06 (2 months ago)
Author:
aaroncampbell
Message:

Tagging 1.0.0 which releases drag and drop support

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • reorder-gallery/tags/1.0.0/js/reorder-gallery.js

    r44025 r46101  
    55                  $('#media-items').SortableDestroy(); 
    66            } catch(e) {} 
    7             $('#media-items media-item'). 
     7            $('#media-items .media-item'). 
    88            gallerySortable = $('#media-items').Sortable( { 
    99                  accept: 'media-item', 
     
    2323      // initialize sortable 
    2424      gallerySortableInit(); 
    25  
     25      $('#media-items .media-item').css({ 
     26            position: 'static', 
     27            cursor: 'move' 
     28      }); 
    2629}); 
  • reorder-gallery/tags/1.0.0/readme.txt

    r44020 r46101  
    55Requires at least: 2.5 
    66Tested up to: 2.5.2 
    7 Stable tag: 0.1.0 
     7Stable tag: 1.0.0 
    88 
    9 Allows you to reorder your gallery images
     9Allows you to reorder your gallery images with the ease of drag and drop
    1010 
    1111== Description == 
    1212 
    13 Adds an "Order" field to the images in your gallery, much like pages have, which 
     13Gives you the ability to simply drag and drop to reorganize your images how you 
     14want them to appear in your gallery.  If drag and drop isn't your thing, it also 
     15adds an "Order" field to the images in your gallery, much like pages have, which 
    1416allows you to reorder them to display in whatever order you want.  Requires PHP5. 
    1517 
     
    2224== Frequently Asked Questions == 
    2325 
     26= One I have them in the order I want them, what do I have to do? = 
     27 
     28Simply click the "Save all changes" button to save their order. 
     29 
    2430= How do I change the order? = 
    2531 
    26 Each image will have an "Order" field.  The lower the number in that field, the earlier in the gallery it is. 
     32Each image will have an "Order" field.  The lower the number in that field, the earlier in the gallery it is.  If you use the drag and drop sorting, this field is updated for you. 
    2733 
    2834= What if some images have the same value? = 
  • reorder-gallery/tags/1.0.0/reorder-gallery.php

    r44025 r46101  
    22/** 
    33 * Plugin Name: Reorder Gallery 
    4  * Plugin URI: http://xavisys.com/ 
    5  * Description: Lets you reorder gallery items with drag and drop 
    6  * Version: 0.1.0 
     4 * Plugin URI: http://xavisys.com/wordpress-reorder-gallery-plugin/ 
     5 * Description: Lets you reorder gallery items with the ease of drag and drop 
     6 * Version: 1.0.0 
    77 * Author: Aaron D. Campbell 
    88 * Author URI: http://xavisys.com/ 
     
    1111/** 
    1212 * Changelog: 
     13 * 05/15/2008: 1.0.0 
     14 *    - Added the drag and drop functionality 
     15 * 
    1316 * 05/02/2008: 0.1.0 
    1417 *    - Added to Wordpress.org 
     
    5154        $jsDir = get_option('siteurl') . '/wp-content/plugins/reorder-gallery/js/'; 
    5255 
    53         wp_register_script('reorderGallery', "{$jsDir}reorder-gallery.js", array( 'interface' ), '0.0.1'); 
     56        wp_register_script('reorderGallery', "{$jsDir}reorder-gallery.js", array( 'interface' ), '1.0.1'); 
    5457    } 
    5558 
  • reorder-gallery/trunk/js/reorder-gallery.js

    r44025 r46101  
    55                  $('#media-items').SortableDestroy(); 
    66            } catch(e) {} 
    7             $('#media-items media-item'). 
     7            $('#media-items .media-item'). 
    88            gallerySortable = $('#media-items').Sortable( { 
    99                  accept: 'media-item', 
     
    2323      // initialize sortable 
    2424      gallerySortableInit(); 
    25  
     25      $('#media-items .media-item').css({ 
     26            position: 'static', 
     27            cursor: 'move' 
     28      }); 
    2629}); 
  • reorder-gallery/trunk/readme.txt

    r44020 r46101  
    55Requires at least: 2.5 
    66Tested up to: 2.5.2 
    7 Stable tag: 0.1.0 
     7Stable tag: 1.0.0 
    88 
    9 Allows you to reorder your gallery images
     9Allows you to reorder your gallery images with the ease of drag and drop
    1010 
    1111== Description == 
    1212 
    13 Adds an "Order" field to the images in your gallery, much like pages have, which 
     13Gives you the ability to simply drag and drop to reorganize your images how you 
     14want them to appear in your gallery.  If drag and drop isn't your thing, it also 
     15adds an "Order" field to the images in your gallery, much like pages have, which 
    1416allows you to reorder them to display in whatever order you want.  Requires PHP5. 
    1517 
     
    2224== Frequently Asked Questions == 
    2325 
     26= One I have them in the order I want them, what do I have to do? = 
     27 
     28Simply click the "Save all changes" button to save their order. 
     29 
    2430= How do I change the order? = 
    2531 
    26 Each image will have an "Order" field.  The lower the number in that field, the earlier in the gallery it is. 
     32Each image will have an "Order" field.  The lower the number in that field, the earlier in the gallery it is.  If you use the drag and drop sorting, this field is updated for you. 
    2733 
    2834= What if some images have the same value? = 
  • reorder-gallery/trunk/reorder-gallery.php

    r44025 r46101  
    22/** 
    33 * Plugin Name: Reorder Gallery 
    4  * Plugin URI: http://xavisys.com/ 
    5  * Description: Lets you reorder gallery items with drag and drop 
    6  * Version: 0.1.0 
     4 * Plugin URI: http://xavisys.com/wordpress-reorder-gallery-plugin/ 
     5 * Description: Lets you reorder gallery items with the ease of drag and drop 
     6 * Version: 1.0.0 
    77 * Author: Aaron D. Campbell 
    88 * Author URI: http://xavisys.com/ 
     
    1111/** 
    1212 * Changelog: 
     13 * 05/15/2008: 1.0.0 
     14 *    - Added the drag and drop functionality 
     15 * 
    1316 * 05/02/2008: 0.1.0 
    1417 *    - Added to Wordpress.org 
     
    5154        $jsDir = get_option('siteurl') . '/wp-content/plugins/reorder-gallery/js/'; 
    5255 
    53         wp_register_script('reorderGallery', "{$jsDir}reorder-gallery.js", array( 'interface' ), '0.0.1'); 
     56        wp_register_script('reorderGallery', "{$jsDir}reorder-gallery.js", array( 'interface' ), '1.0.1'); 
    5457    } 
    5558