Plugin Directory

Changeset 3288223


Ignore:
Timestamp:
05/06/2025 07:24:23 AM (11 months ago)
Author:
twkmedia
Message:

Remove jQuery dependency

Location:
image-protection
Files:
6 added
5 edited

Legend:

Unmodified
Added
Removed
  • image-protection/trunk/CHANGELOG.md

    r3286295 r3288223  
    55The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
    66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     7
     8## [1.0.3] - 2025-05-06
     9
     10### Removed
     11- jQuery dependency
    712
    813## [1.0.2] - 2025-05-02
  • image-protection/trunk/README.md

    r3286295 r3288223  
    55**Requires at least:** 5.0 
    66**Tested up to:** 6.8
    7 **Stable tag:** 1.0.2
     7**Stable tag:** 1.0.3
    88**Requires PHP:** 7.4 
    99**License:** GPLv2 or later 
  • image-protection/trunk/image-protection.php

    r3286295 r3288223  
    44 * Plugin URI: https://wordpress.org/plugins/image-protection
    55 * Description: Protects images from being copied, saved, or screenshot.
    6  * Version: 1.0.2
     6 * Version: 1.0.3
    77 * Requires at least: 5.0
    88 * Requires PHP: 7.4
     
    2424 * Define plugin constants.
    2525 */
    26 define( 'IMAGE_PROTECTION_VERSION', '1.0.2' );
     26define( 'IMAGE_PROTECTION_VERSION', '1.0.3' );
    2727define( 'IMAGE_PROTECTION_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
    2828define( 'IMAGE_PROTECTION_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
  • image-protection/trunk/protection.js

    r3286295 r3288223  
    1 (function($) {
     1(function() {
    22    'use strict';
    33
     
    266266        new ImageProtection();
    267267    });
    268 
    269 })(jQuery);
    270 
    271 
     268})();
  • image-protection/trunk/readme.txt

    r3286295 r3288223  
    44Requires at least: 5.0
    55Tested up to: 6.8
    6 Stable tag: 1.0.2
     6Stable tag: 1.0.3
    77Requires PHP: 7.4
    88License: GPLv2 or later
Note: See TracChangeset for help on using the changeset viewer.