Plugin Directory

Changeset 1115983


Ignore:
Timestamp:
03/19/2015 11:39:04 AM (11 years ago)
Author:
Eric Lowry
Message:

Version 1.4

Location:
el-gallery
Files:
23 added
8 edited

Legend:

Unmodified
Added
Removed
  • el-gallery/trunk/css/el-gallery.css

    r1075257 r1115983  
    33Plugin URI: http://ericlowry.fr/
    44Description: An extremely simplistic gallery replacement plugin.
    5 Version: 1.3
     5Version: 1.4
    66Author: Eric Lowry
    77Author URI: http://ericlowry.fr/
     
    7575    height:250px;
    7676    margin:10px 0;
     77    transition:height .3s;
    7778}
    7879figure.el_gallery .el_gallery-slideshow_wrapper .el_loading {
     
    129130    top:0;
    130131    left:0;
    131     width:100%;
     132    margin: 0;
     133    padding: 0;
     134    width: 100%;
     135    transition: opacity 0s;
    132136}
    133137
  • el-gallery/trunk/css/el-gallery_admin.css

    r1075257 r1115983  
    33Plugin URI: http://ericlowry.fr/
    44Description: An extremely simplistic gallery replacement plugin.
    5 Version: 1.3
     5Version: 1.4
    66Author: Eric Lowry
    77Author URI: http://ericlowry.fr/
  • el-gallery/trunk/css/el-icons.css

    r1075257 r1115983  
    33Plugin URI: http://ericlowry.fr/
    44Description: An extremely simplistic gallery replacement plugin.
    5 Version: 1.3
     5Version: 1.4
    66Author: Eric Lowry
    77Author URI: http://ericlowry.fr/
  • el-gallery/trunk/el-gallery-admin.php

    r1075257 r1115983  
    33Plugin: EL-Gallery
    44Description: An extremely simplistic gallery replacement plugin.
    5 Version: 1.3
     5Version: 1.4
    66Author: Eric Lowry
    77Author URI: http://ericlowry.fr/
  • el-gallery/trunk/el-gallery.php

    r1075257 r1115983  
    44Plugin URI: http://wordpress.org/plugins/el-gallery/
    55Description: An extremely simplistic gallery replacement plugin.
    6 Version: 1.3
     6Version: 1.4
    77Author: Eric Lowry
    88Author URI: http://ericlowry.fr/
     
    4646            'captiontag' => 'dd',
    4747            'columns' => 3,
    48             'size' => 'full',
     48            'size' => 'large',
    4949            'link' => 'file'
    5050        ), $atts));
     
    155155        $image_alt = get_post_meta($image->ID,'_wp_attachment_image_alt', true);
    156156
    157         $url_info = wp_get_attachment_image_src($image->ID, $size);
     157        if ( $size == 'large' ) {
     158            $url_info = wp_get_attachment_image_src($image->ID, 'full');
     159        } else {
     160            $url_info = wp_get_attachment_image_src($image->ID, $size);
     161        }
    158162
    159163        // We render the gallery
  • el-gallery/trunk/js/el-gallery.js

    r1075257 r1115983  
    22Plugin Name: EL-Gallery
    33Description: An extremely simplistic gallery replacement plugin.
    4 Version: 1.3
     4Version: 1.4
    55Author: Eric Lowry
    66Author URI: http://ericlowry.fr/
  • el-gallery/trunk/js/el-gallery_admin.js

    r1075257 r1115983  
    22Plugin Name: EL-Gallery
    33Description: An extremely simplistic gallery replacement plugin.
    4 Version: 1.3
     4Version: 1.4
    55Author: Eric Lowry
    66Author URI: http://ericlowry.fr/
  • el-gallery/trunk/readme.txt

    r1075257 r1115983  
    88Author: Eric Lowry
    99Requires at least: 3.5
    10 Tested up to: 4.0.1
    11 Stable tag: 1.3
    12 Version: 1.3
     10Tested up to: 4.1.1
     11Stable tag: 1.4
     12Version: 1.4
    1313License: GPLv2
    1414License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6969
    7070== Changelog ==
     71
     72= Version 1.4 =
     73* Default image size is set to large. Use [shortcode settings](http://codex.wordpress.org/Gallery_Shortcode#Options "Wordpress Shortcode Options") to modify the image size for each gallery.
     74* Smooth height transitions have been added (delays still need tweaking).
     75* Various display bugs have been fixed.
    7176
    7277= Version 1.3 =
Note: See TracChangeset for help on using the changeset viewer.