Plugin Directory

Changeset 3438263


Ignore:
Timestamp:
01/13/2026 01:47:53 AM (5 weeks ago)
Author:
hmamoun
Message:

Tag version 2.1.4

Version 2.1.4 Release:

  • Updated plugin version to 2.1.4
  • Added FAQ template and documentation
  • Updated admin class and main plugin file
  • Improved code quality and functionality
Location:
ai-story-maker/tags/2.1.4
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • ai-story-maker/tags/2.1.4/README.txt

    r3396036 r3438263  
    33Tags: ai, content creation, blog automation, article generation, wordpress ai plugin
    44Requires at least: 5.8
    5 Tested up to: 6.8
    6 Requires PHP: 7.4
    7 Stable tag: 2.1.4
     5 Requires at least: 5.0
     6 Tested up to:      6.9
     7 Requires PHP:      7.4
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • ai-story-maker/tags/2.1.4/admin/class-aistma-admin.php

    r3396036 r3438263  
    6969    const TAB_LOG     = 'log';
    7070    const TAB_SHORTCODES = 'shortcodes';
     71    const TAB_FAQ = 'faq';
    7172
    7273
     
    159160            self::TAB_LOG,
    160161            self::TAB_SHORTCODES,
     162            self::TAB_FAQ,
    161163        );
    162164        // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Tab selection only affects UI; no action taken
     
    191193            <a href="?page=aistma-settings&tab=<?php echo esc_attr( self::TAB_LOG ); ?>" class="nav-tab <?php echo ( self::TAB_LOG === $active_tab ) ? 'nav-tab-active' : ''; ?>">
    192194        <?php esc_html_e( 'Log', 'ai-story-maker' ); ?>
     195            </a>
     196            <a href="?page=aistma-settings&tab=<?php echo esc_attr( self::TAB_FAQ ); ?>" class="nav-tab <?php echo ( self::TAB_FAQ === $active_tab ) ? 'nav-tab-active' : ''; ?>">
     197        <?php esc_html_e( 'FAQ', 'ai-story-maker' ); ?>
    193198            </a>
    194199        </h2>
     
    233238            $this->aistma_log_manager = new AISTMA_Log_Manager();
    234239            $this->aistma_log_manager->aistma_log_table_render();
     240        } elseif ( self::TAB_FAQ === $active_tab ) {
     241            include_once AISTMA_PATH . 'admin/templates/faq-template.php';
    235242        }
    236243
  • ai-story-maker/tags/2.1.4/ai-story-maker.php

    r3396036 r3438263  
    1111 * Text Domain: ai-story-maker
    1212 * Domain Path: /languages
    13  * Requires PHP: 7.4
    14  * Requires at least: 5.8
    15  * Tested up to: 6.8.2
     13 * Requires at least: 5.0
     14 * Tested up to:      6.9
     15 * Requires PHP:      7.4
    1616 *
    1717 * @package AI_Story_Maker
Note: See TracChangeset for help on using the changeset viewer.