Changeset 3340732
- Timestamp:
- 08/07/2025 04:59:47 AM (8 months ago)
- Location:
- cryptx
- Files:
-
- 4 deleted
- 7 edited
- 5 copied
-
assets/screenshot-1.png (modified) (previous)
-
assets/screenshot-2.png (modified) (previous)
-
assets/screenshot-3.png (modified) (previous)
-
assets/screenshot-4.png (modified) (previous)
-
tags/4.0.2 (copied) (copied from cryptx/trunk)
-
tags/4.0.2/classes/Admin/PresentationSettingsTab.php (copied) (copied from cryptx/trunk/classes/Admin/PresentationSettingsTab.php)
-
tags/4.0.2/classes/CryptX.php (copied) (copied from cryptx/trunk/classes/CryptX.php) (2 diffs)
-
tags/4.0.2/classes/EmailProcessingConfig.php (deleted)
-
tags/4.0.2/cryptx.php (copied) (copied from cryptx/trunk/cryptx.php) (1 diff)
-
tags/4.0.2/include (deleted)
-
tags/4.0.2/js/cryptx-admin.js (deleted)
-
tags/4.0.2/js/cryptx-admin.min.js (deleted)
-
tags/4.0.2/readme.txt (copied) (copied from cryptx/trunk/readme.txt) (3 diffs)
-
trunk/classes/CryptX.php (modified) (2 diffs)
-
trunk/cryptx.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cryptx/tags/4.0.2/classes/CryptX.php
r3340410 r3340732 101 101 // Add autolink filters for non-widget filters if autolink is enabled 102 102 if ($this->config->isAutolinkEnabled()) { 103 $this->addAutoLinkFilters($filter, 1 0);103 $this->addAutoLinkFilters($filter, 11); 104 104 } 105 105 $this->addOtherFilters($filter); … … 392 392 393 393 foreach ($widgetFilters as $widgetFilter) { 394 $this->addAutoLinkFilters($widgetFilter, 1 0);394 $this->addAutoLinkFilters($widgetFilter, 11); 395 395 $this->addOtherFilters($widgetFilter); 396 396 } -
cryptx/tags/4.0.2/cryptx.php
r3340410 r3340732 4 4 * Plugin URI: https://wordpress.org/plugins/cryptx/ 5 5 * 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. 16 * Version: 4.0.2 7 7 * Requires at least: 6.7 8 8 * Tested up to: 6.8 -
cryptx/tags/4.0.2/readme.txt
r3340410 r3340732 5 5 Requires at least: 6.7 6 6 Tested up to: 6.8 7 Stable tag: 4.0. 17 Stable tag: 4.0.2 8 8 Requires PHP: 8.1 9 9 License: GPLv2 or later … … 56 56 = Can I exclude certain email addresses from encryption? = 57 57 58 Yes, you can use the whitelist feature to exclude specific domains or email addresses from encryption.58 Not 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. 59 59 60 60 = Does it work with contact forms? = … … 69 69 70 70 == 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/) 71 73 = 4.0.1 = 72 74 * 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 101 101 // Add autolink filters for non-widget filters if autolink is enabled 102 102 if ($this->config->isAutolinkEnabled()) { 103 $this->addAutoLinkFilters($filter, 1 0);103 $this->addAutoLinkFilters($filter, 11); 104 104 } 105 105 $this->addOtherFilters($filter); … … 392 392 393 393 foreach ($widgetFilters as $widgetFilter) { 394 $this->addAutoLinkFilters($widgetFilter, 1 0);394 $this->addAutoLinkFilters($widgetFilter, 11); 395 395 $this->addOtherFilters($widgetFilter); 396 396 } -
cryptx/trunk/cryptx.php
r3340410 r3340732 4 4 * Plugin URI: https://wordpress.org/plugins/cryptx/ 5 5 * 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. 16 * Version: 4.0.2 7 7 * Requires at least: 6.7 8 8 * Tested up to: 6.8 -
cryptx/trunk/readme.txt
r3340410 r3340732 5 5 Requires at least: 6.7 6 6 Tested up to: 6.8 7 Stable tag: 4.0. 17 Stable tag: 4.0.2 8 8 Requires PHP: 8.1 9 9 License: GPLv2 or later … … 56 56 = Can I exclude certain email addresses from encryption? = 57 57 58 Yes, you can use the whitelist feature to exclude specific domains or email addresses from encryption.58 Not 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. 59 59 60 60 = Does it work with contact forms? = … … 69 69 70 70 == 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/) 71 73 = 4.0.1 = 72 74 * 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.