Plugin Directory

Changeset 715745


Ignore:
Timestamp:
05/20/2013 08:07:50 PM (13 years ago)
Author:
szaleq
Message:

uploading version 0.4.3

Location:
easy-watermark
Files:
4 edited
15 copied

Legend:

Unmodified
Added
Removed
  • easy-watermark/tags/0.4.3/index.php

    r714327 r715745  
    33Plugin Name:    Easy Watermark
    44Description:    This plugin can automatically add image and text watermark to pictures as they are uploaded to wordpress media library. You can also watermark existing images manually (all at once or an every single image). Watermark image can be a png, gif (alpha channel supported in both cases) or jpg. It's also possibile to set watermark opacity (doesn't apply to png with alpha channel). For text watermark you can select font, set color, size, angel and opacity.
    5 Version:    0.4.2
     5Version:    0.4.3
    66Author:     Wojtek Szałkiewicz
    77Author URI: http://szalkiewicz.pl/
  • easy-watermark/tags/0.4.3/lib/EWPlugin.php

    r714341 r715745  
    2424     * @var string  plugin version
    2525     */
    26     protected static $version = '0.4.2';
     26    protected static $version = '0.4.3';
    2727
    2828    /**
  • easy-watermark/tags/0.4.3/readme.txt

    r714327 r715745  
    55Requires at least: 3.3
    66Tested up to: 3.5.1
    7 Stable tag: 0.4.2
     7Stable tag: 0.4.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7979== Changelog ==
    8080
     81= 0.4.3 =
     82* added support for additional image sizes registered by some templates or plugins (e.g. 'post-thumbnail')
     83
    8184= 0.4.2 =
    8285* added possibility to define jpeg quality
  • easy-watermark/tags/0.4.3/views/settings-form-general.php

    r714327 r715745  
    1616<label for="image-size-large"><input id="image-size-large" type="checkbox" name="easy-watermark-settings-general[image_sizes][]" value="large" <?php checked('1', in_array('large', $image_sizes)); ?> /> Large</label><br/>
    1717<label for="image-size-full"><input id="image-size-full" type="checkbox" name="easy-watermark-settings-general[image_sizes][]" value="full" <?php checked('1', in_array('full', $image_sizes)); ?> /> Fullsize</label>
     18<?php global $_wp_additional_image_sizes;
     19if(is_array($_wp_additional_image_sizes)) :
     20foreach($_wp_additional_image_sizes as $sizeName => $size) : ?>
     21<br/><label for="image-size-<?php echo $sizeName; ?>"><input id="image-size-<?php echo $sizeName; ?>" type="checkbox" name="easy-watermark-settings-general[image_sizes][]" value="<?php echo $sizeName; ?>" <?php checked('1', in_array($sizeName, $image_sizes)); ?> /> <?php echo $sizeName; ?></label>
     22<?php endforeach; endif; ?>
    1823<p class="description"><?php _e('Select image sizes which should be watermarked', 'easy-watermark'); ?></p></td>
    1924                </tr>
  • easy-watermark/trunk/index.php

    r714327 r715745  
    33Plugin Name:    Easy Watermark
    44Description:    This plugin can automatically add image and text watermark to pictures as they are uploaded to wordpress media library. You can also watermark existing images manually (all at once or an every single image). Watermark image can be a png, gif (alpha channel supported in both cases) or jpg. It's also possibile to set watermark opacity (doesn't apply to png with alpha channel). For text watermark you can select font, set color, size, angel and opacity.
    5 Version:    0.4.2
     5Version:    0.4.3
    66Author:     Wojtek Szałkiewicz
    77Author URI: http://szalkiewicz.pl/
  • easy-watermark/trunk/lib/EWPlugin.php

    r714341 r715745  
    2424     * @var string  plugin version
    2525     */
    26     protected static $version = '0.4.2';
     26    protected static $version = '0.4.3';
    2727
    2828    /**
  • easy-watermark/trunk/readme.txt

    r714327 r715745  
    55Requires at least: 3.3
    66Tested up to: 3.5.1
    7 Stable tag: 0.4.2
     7Stable tag: 0.4.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7979== Changelog ==
    8080
     81= 0.4.3 =
     82* added support for additional image sizes registered by some templates or plugins (e.g. 'post-thumbnail')
     83
    8184= 0.4.2 =
    8285* added possibility to define jpeg quality
  • easy-watermark/trunk/views/settings-form-general.php

    r714327 r715745  
    1616<label for="image-size-large"><input id="image-size-large" type="checkbox" name="easy-watermark-settings-general[image_sizes][]" value="large" <?php checked('1', in_array('large', $image_sizes)); ?> /> Large</label><br/>
    1717<label for="image-size-full"><input id="image-size-full" type="checkbox" name="easy-watermark-settings-general[image_sizes][]" value="full" <?php checked('1', in_array('full', $image_sizes)); ?> /> Fullsize</label>
     18<?php global $_wp_additional_image_sizes;
     19if(is_array($_wp_additional_image_sizes)) :
     20foreach($_wp_additional_image_sizes as $sizeName => $size) : ?>
     21<br/><label for="image-size-<?php echo $sizeName; ?>"><input id="image-size-<?php echo $sizeName; ?>" type="checkbox" name="easy-watermark-settings-general[image_sizes][]" value="<?php echo $sizeName; ?>" <?php checked('1', in_array($sizeName, $image_sizes)); ?> /> <?php echo $sizeName; ?></label>
     22<?php endforeach; endif; ?>
    1823<p class="description"><?php _e('Select image sizes which should be watermarked', 'easy-watermark'); ?></p></td>
    1924                </tr>
Note: See TracChangeset for help on using the changeset viewer.