Changeset 3278227
- Timestamp:
- 04/21/2025 01:57:33 PM (12 months ago)
- Location:
- fortguard
- Files:
-
- 13 added
- 3 edited
-
tags/1.0.1 (added)
-
tags/1.0.1/LICENSE.txt (added)
-
tags/1.0.1/fortguard.php (added)
-
tags/1.0.1/html (added)
-
tags/1.0.1/html/admin.php (added)
-
tags/1.0.1/inc (added)
-
tags/1.0.1/inc/class-fortguard-admin.php (added)
-
tags/1.0.1/inc/class-fortguard.php (added)
-
tags/1.0.1/readme.txt (added)
-
tags/1.0.1/static (added)
-
tags/1.0.1/static/admin.css (added)
-
tags/1.0.1/static/admin.js (added)
-
tags/1.0.1/static/fortguard-logo.png (added)
-
trunk/fortguard.php (modified) (2 diffs)
-
trunk/html/admin.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fortguard/trunk/fortguard.php
r3159803 r3278227 7 7 Plugin URI: https://fortguard.io/ 8 8 Description: FortGuard is a state-of-the-art spam detection API for commenting systems, forums, email clients, and many other applications. 9 Version: 1.0. 09 Version: 1.0.1 10 10 Author: HYVOR 11 11 Author URI: https://hyvor.com/ … … 26 26 define('FORTGUARD_IDENTIFIER', 'fortguard'); 27 27 // Define the plugin version 28 define('FORTGUARD_VERSION', '1.0. 0');28 define('FORTGUARD_VERSION', '1.0.1'); 29 29 30 30 require_once FORTGUARD_DIR_PATH . 'inc/class-fortguard.php'; -
fortguard/trunk/html/admin.php
r3159782 r3278227 80 80 <div class="dual-item-right"> 81 81 <select id="fortguard-model-select"> 82 <option 83 value="gpt-3.5" 84 <?php echo esc_attr($model === "gpt-3.5" ? $selectedOption : '') ?> 85 ><?php echo esc_html__('GPT 3.5', 'fortguard') ?></option> 86 <option 87 value="gpt-4" 88 <?php echo esc_attr($model === "gpt-4" ? $selectedOption : '') ?> 89 ><?php echo esc_html__('GPT 4', 'fortguard') ?></option> 82 83 <option 84 value="gpt-4o-mini" 85 <?php echo esc_attr($model === "gpt-4o-mini" ? $selectedOption : '') ?> 86 ><?php echo esc_html__('GPT-4o mini', 'fortguard') ?></option> 87 <option 88 value="gpt-4o" 89 <?php echo esc_attr($model === "gpt-4o" ? $selectedOption : '') ?> 90 ><?php echo esc_html__('GPT-4o', 'fortguard') ?></option> 91 <option 92 value="gpt-4-turbo" 93 <?php echo esc_attr($model === "gpt-4-turbo" ? $selectedOption : '') ?> 94 ><?php echo esc_html__('GPT-4 Turbo', 'fortguard') ?></option> 95 96 <option 97 value="claude-3-haiku" 98 <?php echo esc_attr($model === "claude-3-haiku" ? $selectedOption : '') ?> 99 ><?php echo esc_html__('Claude 3 Haiku', 'fortguard') ?></option> 100 <option 101 value="claude-3.5-sonnet" 102 <?php echo esc_attr($model === "claude-3.5-sonnet" ? $selectedOption : '') ?> 103 ><?php echo esc_html__('Claude 3.5 Sonnet', 'fortguard') ?></option> 104 <option 105 value="claude-3-opus" 106 <?php echo esc_attr($model === "claude-3-opus" ? $selectedOption : '') ?> 107 ><?php echo esc_html__('Claude 3 Opus', 'fortguard') ?></option> 108 90 109 </select> 91 110 </div> -
fortguard/trunk/readme.txt
r3159854 r3278227 3 3 Tags: Spam Detection, Spam Protection, Anit-Spam, Spam Score, Sentiment-Detection 4 4 Requires at least: 4.6 5 Tested up to: 6. 66 Stable tag: 1.0. 05 Tested up to: 6.8 6 Stable tag: 1.0.1 7 7 Requires PHP: 7.4 8 8 License: GPLv2 … … 61 61 == Change Log == 62 62 63 = 1.0.1 = 64 * Supports all models in FortGuard 65 63 66 = 1.0.0 = 64 67 * Introduced FortGuard WordPress plugin.
Note: See TracChangeset
for help on using the changeset viewer.