Changeset 3302557
- Timestamp:
- 05/28/2025 11:15:44 PM (9 months ago)
- Location:
- mail-cloak
- Files:
-
- 16 added
- 2 edited
-
tags/1.3.2 (added)
-
tags/1.3.2/assets (added)
-
tags/1.3.2/assets/admin-style.css (added)
-
tags/1.3.2/assets/css (added)
-
tags/1.3.2/assets/css/admin.css (added)
-
tags/1.3.2/assets/css/mail-cloak.css (added)
-
tags/1.3.2/assets/img (added)
-
tags/1.3.2/assets/img/title.png (added)
-
tags/1.3.2/assets/js (added)
-
tags/1.3.2/assets/js/admin.js (added)
-
tags/1.3.2/assets/js/mail-cloak.js (added)
-
tags/1.3.2/includes (added)
-
tags/1.3.2/includes/admin-bot-detection.php (added)
-
tags/1.3.2/includes/admin-email-protection.php (added)
-
tags/1.3.2/mail-cloak.php (added)
-
tags/1.3.2/readme.txt (added)
-
trunk/mail-cloak.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mail-cloak/trunk/mail-cloak.php
r3302554 r3302557 4 4 * Plugin URI: https://rizonepress.com/plugins/mail-cloak 5 5 * Description: Protects email addresses from spam bots and scrapers while keeping them visible to real users. 6 * Version: 1.3. 16 * Version: 1.3.2 7 7 * Author: rizonepress 8 8 * Author URI: https://rizonepress.com … … 156 156 add_action('admin_enqueue_scripts', array($this, 'admin_enqueue_scripts')); 157 157 add_action('admin_footer', array($this, 'admin_footer')); 158 159 // Add settings link to plugins page 160 add_filter('plugin_action_links_' . plugin_basename(__FILE__), array($this, 'add_plugin_action_links')); 158 161 159 162 // Initialize honeypot trigger counter … … 1102 1105 return $params; 1103 1106 } 1107 1108 /** 1109 * Add settings link to plugins page 1110 */ 1111 public function add_plugin_action_links($links) { 1112 $settings_link = '<a href="' . esc_url(admin_url('admin.php?page=mail-cloak-settings')) . '">' . __('Settings') . '</a>'; 1113 array_unshift($links, $settings_link); 1114 return $links; 1115 } 1104 1116 } 1105 1117 -
mail-cloak/trunk/readme.txt
r3302556 r3302557 4 4 Requires at least: 5.0 5 5 Tested up to: 6.8 6 Stable tag: 1.3. 16 Stable tag: 1.3.2 7 7 Requires PHP: 7.2 8 8 License: GPLv2 or later … … 113 113 == Changelog == 114 114 115 = 1.3.2 = 116 * Added Settings link to plugins list page for easier access to configuration 117 115 118 = 1.3.1 = 116 119 * Added comprehensive bot whitelist system with 30+ pre-configured legitimate services … … 146 149 == Upgrade Notice == 147 150 151 = 1.3.2 = 152 Enhanced user experience! New Settings link added to plugins list page for quick access to Mail Cloak configuration. Recommended update for improved usability. 153 148 154 = 1.3.1 = 149 155 Major security update! New bot detection system with automated IP blocking, comprehensive whitelist for legitimate crawlers, and professional analytics dashboard. Enhanced page builder compatibility and performance optimizations. Highly recommended upgrade for all users.
Note: See TracChangeset
for help on using the changeset viewer.