Plugin Directory

Changeset 3081219


Ignore:
Timestamp:
05/04/2024 10:35:05 AM (23 months ago)
Author:
kiranpotphode
Message:

Version 1.0.3

Location:
easy-image-filters
Files:
3 edited
23 copied

Legend:

Unmodified
Added
Removed
  • easy-image-filters/tags/1.0.3/README.txt

    r2909042 r3081219  
    33Tags: media library, image, filter, effects, colorize, hue, sepia, manipulation, editing, html5,canvas, browser, brightness, contrast, vibrance, noise, presets
    44Requires at least: 4.0
    5 Tested up to: 6.2
    6 Stable tag: 1.0.2
     5Tested up to: 6.5.2
     6Stable tag: 1.0.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4545== Changelog ==
    4646
     47= 1.0.3 =
     48* PHPCS Fixes.
     49
    4750= 1.0.2 =
    4851* Fix image generation.
  • easy-image-filters/tags/1.0.3/easy-image-filters.php

    r2909042 r3081219  
    1717 * Plugin URI:        https://wordpress.org/plugins/easy-image-filters
    1818 * Description:       Add cool filters and effects to images without leaving site admin screen. Save new image without loosing original.
    19  * Version:           1.0.2
     19 * Version:           1.0.3
    2020 * Author:            Kiran Potphode
    2121 * License:           GPL-2.0+
  • easy-image-filters/tags/1.0.3/public/class-easy-image-filters-public.php

    r2909042 r3081219  
    5151
    5252        $this->plugin_name = $plugin_name;
    53         $this->version = $version;
    54 
     53        $this->version     = $version;
    5554    }
    5655
     
    7574
    7675        wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/easy-image-filters-public.css', array(), $this->version, 'all' );
    77 
    7876    }
    7977
     
    9896
    9997        wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/easy-image-filters-public.js', array( 'jquery' ), $this->version, false );
    100 
    10198    }
    102 
    10399}
  • easy-image-filters/trunk/README.txt

    r2909042 r3081219  
    33Tags: media library, image, filter, effects, colorize, hue, sepia, manipulation, editing, html5,canvas, browser, brightness, contrast, vibrance, noise, presets
    44Requires at least: 4.0
    5 Tested up to: 6.2
    6 Stable tag: 1.0.2
     5Tested up to: 6.5.2
     6Stable tag: 1.0.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4545== Changelog ==
    4646
     47= 1.0.3 =
     48* PHPCS Fixes.
     49
    4750= 1.0.2 =
    4851* Fix image generation.
  • easy-image-filters/trunk/easy-image-filters.php

    r2909042 r3081219  
    1717 * Plugin URI:        https://wordpress.org/plugins/easy-image-filters
    1818 * Description:       Add cool filters and effects to images without leaving site admin screen. Save new image without loosing original.
    19  * Version:           1.0.2
     19 * Version:           1.0.3
    2020 * Author:            Kiran Potphode
    2121 * License:           GPL-2.0+
  • easy-image-filters/trunk/public/class-easy-image-filters-public.php

    r2909042 r3081219  
    5151
    5252        $this->plugin_name = $plugin_name;
    53         $this->version = $version;
    54 
     53        $this->version     = $version;
    5554    }
    5655
     
    7574
    7675        wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/easy-image-filters-public.css', array(), $this->version, 'all' );
    77 
    7876    }
    7977
     
    9896
    9997        wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/easy-image-filters-public.js', array( 'jquery' ), $this->version, false );
    100 
    10198    }
    102 
    10399}
Note: See TracChangeset for help on using the changeset viewer.