Plugin Directory

Changeset 1972514


Ignore:
Timestamp:
11/11/2018 04:10:20 PM (7 years ago)
Author:
szaleq
Message:

adding version 0.7.0

Location:
easy-watermark
Files:
454 added
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • easy-watermark/tags/0.7.0/classes/class-ew-plugin-core.php

    r958201 r1972514  
    33 * @copyright:  Wojtek Szałkiewicz
    44 * @license:    GPLv2 or later
    5  * 
     5 *
    66 * This class is a base class for wordpress plugins.
    77 * It's a part of package in which you found it.
     
    2424     * @var string  plugin version
    2525     */
    26     protected static $version = '0.6.0';
     26    protected static $version = '0.7.0';
    2727
    2828    /**
  • easy-watermark/tags/0.7.0/classes/class-ew-plugin.php

    r1907305 r1972514  
    108108            EasyWatermark::ERROR_UNKNOWN                    => __('Could not apply watermark.', 'easy-watermark')
    109109        );
     110
     111        // Init Freemius.
     112        ew_fs();
     113
     114        // Signal that SDK was initiated.
     115        do_action('ew_fs_loaded');
    110116    }
    111117
  • easy-watermark/tags/0.7.0/index.php

    r1907305 r1972514  
    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.6.1
    6 Author:     Wojtek Szałkiewicz
    7 Author URI: http://szalkiewicz.pl/
     5Version:        0.7.0
     6Author:     BracketSpace
     7Author URI: https://bracketspace.com/
    88License:        GPLv2 or later
    99License URI:    http://www.gnu.org/licenses/gpl-2.0.html
     
    2626require_once EWCLASSES . EWDS . 'class-ew-settings.php';
    2727require_once EWLIB . EWDS . 'EasyWatermark.php';
     28require_once EWBASE . EWDS . 'freemius.php';
    2829
    2930// Initiate plugin
  • easy-watermark/tags/0.7.0/readme.txt

    r1907305 r1972514  
    11=== Easy Watermark ===
    2 Contributors: szaleq
     2Contributors: szaleq, bracketspace
    33Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=wojtek%40szalkiewicz%2epl&lc=GB&item_name=Easy%20Watermark%20Wordpress%20Plugin&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted
    44Tags: watermark, image, picture, photo, media, gallery, signature, transparent, upload, admin
    55Requires at least: 3.8
    6 Tested up to: 4.9.7
    7 Stable tag: 0.6.1
     6Tested up to: 4.9.8
     7Stable tag: 0.7.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9393== Changelog ==
    9494
     95= 0.7.0 =
     96* Freemius integration
     97
    9598= 0.6.1 =
    9699* Minor adjustments for newest WordPress version
  • easy-watermark/trunk/classes/class-ew-plugin-core.php

    r958201 r1972514  
    33 * @copyright:  Wojtek Szałkiewicz
    44 * @license:    GPLv2 or later
    5  * 
     5 *
    66 * This class is a base class for wordpress plugins.
    77 * It's a part of package in which you found it.
     
    2424     * @var string  plugin version
    2525     */
    26     protected static $version = '0.6.0';
     26    protected static $version = '0.7.0';
    2727
    2828    /**
  • easy-watermark/trunk/classes/class-ew-plugin.php

    r1907305 r1972514  
    108108            EasyWatermark::ERROR_UNKNOWN                    => __('Could not apply watermark.', 'easy-watermark')
    109109        );
     110
     111        // Init Freemius.
     112        ew_fs();
     113
     114        // Signal that SDK was initiated.
     115        do_action('ew_fs_loaded');
    110116    }
    111117
  • easy-watermark/trunk/index.php

    r1907305 r1972514  
    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.6.1
    6 Author:     Wojtek Szałkiewicz
    7 Author URI: http://szalkiewicz.pl/
     5Version:        0.7.0
     6Author:     BracketSpace
     7Author URI: https://bracketspace.com/
    88License:        GPLv2 or later
    99License URI:    http://www.gnu.org/licenses/gpl-2.0.html
     
    2626require_once EWCLASSES . EWDS . 'class-ew-settings.php';
    2727require_once EWLIB . EWDS . 'EasyWatermark.php';
     28require_once EWBASE . EWDS . 'freemius.php';
    2829
    2930// Initiate plugin
  • easy-watermark/trunk/readme.txt

    r1907305 r1972514  
    11=== Easy Watermark ===
    2 Contributors: szaleq
     2Contributors: szaleq, bracketspace
    33Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=wojtek%40szalkiewicz%2epl&lc=GB&item_name=Easy%20Watermark%20Wordpress%20Plugin&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted
    44Tags: watermark, image, picture, photo, media, gallery, signature, transparent, upload, admin
    55Requires at least: 3.8
    6 Tested up to: 4.9.7
    7 Stable tag: 0.6.1
     6Tested up to: 4.9.8
     7Stable tag: 0.7.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9393== Changelog ==
    9494
     95= 0.7.0 =
     96* Freemius integration
     97
    9598= 0.6.1 =
    9699* Minor adjustments for newest WordPress version
Note: See TracChangeset for help on using the changeset viewer.