Changeset 30890


Ignore:
Timestamp:
Jan 13, 2015, 6:35:11 AM (9 years ago)
Author:
SergeD
Message:

version 1.0.14 - please refer to changelog for more details

Location:
extensions/GDThumb
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • extensions/GDThumb/changelog.txt

    r30485 r30890  
    2626
    2727=== Changelog ===
     28version 1.0.14
     29+ Added integration with VideoJS plugin to allow display of "film" icon in square mode
     30- Fixed issue with incorrect callback when "RV Thumb Scroller" plugin is used
     31
    2832version 1.0.13
    2933+ ADMIN: Added ChangeLog link in toolbar
  • extensions/GDThumb/css/gdthumb.css

    r30225 r30890  
    4545ul.thumbnails .gdthumb .overlay-ex.thumbLegend .thumbInfo .glyphicon-th-large { padding-top: 2px; font-size: 18px; }
    4646ul.thumbnails .gdthumb .overlay-ex.thumbLegend .thumbInfo .glyphicon-picture  { padding-top: 1px; font-size: 18px; }
     47ul.thumbnails .gdthumb .overlay-ex.thumbLegend .thumbInfo .glyphicon-film     { padding-top: 3px; font-size: 18px; }
    4748
    4849ul.thumbnails.nowrap .gdthumb .thumbLegend { white-space: nowrap; overflow: hidden; height: auto; }
  • extensions/GDThumb/main.inc.php

    r30485 r30890  
    22/*
    33Plugin Name: gdThumb
    4 Version: 1.0.13
     4Version: 1.0.14
    55Description: Display thumbnails as patchwork
    66Plugin URI: http://piwigo.org/ext/extension_view.php?eid=771
     
    1919// | Plugin constants                                               |
    2020// +-----------------------------------------------------------------------+
    21 define('GDTHUMB_VERSION', '1.0.13');
     21define('GDTHUMB_VERSION', '1.0.14');
    2222define('GDTHUMB_ID',      basename(dirname(__FILE__)));
    2323define('GDTHEME_PATH' ,   PHPWG_THEMES_PATH . 'greydragon/');
     
    3939if (isset($_GET['rvts'])):
    4040  $conf['gdThumb']['big_thumb'] = false;
    41   add_event_handler('loc_end_index_thumbnails', 'process_GDThumb', 50, 2);
     41  add_event_handler('loc_end_index_thumbnails', 'GDThumb_process_thumb', 50, 2);
    4242endif;
    4343
  • extensions/GDThumb/template/gdthumb_thumb.tpl

    r30485 r30890  
    2727      <span class="thumbInfo">
    2828        <span class="hit-num">{$thumbnail.hit}</span>
    29         <span class="glyphicon glyphicon-picture"></span>
     29        <span class="glyphicon {if $derivative->is_cached()}{if $derivative->get_url()|strstr:"/piwigo-videojs/"}glyphicon-film{else}glyphicon-picture{/if}{else}glyphicon-picture{/if}"></span>
    3030        {if $thumbnail.rating_score > 0}
    3131        <span class="rank-num glyphicon glyphicon-star">{$thumbnail.rating_score|string_format:"%d"}</span>
Note: See TracChangeset for help on using the changeset viewer.