Changeset 3469561
- Timestamp:
- 02/25/2026 02:56:15 PM (13 days ago)
- Location:
- basecloud-shield
- Files:
-
- 6 edited
- 1 copied
-
tags/1.3.8 (copied) (copied from basecloud-shield/trunk)
-
tags/1.3.8/CHANGELOG.md (modified) (1 diff)
-
tags/1.3.8/basecloud-shield.php (modified) (3 diffs)
-
tags/1.3.8/readme.txt (modified) (2 diffs)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/basecloud-shield.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
basecloud-shield/tags/1.3.8/CHANGELOG.md
r3469513 r3469561 2 2 3 3 All notable changes to BaseCloud Shield will be documented in this file. 4 5 ## [1.3.8] - 2026-02-25 6 7 ### 🔧 Fixed 8 - **Config Labels Visibility**: Fixed "Webhook URL", "From Email Address" and other config section labels - now properly white and visible 9 - **Enhanced CSS Specificity**: Improved CSS rules to ensure all labels in configuration sections display correctly 10 - **Checkbox Labels**: Fixed delivery method checkbox labels to be white 11 12 ## [1.3.7] - 2026-02-25 13 14 ### 🔧 Fixed 15 - **Section Headers**: Fixed dark "Webhook Configuration", "Email Configuration" and other section headers - now white for visibility 16 - **Config Labels**: All configuration section labels now properly white colored 17 - **Breathing Logo**: Ensured breathing logo PNG displays correctly in admin header 4 18 5 19 ## [1.3.6] - 2026-02-25 -
basecloud-shield/tags/1.3.8/basecloud-shield.php
r3469546 r3469561 3 3 * Plugin Name: BaseCloud Shield 4 4 * Description: Enterprise-grade 2FA security. Supports Central Manager Notifications, WP Email, SendGrid, WhatsApp, SMS, and Webhooks. 5 * Version: 1.3. 75 * Version: 1.3.8 6 6 * Author: BaseCloud Team 7 7 * Author URI: https://www.basecloudglobal.com/ … … 15 15 if (!defined('ABSPATH')) { exit; } 16 16 17 define('BCSHIELD_VERSION', '1.3. 7');17 define('BCSHIELD_VERSION', '1.3.8'); 18 18 define('BCSHIELD_MAX_ATTEMPTS', 5); 19 19 define('BCSHIELD_LOCKOUT_DURATION', 900); … … 939 939 .bc-checkbox-item:has(input:checked) { background: rgba(75, 196, 106, 0.15); border-color: var(--bc-green); } 940 940 .bc-checkbox-item input[type="checkbox"] { margin-right: 8px; width: 18px; height: 18px; cursor: pointer; accent-color: var(--bc-green); } 941 .bc-checkbox-item label { cursor: pointer; font-size: 14px; user-select: none; }941 .bc-checkbox-item label { cursor: pointer; font-size: 14px; user-select: none; color: #ffffff !important; } 942 942 .bc-config-section { display: none; margin-top: 15px; padding: 15px; background: rgba(0,0,0,0.2); border-radius: 6px; border-left: 3px solid var(--bc-green); } 943 943 .bc-config-section.active { display: block; } 944 .bc-config-section h3, .bc-config-section label, .bc-config-row label { color: #ffffff !important; } 944 .bc-config-section h3 { color: #ffffff !important; } 945 .bc-config-section label { color: #ffffff !important; display: block; margin-bottom: 8px; font-weight: 500; } 946 .bc-config-row { margin-bottom: 15px; } 947 .bc-config-row label { color: #ffffff !important; display: block; margin-bottom: 8px; font-weight: 500; } 945 948 .bc-config-row input::selection { background: var(--bc-green); color: #0f2c52; } 946 949 -
basecloud-shield/tags/1.3.8/readme.txt
r3469546 r3469561 4 4 Requires at least: 5.0 5 5 Tested up to: 6.9 6 Stable tag: 1.3. 76 Stable tag: 1.3.8 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 118 118 119 119 == Changelog == 120 121 = 1.3.8 = 122 **Release Update** 123 124 • Bug fixes and improvements 125 • Updated version for deployment 126 120 127 121 128 = 1.3.7 = -
basecloud-shield/trunk/CHANGELOG.md
r3469513 r3469561 2 2 3 3 All notable changes to BaseCloud Shield will be documented in this file. 4 5 ## [1.3.8] - 2026-02-25 6 7 ### 🔧 Fixed 8 - **Config Labels Visibility**: Fixed "Webhook URL", "From Email Address" and other config section labels - now properly white and visible 9 - **Enhanced CSS Specificity**: Improved CSS rules to ensure all labels in configuration sections display correctly 10 - **Checkbox Labels**: Fixed delivery method checkbox labels to be white 11 12 ## [1.3.7] - 2026-02-25 13 14 ### 🔧 Fixed 15 - **Section Headers**: Fixed dark "Webhook Configuration", "Email Configuration" and other section headers - now white for visibility 16 - **Config Labels**: All configuration section labels now properly white colored 17 - **Breathing Logo**: Ensured breathing logo PNG displays correctly in admin header 4 18 5 19 ## [1.3.6] - 2026-02-25 -
basecloud-shield/trunk/basecloud-shield.php
r3469546 r3469561 3 3 * Plugin Name: BaseCloud Shield 4 4 * Description: Enterprise-grade 2FA security. Supports Central Manager Notifications, WP Email, SendGrid, WhatsApp, SMS, and Webhooks. 5 * Version: 1.3. 75 * Version: 1.3.8 6 6 * Author: BaseCloud Team 7 7 * Author URI: https://www.basecloudglobal.com/ … … 15 15 if (!defined('ABSPATH')) { exit; } 16 16 17 define('BCSHIELD_VERSION', '1.3. 7');17 define('BCSHIELD_VERSION', '1.3.8'); 18 18 define('BCSHIELD_MAX_ATTEMPTS', 5); 19 19 define('BCSHIELD_LOCKOUT_DURATION', 900); … … 939 939 .bc-checkbox-item:has(input:checked) { background: rgba(75, 196, 106, 0.15); border-color: var(--bc-green); } 940 940 .bc-checkbox-item input[type="checkbox"] { margin-right: 8px; width: 18px; height: 18px; cursor: pointer; accent-color: var(--bc-green); } 941 .bc-checkbox-item label { cursor: pointer; font-size: 14px; user-select: none; }941 .bc-checkbox-item label { cursor: pointer; font-size: 14px; user-select: none; color: #ffffff !important; } 942 942 .bc-config-section { display: none; margin-top: 15px; padding: 15px; background: rgba(0,0,0,0.2); border-radius: 6px; border-left: 3px solid var(--bc-green); } 943 943 .bc-config-section.active { display: block; } 944 .bc-config-section h3, .bc-config-section label, .bc-config-row label { color: #ffffff !important; } 944 .bc-config-section h3 { color: #ffffff !important; } 945 .bc-config-section label { color: #ffffff !important; display: block; margin-bottom: 8px; font-weight: 500; } 946 .bc-config-row { margin-bottom: 15px; } 947 .bc-config-row label { color: #ffffff !important; display: block; margin-bottom: 8px; font-weight: 500; } 945 948 .bc-config-row input::selection { background: var(--bc-green); color: #0f2c52; } 946 949 -
basecloud-shield/trunk/readme.txt
r3469546 r3469561 4 4 Requires at least: 5.0 5 5 Tested up to: 6.9 6 Stable tag: 1.3. 76 Stable tag: 1.3.8 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 118 118 119 119 == Changelog == 120 121 = 1.3.8 = 122 **Release Update** 123 124 • Bug fixes and improvements 125 • Updated version for deployment 126 120 127 121 128 = 1.3.7 =
Note: See TracChangeset
for help on using the changeset viewer.