Plugin Directory

Changeset 3466712


Ignore:
Timestamp:
02/22/2026 04:31:21 AM (5 weeks ago)
Author:
rifaldye
Message:

Version 1.4.3: Bold FAQ accordion questions for better visual hierarchy

Location:
apicoid-ghostwriter
Files:
3 edited
9 copied

Legend:

Unmodified
Added
Removed
  • apicoid-ghostwriter/tags/1.4.3/CHANGELOG.md

    r3466696 r3466712  
    55The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
    66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     7
     8## [1.4.3] - 2026-02-22
     9
     10### Changed
     11- **Bold FAQ Accordion Questions**: FAQ accordion questions are now wrapped in `<strong>` tags for better visual hierarchy
    712
    813## [1.4.2] - 2026-02-22
     
    157162- Secure API key validation
    158163
     164[1.4.3]: https://github.com/apicoid/ghostwriter/compare/v1.4.2...v1.4.3
    159165[1.4.2]: https://github.com/apicoid/ghostwriter/compare/v1.4.1...v1.4.2
    160166[1.4.1]: https://github.com/apicoid/ghostwriter/compare/v1.4.0...v1.4.1
  • apicoid-ghostwriter/tags/1.4.3/apicoid-ghostwriter.php

    r3466696 r3466712  
    44 * Plugin URI:  https://wordpress.org/plugins/apicoid-ghostwriter/
    55 * Description: Connects your WordPress site to Api.co.id to generate content and rewrite content automatically using AI. Features include article generation, content rewriting, automatic related article linking, SEO integration, and image generation.
    6  * Version:     1.4.2
     6 * Version:     1.4.3
    77 * Author:      Api.co.id
    88 * Author URI:  https://api.co.id
     
    2121
    2222// Define plugin constants
    23 define( 'APICOID_GW_VERSION', '1.4.2' );
     23define( 'APICOID_GW_VERSION', '1.4.3' );
    2424define( 'APICOID_GW_DIR', plugin_dir_path( __FILE__ ) );
    2525define( 'APICOID_GW_URL', plugin_dir_url( __FILE__ ) );
     
    39133913            $question = trim( $matches[1] );
    39143914            $answer   = trim( $matches[2] );
    3915             return '<details class="aci-faq-accordion"><summary>' . $question . '</summary><p>' . $answer . '</p></details>';
     3915            return '<details class="aci-faq-accordion"><summary><strong>' . $question . '</strong></summary><p>' . $answer . '</p></details>';
    39163916        }, $content );
    39173917
  • apicoid-ghostwriter/tags/1.4.3/readme.txt

    r3466696 r3466712  
    55Requires at least: 6.2
    66Tested up to: 6.9
    7 Stable tag: 1.4.2
     7Stable tag: 1.4.3
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    131131
    132132== Changelog ==
     133
     134= 1.4.3 =
     135* Bold FAQ Accordion Questions: FAQ accordion questions are now displayed in bold for better visual hierarchy
    133136
    134137= 1.4.2 =
     
    231234== Upgrade Notice ==
    232235
     236= 1.4.3 =
     237FAQ accordion questions are now bold for better readability.
     238
    233239= 1.4.2 =
    234240This update upgrades the FAQ setting from a simple checkbox to a dropdown with three modes: Disable, Enable (Plain), and Enable with Accordion. The accordion mode renders FAQ items as collapsible elements using native HTML details/summary. Existing presets are automatically migrated.
  • apicoid-ghostwriter/trunk/CHANGELOG.md

    r3466696 r3466712  
    55The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
    66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     7
     8## [1.4.3] - 2026-02-22
     9
     10### Changed
     11- **Bold FAQ Accordion Questions**: FAQ accordion questions are now wrapped in `<strong>` tags for better visual hierarchy
    712
    813## [1.4.2] - 2026-02-22
     
    157162- Secure API key validation
    158163
     164[1.4.3]: https://github.com/apicoid/ghostwriter/compare/v1.4.2...v1.4.3
    159165[1.4.2]: https://github.com/apicoid/ghostwriter/compare/v1.4.1...v1.4.2
    160166[1.4.1]: https://github.com/apicoid/ghostwriter/compare/v1.4.0...v1.4.1
  • apicoid-ghostwriter/trunk/apicoid-ghostwriter.php

    r3466696 r3466712  
    44 * Plugin URI:  https://wordpress.org/plugins/apicoid-ghostwriter/
    55 * Description: Connects your WordPress site to Api.co.id to generate content and rewrite content automatically using AI. Features include article generation, content rewriting, automatic related article linking, SEO integration, and image generation.
    6  * Version:     1.4.2
     6 * Version:     1.4.3
    77 * Author:      Api.co.id
    88 * Author URI:  https://api.co.id
     
    2121
    2222// Define plugin constants
    23 define( 'APICOID_GW_VERSION', '1.4.2' );
     23define( 'APICOID_GW_VERSION', '1.4.3' );
    2424define( 'APICOID_GW_DIR', plugin_dir_path( __FILE__ ) );
    2525define( 'APICOID_GW_URL', plugin_dir_url( __FILE__ ) );
     
    39133913            $question = trim( $matches[1] );
    39143914            $answer   = trim( $matches[2] );
    3915             return '<details class="aci-faq-accordion"><summary>' . $question . '</summary><p>' . $answer . '</p></details>';
     3915            return '<details class="aci-faq-accordion"><summary><strong>' . $question . '</strong></summary><p>' . $answer . '</p></details>';
    39163916        }, $content );
    39173917
  • apicoid-ghostwriter/trunk/readme.txt

    r3466696 r3466712  
    55Requires at least: 6.2
    66Tested up to: 6.9
    7 Stable tag: 1.4.2
     7Stable tag: 1.4.3
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    131131
    132132== Changelog ==
     133
     134= 1.4.3 =
     135* Bold FAQ Accordion Questions: FAQ accordion questions are now displayed in bold for better visual hierarchy
    133136
    134137= 1.4.2 =
     
    231234== Upgrade Notice ==
    232235
     236= 1.4.3 =
     237FAQ accordion questions are now bold for better readability.
     238
    233239= 1.4.2 =
    234240This update upgrades the FAQ setting from a simple checkbox to a dropdown with three modes: Disable, Enable (Plain), and Enable with Accordion. The accordion mode renders FAQ items as collapsible elements using native HTML details/summary. Existing presets are automatically migrated.
Note: See TracChangeset for help on using the changeset viewer.