Plugin Directory

Changeset 3340732


Ignore:
Timestamp:
08/07/2025 04:59:47 AM (8 months ago)
Author:
d3395
Message:

tagged version 4.0.2

Location:
cryptx
Files:
4 deleted
7 edited
5 copied

Legend:

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

    r3340410 r3340732  
    101101                // Add autolink filters for non-widget filters if autolink is enabled
    102102                if ($this->config->isAutolinkEnabled()) {
    103                     $this->addAutoLinkFilters($filter, 10);
     103                    $this->addAutoLinkFilters($filter, 11);
    104104                }
    105105                $this->addOtherFilters($filter);
     
    392392
    393393        foreach ($widgetFilters as $widgetFilter) {
    394             $this->addAutoLinkFilters($widgetFilter, 10);
     394            $this->addAutoLinkFilters($widgetFilter, 11);
    395395            $this->addOtherFilters($widgetFilter);
    396396        }
  • cryptx/tags/4.0.2/cryptx.php

    r3340410 r3340732  
    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.1
     6 * Version:           4.0.2
    77 * Requires at least: 6.7
    88 * Tested up to:      6.8
  • cryptx/tags/4.0.2/readme.txt

    r3340410 r3340732  
    55Requires at least: 6.7
    66Tested up to: 6.8
    7 Stable tag: 4.0.1
     7Stable tag: 4.0.2
    88Requires PHP: 8.1
    99License: GPLv2 or later
     
    5656= Can I exclude certain email addresses from encryption? =
    5757
    58 Yes, you can use the whitelist feature to exclude specific domains or email addresses from encryption.
     58Not directly; currently, specific email addresses cannot be excluded. It is possible to add individual posts/pages to the exclusion list using their ID. These pages/posts will then not be processed by CryptX.
    5959
    6060= Does it work with contact forms? =
     
    6969
    7070== Changelog ==
     71= 4.0.2 =
     72* minor fix: changed the priority from the auto link filter back to 11 from 10 (Thx to Alexander: https://wordpress.org/support/topic/4-0-0-breaks-cryptx-in-custom-shortcode-output/)
    7173= 4.0.1 =
    7274* The "encryptx" function was mistakenly removed during code cleanup. The function has now been added back. (Thx to Jan: https://wordpress.org/support/topic/version-4-breaks-because-of-undefined-function-encryptx/)
  • cryptx/trunk/classes/CryptX.php

    r3340410 r3340732  
    101101                // Add autolink filters for non-widget filters if autolink is enabled
    102102                if ($this->config->isAutolinkEnabled()) {
    103                     $this->addAutoLinkFilters($filter, 10);
     103                    $this->addAutoLinkFilters($filter, 11);
    104104                }
    105105                $this->addOtherFilters($filter);
     
    392392
    393393        foreach ($widgetFilters as $widgetFilter) {
    394             $this->addAutoLinkFilters($widgetFilter, 10);
     394            $this->addAutoLinkFilters($widgetFilter, 11);
    395395            $this->addOtherFilters($widgetFilter);
    396396        }
  • cryptx/trunk/cryptx.php

    r3340410 r3340732  
    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.1
     6 * Version:           4.0.2
    77 * Requires at least: 6.7
    88 * Tested up to:      6.8
  • cryptx/trunk/readme.txt

    r3340410 r3340732  
    55Requires at least: 6.7
    66Tested up to: 6.8
    7 Stable tag: 4.0.1
     7Stable tag: 4.0.2
    88Requires PHP: 8.1
    99License: GPLv2 or later
     
    5656= Can I exclude certain email addresses from encryption? =
    5757
    58 Yes, you can use the whitelist feature to exclude specific domains or email addresses from encryption.
     58Not directly; currently, specific email addresses cannot be excluded. It is possible to add individual posts/pages to the exclusion list using their ID. These pages/posts will then not be processed by CryptX.
    5959
    6060= Does it work with contact forms? =
     
    6969
    7070== Changelog ==
     71= 4.0.2 =
     72* minor fix: changed the priority from the auto link filter back to 11 from 10 (Thx to Alexander: https://wordpress.org/support/topic/4-0-0-breaks-cryptx-in-custom-shortcode-output/)
    7173= 4.0.1 =
    7274* The "encryptx" function was mistakenly removed during code cleanup. The function has now been added back. (Thx to Jan: https://wordpress.org/support/topic/version-4-breaks-because-of-undefined-function-encryptx/)
Note: See TracChangeset for help on using the changeset viewer.