Changeset 3466712
- Timestamp:
- 02/22/2026 04:31:21 AM (5 weeks ago)
- Location:
- apicoid-ghostwriter
- Files:
-
- 3 edited
- 9 copied
-
tags/1.4.3 (copied) (copied from apicoid-ghostwriter/trunk)
-
tags/1.4.3/CHANGELOG.md (copied) (copied from apicoid-ghostwriter/trunk/CHANGELOG.md) (2 diffs)
-
tags/1.4.3/apicoid-ghostwriter.php (copied) (copied from apicoid-ghostwriter/trunk/apicoid-ghostwriter.php) (3 diffs)
-
tags/1.4.3/assets/css/admin.css (copied) (copied from apicoid-ghostwriter/trunk/assets/css/admin.css)
-
tags/1.4.3/assets/js/admin.js (copied) (copied from apicoid-ghostwriter/trunk/assets/js/admin.js)
-
tags/1.4.3/assets/js/article-generator.js (copied) (copied from apicoid-ghostwriter/trunk/assets/js/article-generator.js)
-
tags/1.4.3/includes/article-optimizer-page.php (copied) (copied from apicoid-ghostwriter/trunk/includes/article-optimizer-page.php)
-
tags/1.4.3/includes/settings-page.php (copied) (copied from apicoid-ghostwriter/trunk/includes/settings-page.php)
-
tags/1.4.3/readme.txt (copied) (copied from apicoid-ghostwriter/trunk/readme.txt) (3 diffs)
-
trunk/CHANGELOG.md (modified) (2 diffs)
-
trunk/apicoid-ghostwriter.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
apicoid-ghostwriter/tags/1.4.3/CHANGELOG.md
r3466696 r3466712 5 5 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), 6 6 and 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 7 12 8 13 ## [1.4.2] - 2026-02-22 … … 157 162 - Secure API key validation 158 163 164 [1.4.3]: https://github.com/apicoid/ghostwriter/compare/v1.4.2...v1.4.3 159 165 [1.4.2]: https://github.com/apicoid/ghostwriter/compare/v1.4.1...v1.4.2 160 166 [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 4 4 * Plugin URI: https://wordpress.org/plugins/apicoid-ghostwriter/ 5 5 * 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. 26 * Version: 1.4.3 7 7 * Author: Api.co.id 8 8 * Author URI: https://api.co.id … … 21 21 22 22 // Define plugin constants 23 define( 'APICOID_GW_VERSION', '1.4. 2' );23 define( 'APICOID_GW_VERSION', '1.4.3' ); 24 24 define( 'APICOID_GW_DIR', plugin_dir_path( __FILE__ ) ); 25 25 define( 'APICOID_GW_URL', plugin_dir_url( __FILE__ ) ); … … 3913 3913 $question = trim( $matches[1] ); 3914 3914 $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>'; 3916 3916 }, $content ); 3917 3917 -
apicoid-ghostwriter/tags/1.4.3/readme.txt
r3466696 r3466712 5 5 Requires at least: 6.2 6 6 Tested up to: 6.9 7 Stable tag: 1.4. 27 Stable tag: 1.4.3 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 131 131 132 132 == Changelog == 133 134 = 1.4.3 = 135 * Bold FAQ Accordion Questions: FAQ accordion questions are now displayed in bold for better visual hierarchy 133 136 134 137 = 1.4.2 = … … 231 234 == Upgrade Notice == 232 235 236 = 1.4.3 = 237 FAQ accordion questions are now bold for better readability. 238 233 239 = 1.4.2 = 234 240 This 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 5 5 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), 6 6 and 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 7 12 8 13 ## [1.4.2] - 2026-02-22 … … 157 162 - Secure API key validation 158 163 164 [1.4.3]: https://github.com/apicoid/ghostwriter/compare/v1.4.2...v1.4.3 159 165 [1.4.2]: https://github.com/apicoid/ghostwriter/compare/v1.4.1...v1.4.2 160 166 [1.4.1]: https://github.com/apicoid/ghostwriter/compare/v1.4.0...v1.4.1 -
apicoid-ghostwriter/trunk/apicoid-ghostwriter.php
r3466696 r3466712 4 4 * Plugin URI: https://wordpress.org/plugins/apicoid-ghostwriter/ 5 5 * 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. 26 * Version: 1.4.3 7 7 * Author: Api.co.id 8 8 * Author URI: https://api.co.id … … 21 21 22 22 // Define plugin constants 23 define( 'APICOID_GW_VERSION', '1.4. 2' );23 define( 'APICOID_GW_VERSION', '1.4.3' ); 24 24 define( 'APICOID_GW_DIR', plugin_dir_path( __FILE__ ) ); 25 25 define( 'APICOID_GW_URL', plugin_dir_url( __FILE__ ) ); … … 3913 3913 $question = trim( $matches[1] ); 3914 3914 $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>'; 3916 3916 }, $content ); 3917 3917 -
apicoid-ghostwriter/trunk/readme.txt
r3466696 r3466712 5 5 Requires at least: 6.2 6 6 Tested up to: 6.9 7 Stable tag: 1.4. 27 Stable tag: 1.4.3 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 131 131 132 132 == Changelog == 133 134 = 1.4.3 = 135 * Bold FAQ Accordion Questions: FAQ accordion questions are now displayed in bold for better visual hierarchy 133 136 134 137 = 1.4.2 = … … 231 234 == Upgrade Notice == 232 235 236 = 1.4.3 = 237 FAQ accordion questions are now bold for better readability. 238 233 239 = 1.4.2 = 234 240 This 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.