Plugin Directory

Changeset 3278227


Ignore:
Timestamp:
04/21/2025 01:57:33 PM (12 months ago)
Author:
hyvor
Message:

Deploy version 1.0.1

Location:
fortguard
Files:
13 added
3 edited

Legend:

Unmodified
Added
Removed
  • fortguard/trunk/fortguard.php

    r3159803 r3278227  
    77Plugin URI: https://fortguard.io/
    88Description: FortGuard is a state-of-the-art spam detection API for commenting systems, forums, email clients, and many other applications.
    9 Version: 1.0.0
     9Version: 1.0.1
    1010Author: HYVOR
    1111Author URI: https://hyvor.com/
     
    2626define('FORTGUARD_IDENTIFIER', 'fortguard');
    2727// Define the plugin version
    28 define('FORTGUARD_VERSION', '1.0.0');
     28define('FORTGUARD_VERSION', '1.0.1');
    2929
    3030require_once FORTGUARD_DIR_PATH . 'inc/class-fortguard.php';
  • fortguard/trunk/html/admin.php

    r3159782 r3278227  
    8080                <div class="dual-item-right">
    8181                    <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
    90109                    </select>
    91110                </div>
  • fortguard/trunk/readme.txt

    r3159854 r3278227  
    33Tags: Spam Detection, Spam Protection, Anit-Spam, Spam Score, Sentiment-Detection
    44Requires at least: 4.6
    5 Tested up to: 6.6
    6 Stable tag: 1.0.0
     5Tested up to: 6.8
     6Stable tag: 1.0.1
    77Requires PHP: 7.4
    88License: GPLv2
     
    6161== Change Log ==
    6262
     63= 1.0.1 =
     64* Supports all models in FortGuard
     65
    6366= 1.0.0 =
    6467* Introduced FortGuard WordPress plugin.
Note: See TracChangeset for help on using the changeset viewer.