Changeset 32638


Ignore:
Timestamp:
Nov 5, 2021, 8:29:26 AM (2 years ago)
Author:
SergeD
Message:

version 1.0.23 - see changelog for details

Location:
extensions/GDThumb
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • extensions/GDThumb/changelog.txt

    r32032 r32638  
    1616Copyright (C) 2009-2014 Serguei Dosyukov
    1717
    18 Compatible: PW 2.6, 2.7, 2.8, 2.9, 2.10
     18Compatible: PW 2.6, 2.7, 2.8, 2.9, 2.10, 12.x
    1919Minimum requirement: PW 2.6.3
    2020
     
    2626
    2727=== Changelog ===
     28version 1.0.23
     29+ Support for PIWIGO 12 verified
     30+ ADMIN: buttons shifted to the left
     31+ Added safety wrappers for variables in some templates as required by new SMARTY engine
     32
    2833version 1.0.22
    2934- Fix for tile crop - see https://piwigo.org/forum/viewtopic.php?pid=168141#p168141
  • extensions/GDThumb/css/admin.css

    r30485 r32638  
    66
    77#cachedelete, #cachebuild { width: auto; }
     8
     9.admin_buttons { text-align: left; }
    810
    911.content ul { list-style-type: none; }
  • extensions/GDThumb/main.inc.php

    r32032 r32638  
    22/*
    33Plugin Name: gdThumb
    4 Version: 1.0.22
     4Version: 1.0.23
    55Description: Apply Masonry style to album or image thumbs
    66Plugin URI: http://piwigo.org/ext/extension_view.php?eid=771
    77Author: Serge Dosyukov
    88Author URI: http://blog.dragonsoft.us
     9Has Settings: true
    910*/
    1011// Original work by P@t - GTHumb+
     
    1920// | Plugin constants                                               |
    2021// +-----------------------------------------------------------------------+
    21 define('GDTHUMB_VERSION', '1.0.22');
     22define('GDTHUMB_VERSION', '1.0.23');
    2223define('GDTHUMB_ID',      basename(dirname(__FILE__)));
    2324define('GDTHUMB_PATH' ,   PHPWG_PLUGINS_PATH . GDTHUMB_ID . '/');
  • extensions/GDThumb/template/admin.tpl

    r32029 r32638  
    1919    <li>
    2020      <select id="direction" name="direction" disabled>
    21         <option {if $DIRECTION == 'horizontal'}selected="selected"{/if} value="horizontal">{'Horizontal (Default)'|@translate}</option>
    22         {* <option {if $DIRECTION == 'vertical'}selected="selected"{/if} value="vertical">{'Vertical'|@translate}</option> *}
     21        <option {if isset($DIRECTION) and ($DIRECTION == 'horizontal')}selected="selected"{/if} value="horizontal">{'Horizontal (Default)'|@translate}</option>
     22        {* <option {if isset($DIRECTION) and ($DIRECTION == 'vertical')}selected="selected"{/if} value="vertical">{'Vertical'|@translate}</option> *}
    2323      </select>
    2424      <label for="direction">{'Masonry Type'|@translate}</label>
     
    8989</fieldset>
    9090
    91 <p>
     91<p class="admin_buttons">
    9292  <input type="hidden" name="pwg_token" value="{$PWG_TOKEN}">
    9393  <input type="submit" name="submit" value="{'Submit'|@translate}">
Note: See TracChangeset for help on using the changeset viewer.