Changeset 715745
- Timestamp:
- 05/20/2013 08:07:50 PM (13 years ago)
- Location:
- easy-watermark
- Files:
-
- 4 edited
- 15 copied
-
tags/0.4.3 (copied) (copied from easy-watermark/trunk)
-
tags/0.4.3/index.php (copied) (copied from easy-watermark/trunk/index.php) (1 diff)
-
tags/0.4.3/languages/easy-watermark-fr_FR.mo (copied) (copied from easy-watermark/trunk/languages/easy-watermark-fr_FR.mo)
-
tags/0.4.3/languages/easy-watermark-fr_FR.po (copied) (copied from easy-watermark/trunk/languages/easy-watermark-fr_FR.po)
-
tags/0.4.3/languages/easy-watermark-pl_PL.mo (copied) (copied from easy-watermark/trunk/languages/easy-watermark-pl_PL.mo)
-
tags/0.4.3/languages/easy-watermark-pl_PL.po (copied) (copied from easy-watermark/trunk/languages/easy-watermark-pl_PL.po)
-
tags/0.4.3/languages/easy-watermark.pot (copied) (copied from easy-watermark/trunk/languages/easy-watermark.pot)
-
tags/0.4.3/lib/EWPlugin.php (copied) (copied from easy-watermark/trunk/lib/EWPlugin.php) (1 diff)
-
tags/0.4.3/lib/EasyWatermark.php (copied) (copied from easy-watermark/trunk/lib/EasyWatermark.php)
-
tags/0.4.3/lib/EasyWatermarkPlugin.php (copied) (copied from easy-watermark/trunk/lib/EasyWatermarkPlugin.php)
-
tags/0.4.3/lib/EasyWatermarkSettings.php (copied) (copied from easy-watermark/trunk/lib/EasyWatermarkSettings.php)
-
tags/0.4.3/readme.txt (copied) (copied from easy-watermark/trunk/readme.txt) (2 diffs)
-
tags/0.4.3/views/about.php (copied) (copied from easy-watermark/trunk/views/about.php)
-
tags/0.4.3/views/donation.php (copied) (copied from easy-watermark/trunk/views/donation.php)
-
tags/0.4.3/views/settings-form-general.php (copied) (copied from easy-watermark/trunk/views/settings-form-general.php) (1 diff)
-
trunk/index.php (modified) (1 diff)
-
trunk/lib/EWPlugin.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/views/settings-form-general.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
easy-watermark/tags/0.4.3/index.php
r714327 r715745 3 3 Plugin Name: Easy Watermark 4 4 Description: 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. 25 Version: 0.4.3 6 6 Author: Wojtek Szałkiewicz 7 7 Author URI: http://szalkiewicz.pl/ -
easy-watermark/tags/0.4.3/lib/EWPlugin.php
r714341 r715745 24 24 * @var string plugin version 25 25 */ 26 protected static $version = '0.4. 2';26 protected static $version = '0.4.3'; 27 27 28 28 /** -
easy-watermark/tags/0.4.3/readme.txt
r714327 r715745 5 5 Requires at least: 3.3 6 6 Tested up to: 3.5.1 7 Stable tag: 0.4. 27 Stable tag: 0.4.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 79 79 == Changelog == 80 80 81 = 0.4.3 = 82 * added support for additional image sizes registered by some templates or plugins (e.g. 'post-thumbnail') 83 81 84 = 0.4.2 = 82 85 * added possibility to define jpeg quality -
easy-watermark/tags/0.4.3/views/settings-form-general.php
r714327 r715745 16 16 <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/> 17 17 <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; 19 if(is_array($_wp_additional_image_sizes)) : 20 foreach($_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; ?> 18 23 <p class="description"><?php _e('Select image sizes which should be watermarked', 'easy-watermark'); ?></p></td> 19 24 </tr> -
easy-watermark/trunk/index.php
r714327 r715745 3 3 Plugin Name: Easy Watermark 4 4 Description: 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. 25 Version: 0.4.3 6 6 Author: Wojtek Szałkiewicz 7 7 Author URI: http://szalkiewicz.pl/ -
easy-watermark/trunk/lib/EWPlugin.php
r714341 r715745 24 24 * @var string plugin version 25 25 */ 26 protected static $version = '0.4. 2';26 protected static $version = '0.4.3'; 27 27 28 28 /** -
easy-watermark/trunk/readme.txt
r714327 r715745 5 5 Requires at least: 3.3 6 6 Tested up to: 3.5.1 7 Stable tag: 0.4. 27 Stable tag: 0.4.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 79 79 == Changelog == 80 80 81 = 0.4.3 = 82 * added support for additional image sizes registered by some templates or plugins (e.g. 'post-thumbnail') 83 81 84 = 0.4.2 = 82 85 * added possibility to define jpeg quality -
easy-watermark/trunk/views/settings-form-general.php
r714327 r715745 16 16 <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/> 17 17 <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; 19 if(is_array($_wp_additional_image_sizes)) : 20 foreach($_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; ?> 18 23 <p class="description"><?php _e('Select image sizes which should be watermarked', 'easy-watermark'); ?></p></td> 19 24 </tr>
Note: See TracChangeset
for help on using the changeset viewer.