Changeset 3473217
- Timestamp:
- 03/03/2026 02:52:46 AM (5 days ago)
- Location:
- atomic-edge-security/trunk
- Files:
-
- 4 edited
-
admin/js/adaptive-defense.js (modified) (1 diff)
-
atomicedge.php (modified) (2 diffs)
-
includes/class-atomicedge-dev-mode.php (modified) (5 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
atomic-edge-security/trunk/admin/js/adaptive-defense.js
r3473194 r3473217 669 669 // Detection details 670 670 $detailRow.find('.atomicedge-ad-detail-score').html(this.formatScore(detection.score || 0)); 671 $detailRow.find('.atomicedge-ad-detail-confidence').text((detection.confidence || 0) + '%'); 671 var rawConf = detection.confidence || 0; 672 var confPct = rawConf > 1 ? rawConf : Math.round(rawConf * 100); 673 $detailRow.find('.atomicedge-ad-detail-confidence').text(confPct + '%'); 672 674 $detailRow.find('.atomicedge-ad-detail-status').html(this.formatDetectionStatus(detection.status || 'pending')); 673 675 $detailRow.find('.atomicedge-ad-detail-detected-at').text(this.formatDate(detection.detected_at || detection.created_at)); -
atomic-edge-security/trunk/atomicedge.php
r3473194 r3473217 4 4 * Plugin URI: https://atomicedge.io/wordpress 5 5 * Description: Connect your WordPress site to Atomic Edge WAF/CDN for advanced security protection, analytics, and access control management. 6 * Version: 2.4. 66 * Version: 2.4.7 7 7 * Requires at least: 5.8 8 8 * Requires PHP: 7.4 … … 26 26 27 27 // Plugin constants. 28 define( 'ATOMICEDGE_VERSION', '2.4. 6' );28 define( 'ATOMICEDGE_VERSION', '2.4.7' ); 29 29 define( 'ATOMICEDGE_PLUGIN_FILE', __FILE__ ); 30 30 define( 'ATOMICEDGE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); -
atomic-edge-security/trunk/includes/class-atomicedge-dev-mode.php
r3473194 r3473217 556 556 'id' => 2001, 557 557 'score' => 92, 558 'confidence' => 87,558 'confidence' => 0.87, 559 559 'threat_level' => 'critical', 560 560 'status' => 'auto_blocked', … … 587 587 'id' => 2002, 588 588 'score' => 78, 589 'confidence' => 72,589 'confidence' => 0.72, 590 590 'threat_level' => 'high', 591 591 'status' => 'pending_review', … … 618 618 'id' => 2003, 619 619 'score' => 95, 620 'confidence' => 91,620 'confidence' => 0.91, 621 621 'threat_level' => 'critical', 622 622 'status' => 'user_blocked', … … 650 650 'id' => 2004, 651 651 'score' => 55, 652 'confidence' => 60,652 'confidence' => 0.60, 653 653 'threat_level' => 'medium', 654 654 'status' => 'pending_review', … … 681 681 'id' => 2005, 682 682 'score' => 40, 683 'confidence' => 45,683 'confidence' => 0.45, 684 684 'threat_level' => 'low', 685 685 'status' => 'dismissed', -
atomic-edge-security/trunk/readme.txt
r3473194 r3473217 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 2.4. 67 Stable tag: 2.4.7 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 112 112 113 113 == Changelog == 114 115 = 2.4.7 = 116 * FIX: Confidence now displayed as percentage (e.g. "90%") instead of raw decimal ("0.90%") in Adaptive Defense threat detection details 117 * FIX: Dev mode simulation data now uses 0.0-1.0 decimal values for confidence to match real API format 114 118 115 119 = 2.4.6 =
Note: See TracChangeset
for help on using the changeset viewer.