Plugin Directory

Changeset 3341414


Ignore:
Timestamp:
08/08/2025 06:30:40 AM (8 months ago)
Author:
d3395
Message:

tagged version 4.0.4

Location:
cryptx
Files:
4 deleted
3 edited
12 copied

Legend:

Unmodified
Added
Removed
  • cryptx/tags/4.0.4/classes/CryptX.php

    r3341405 r3341414  
    10751075    public function loadJavascriptFiles(): void
    10761076    {
    1077         wp_enqueue_script('cryptx-js', CRYPTX_DIR_URL . 'js/cryptx.min.js', false, false, self::$cryptXOptions['load_java']);
     1077        wp_enqueue_script('cryptx-js', CRYPTX_DIR_URL . 'js/cryptx.min.js', false, CRYPTX_VERSION, self::$cryptXOptions['load_java']);
    10781078        wp_localize_script('cryptx-js', 'cryptxConfig', SecureEncryption::getJavaScriptConfig());
    1079         wp_enqueue_style('cryptx-styles', CRYPTX_DIR_URL . 'css/cryptx.css');
     1079        wp_enqueue_style('cryptx-styles', CRYPTX_DIR_URL . 'css/cryptx.css', false, CRYPTX_VERSION);;
    10801080    }
    10811081
  • cryptx/tags/4.0.4/cryptx.php

    r3341405 r3341414  
    44 * Plugin URI:        https://wordpress.org/plugins/cryptx/
    55 * Description:       CryptX encrypts email addresses in your posts, pages, comments, and text widgets to protect them from spam bots while keeping them readable for your visitors.
    6  * Version:           4.0.3
     6 * Version:           4.0.4
    77 * Requires at least: 6.7
    88 * Tested up to:      6.8
     
    4040
    4141// Plugin constants
    42 define('CRYPTX_VERSION', '4.0.3');
     42define('CRYPTX_VERSION', '4.0.4');
    4343define('CRYPTX_PLUGIN_FILE', __FILE__);
    4444define('CRYPTX_PLUGIN_BASENAME', plugin_basename(__FILE__));
  • cryptx/tags/4.0.4/readme.txt

    r3341405 r3341414  
    55Requires at least: 6.7
    66Tested up to: 6.8
    7 Stable tag: 4.0.3
     7Stable tag: 4.0.4
    88Requires PHP: 8.1
    99License: GPLv2 or later
     
    6969
    7070== Changelog ==
     71= 4.0.4 =
     72* fixed issue of not loading new javascript if client has cached an old version.
    7173= 4.0.3 =
    7274* added option for PBKDF2 iterations to choose between more security or less performance impact (Thx to Alexander for hinting me)
  • cryptx/trunk/classes/CryptX.php

    r3341405 r3341414  
    10751075    public function loadJavascriptFiles(): void
    10761076    {
    1077         wp_enqueue_script('cryptx-js', CRYPTX_DIR_URL . 'js/cryptx.min.js', false, false, self::$cryptXOptions['load_java']);
     1077        wp_enqueue_script('cryptx-js', CRYPTX_DIR_URL . 'js/cryptx.min.js', false, CRYPTX_VERSION, self::$cryptXOptions['load_java']);
    10781078        wp_localize_script('cryptx-js', 'cryptxConfig', SecureEncryption::getJavaScriptConfig());
    1079         wp_enqueue_style('cryptx-styles', CRYPTX_DIR_URL . 'css/cryptx.css');
     1079        wp_enqueue_style('cryptx-styles', CRYPTX_DIR_URL . 'css/cryptx.css', false, CRYPTX_VERSION);;
    10801080    }
    10811081
  • cryptx/trunk/cryptx.php

    r3341405 r3341414  
    44 * Plugin URI:        https://wordpress.org/plugins/cryptx/
    55 * Description:       CryptX encrypts email addresses in your posts, pages, comments, and text widgets to protect them from spam bots while keeping them readable for your visitors.
    6  * Version:           4.0.3
     6 * Version:           4.0.4
    77 * Requires at least: 6.7
    88 * Tested up to:      6.8
     
    4040
    4141// Plugin constants
    42 define('CRYPTX_VERSION', '4.0.3');
     42define('CRYPTX_VERSION', '4.0.4');
    4343define('CRYPTX_PLUGIN_FILE', __FILE__);
    4444define('CRYPTX_PLUGIN_BASENAME', plugin_basename(__FILE__));
  • cryptx/trunk/readme.txt

    r3341405 r3341414  
    55Requires at least: 6.7
    66Tested up to: 6.8
    7 Stable tag: 4.0.3
     7Stable tag: 4.0.4
    88Requires PHP: 8.1
    99License: GPLv2 or later
     
    6969
    7070== Changelog ==
     71= 4.0.4 =
     72* fixed issue of not loading new javascript if client has cached an old version.
    7173= 4.0.3 =
    7274* added option for PBKDF2 iterations to choose between more security or less performance impact (Thx to Alexander for hinting me)
Note: See TracChangeset for help on using the changeset viewer.