Changeset 3438794
- Timestamp:
- 01/13/2026 04:23:30 PM (2 months ago)
- Location:
- ai-content-writer
- Files:
-
- 16 edited
- 1 copied
-
tags/2.1.1 (copied) (copied from ai-content-writer/trunk)
-
tags/2.1.1/ai-content-writer.php (modified) (3 diffs)
-
tags/2.1.1/includes/functions.php (modified) (1 diff)
-
tags/2.1.1/languages/ai-content-writer.pot (modified) (3 diffs)
-
tags/2.1.1/readme.txt (modified) (2 diffs)
-
tags/2.1.1/vendor/autoload.php (modified) (1 diff)
-
tags/2.1.1/vendor/composer/autoload_real.php (modified) (2 diffs)
-
tags/2.1.1/vendor/composer/autoload_static.php (modified) (2 diffs)
-
tags/2.1.1/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/ai-content-writer.php (modified) (3 diffs)
-
trunk/includes/functions.php (modified) (1 diff)
-
trunk/languages/ai-content-writer.pot (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_real.php (modified) (2 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ai-content-writer/tags/2.1.1/ai-content-writer.php
r3400677 r3438794 4 4 * Plugin URI: https://beautifulplugins.com/ai-content-writer/ 5 5 * Description: AI Content Writer helps you automatically generate high-quality, SEO-optimized content for your blog or website in minutes using advanced AI technologies like ChatGPT, OpenAI, Google Gemini, and more. 6 * Version: 2.1. 06 * Version: 2.1.1 7 7 * Requires at least: 5.0 8 8 * Requires PHP: 7.4 … … 13 13 * Text Domain: ai-content-writer 14 14 * Domain Path: /languages 15 * Tested up to: 6. 815 * Tested up to: 6.9 16 16 * 17 17 * @package AIContentWriter … … 47 47 */ 48 48 function ai_content_writer() { 49 return Plugin::create( __FILE__, '2.1. 0' );49 return Plugin::create( __FILE__, '2.1.1' ); 50 50 } 51 51 -
ai-content-writer/tags/2.1.1/includes/functions.php
r3384509 r3438794 567 567 $posts_needed = absint( $target - $total_posts ); 568 568 569 // Set the posts needed to max 20. Forcefully set to 20 to avoid overloading. 570 if ( $posts_needed >= 20 ) { 571 $posts_needed = 20; 572 } 573 569 574 return array( 570 575 'needs_update' => true, -
ai-content-writer/tags/2.1.1/languages/ai-content-writer.pot
r3400677 r3438794 1 # Copyright (C) 202 5BeautifulPlugins1 # Copyright (C) 2026 BeautifulPlugins 2 2 # This file is distributed under the GPLv2 or later. 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: AI Content Writer 2.1. 0\n"5 "Project-Id-Version: AI Content Writer 2.1.1\n" 6 6 "Report-Msgid-Bugs-To: https://beautifulplugins.com/support/\n" 7 "POT-Creation-Date: 202 5-11-21 15:48:18+00:00\n"7 "POT-Creation-Date: 2026-01-13 16:09:07+00:00\n" 8 8 "MIME-Version: 1.0\n" 9 9 "Content-Type: text/plain; charset=utf-8\n" 10 10 "Content-Transfer-Encoding: 8bit\n" 11 "PO-Revision-Date: 202 5-MO-DA HO:MI+ZONE\n"11 "PO-Revision-Date: 2026-MO-DA HO:MI+ZONE\n" 12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 13 13 "Language-Team: LANGUAGE <LL@li.org>\n" … … 280 280 #: includes/Admin/ListTables/LogsListTable.php:175 281 281 #: includes/Admin/ListTables/LogsListTable.php:188 282 #: includes/Admin/views/edit-campaign.php:288 includes/functions.php:68 3282 #: includes/Admin/views/edit-campaign.php:288 includes/functions.php:688 283 283 msgid "Delete" 284 284 msgstr "" … … 1647 1647 msgstr "" 1648 1648 1649 #: includes/functions.php:6 771649 #: includes/functions.php:682 1650 1650 msgid "Keyword" 1651 1651 msgstr "" 1652 1652 1653 #: includes/functions.php:68 01653 #: includes/functions.php:685 1654 1654 msgid "Keyword 2" 1655 1655 msgstr "" -
ai-content-writer/tags/2.1.1/readme.txt
r3400677 r3438794 2 2 Contributors: beautifulplugins 3 3 Tags: content writer, ai, content, writing, autoblog 4 Tested up to: 6. 85 Stable tag: 2.1. 04 Tested up to: 6.9 5 Stable tag: 2.1.1 6 6 License: GPLv2 or later 7 7 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 186 186 187 187 == Changelog == 188 = 2.1.1 (13th January 2026) = 189 * Fix: Issue with campaigns that try to generate all their target posts at once. 190 * Compatibility: Make compatible with WordPress 6.9. 191 188 192 = 2.1.0 (22nd November 2026) = 189 193 * Fix: Fixed minor bugs and improved performance. -
ai-content-writer/tags/2.1.1/vendor/autoload.php
r3295814 r3438794 20 20 require_once __DIR__ . '/composer/autoload_real.php'; 21 21 22 return ComposerAutoloaderInit 323bde87c3a41909797ba511302c4b47::getLoader();22 return ComposerAutoloaderInitb18a5e351e55c68d4c9efdba4f5c95ae::getLoader(); -
ai-content-writer/tags/2.1.1/vendor/composer/autoload_real.php
r3285449 r3438794 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 323bde87c3a41909797ba511302c4b475 class ComposerAutoloaderInitb18a5e351e55c68d4c9efdba4f5c95ae 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit 323bde87c3a41909797ba511302c4b47', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInitb18a5e351e55c68d4c9efdba4f5c95ae', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 29 spl_autoload_unregister(array('ComposerAutoloaderInit 323bde87c3a41909797ba511302c4b47', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInitb18a5e351e55c68d4c9efdba4f5c95ae', 'loadClassLoader')); 30 30 31 31 require __DIR__ . '/autoload_static.php'; 32 call_user_func(\Composer\Autoload\ComposerStaticInit 323bde87c3a41909797ba511302c4b47::getInitializer($loader));32 call_user_func(\Composer\Autoload\ComposerStaticInitb18a5e351e55c68d4c9efdba4f5c95ae::getInitializer($loader)); 33 33 34 34 $loader->register(true); -
ai-content-writer/tags/2.1.1/vendor/composer/autoload_static.php
r3396137 r3438794 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 323bde87c3a41909797ba511302c4b477 class ComposerStaticInitb18a5e351e55c68d4c9efdba4f5c95ae 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 46 46 { 47 47 return \Closure::bind(function () use ($loader) { 48 $loader->prefixLengthsPsr4 = ComposerStaticInit 323bde87c3a41909797ba511302c4b47::$prefixLengthsPsr4;49 $loader->prefixDirsPsr4 = ComposerStaticInit 323bde87c3a41909797ba511302c4b47::$prefixDirsPsr4;50 $loader->classMap = ComposerStaticInit 323bde87c3a41909797ba511302c4b47::$classMap;48 $loader->prefixLengthsPsr4 = ComposerStaticInitb18a5e351e55c68d4c9efdba4f5c95ae::$prefixLengthsPsr4; 49 $loader->prefixDirsPsr4 = ComposerStaticInitb18a5e351e55c68d4c9efdba4f5c95ae::$prefixDirsPsr4; 50 $loader->classMap = ComposerStaticInitb18a5e351e55c68d4c9efdba4f5c95ae::$classMap; 51 51 52 52 }, null, ClassLoader::class); -
ai-content-writer/tags/2.1.1/vendor/composer/installed.php
r3400677 r3438794 2 2 'root' => array( 3 3 'name' => 'beautifulplugins/ai-content-writer', 4 'pretty_version' => 'v2.1. 0',5 'version' => '2.1. 0.0',6 'reference' => ' 777864413f1c079e16111913ae068c1e9bb32dbc',4 'pretty_version' => 'v2.1.1', 5 'version' => '2.1.1.0', 6 'reference' => '537696dbd8b3083cae7942d9eb820b25fb957c0c', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 'beautifulplugins/ai-content-writer' => array( 14 'pretty_version' => 'v2.1. 0',15 'version' => '2.1. 0.0',16 'reference' => ' 777864413f1c079e16111913ae068c1e9bb32dbc',14 'pretty_version' => 'v2.1.1', 15 'version' => '2.1.1.0', 16 'reference' => '537696dbd8b3083cae7942d9eb820b25fb957c0c', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../', -
ai-content-writer/trunk/ai-content-writer.php
r3400677 r3438794 4 4 * Plugin URI: https://beautifulplugins.com/ai-content-writer/ 5 5 * Description: AI Content Writer helps you automatically generate high-quality, SEO-optimized content for your blog or website in minutes using advanced AI technologies like ChatGPT, OpenAI, Google Gemini, and more. 6 * Version: 2.1. 06 * Version: 2.1.1 7 7 * Requires at least: 5.0 8 8 * Requires PHP: 7.4 … … 13 13 * Text Domain: ai-content-writer 14 14 * Domain Path: /languages 15 * Tested up to: 6. 815 * Tested up to: 6.9 16 16 * 17 17 * @package AIContentWriter … … 47 47 */ 48 48 function ai_content_writer() { 49 return Plugin::create( __FILE__, '2.1. 0' );49 return Plugin::create( __FILE__, '2.1.1' ); 50 50 } 51 51 -
ai-content-writer/trunk/includes/functions.php
r3384509 r3438794 567 567 $posts_needed = absint( $target - $total_posts ); 568 568 569 // Set the posts needed to max 20. Forcefully set to 20 to avoid overloading. 570 if ( $posts_needed >= 20 ) { 571 $posts_needed = 20; 572 } 573 569 574 return array( 570 575 'needs_update' => true, -
ai-content-writer/trunk/languages/ai-content-writer.pot
r3400677 r3438794 1 # Copyright (C) 202 5BeautifulPlugins1 # Copyright (C) 2026 BeautifulPlugins 2 2 # This file is distributed under the GPLv2 or later. 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: AI Content Writer 2.1. 0\n"5 "Project-Id-Version: AI Content Writer 2.1.1\n" 6 6 "Report-Msgid-Bugs-To: https://beautifulplugins.com/support/\n" 7 "POT-Creation-Date: 202 5-11-21 15:48:18+00:00\n"7 "POT-Creation-Date: 2026-01-13 16:09:07+00:00\n" 8 8 "MIME-Version: 1.0\n" 9 9 "Content-Type: text/plain; charset=utf-8\n" 10 10 "Content-Transfer-Encoding: 8bit\n" 11 "PO-Revision-Date: 202 5-MO-DA HO:MI+ZONE\n"11 "PO-Revision-Date: 2026-MO-DA HO:MI+ZONE\n" 12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 13 13 "Language-Team: LANGUAGE <LL@li.org>\n" … … 280 280 #: includes/Admin/ListTables/LogsListTable.php:175 281 281 #: includes/Admin/ListTables/LogsListTable.php:188 282 #: includes/Admin/views/edit-campaign.php:288 includes/functions.php:68 3282 #: includes/Admin/views/edit-campaign.php:288 includes/functions.php:688 283 283 msgid "Delete" 284 284 msgstr "" … … 1647 1647 msgstr "" 1648 1648 1649 #: includes/functions.php:6 771649 #: includes/functions.php:682 1650 1650 msgid "Keyword" 1651 1651 msgstr "" 1652 1652 1653 #: includes/functions.php:68 01653 #: includes/functions.php:685 1654 1654 msgid "Keyword 2" 1655 1655 msgstr "" -
ai-content-writer/trunk/readme.txt
r3400677 r3438794 2 2 Contributors: beautifulplugins 3 3 Tags: content writer, ai, content, writing, autoblog 4 Tested up to: 6. 85 Stable tag: 2.1. 04 Tested up to: 6.9 5 Stable tag: 2.1.1 6 6 License: GPLv2 or later 7 7 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 186 186 187 187 == Changelog == 188 = 2.1.1 (13th January 2026) = 189 * Fix: Issue with campaigns that try to generate all their target posts at once. 190 * Compatibility: Make compatible with WordPress 6.9. 191 188 192 = 2.1.0 (22nd November 2026) = 189 193 * Fix: Fixed minor bugs and improved performance. -
ai-content-writer/trunk/vendor/autoload.php
r3295814 r3438794 20 20 require_once __DIR__ . '/composer/autoload_real.php'; 21 21 22 return ComposerAutoloaderInit 323bde87c3a41909797ba511302c4b47::getLoader();22 return ComposerAutoloaderInitb18a5e351e55c68d4c9efdba4f5c95ae::getLoader(); -
ai-content-writer/trunk/vendor/composer/autoload_real.php
r3285449 r3438794 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 323bde87c3a41909797ba511302c4b475 class ComposerAutoloaderInitb18a5e351e55c68d4c9efdba4f5c95ae 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit 323bde87c3a41909797ba511302c4b47', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInitb18a5e351e55c68d4c9efdba4f5c95ae', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 29 spl_autoload_unregister(array('ComposerAutoloaderInit 323bde87c3a41909797ba511302c4b47', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInitb18a5e351e55c68d4c9efdba4f5c95ae', 'loadClassLoader')); 30 30 31 31 require __DIR__ . '/autoload_static.php'; 32 call_user_func(\Composer\Autoload\ComposerStaticInit 323bde87c3a41909797ba511302c4b47::getInitializer($loader));32 call_user_func(\Composer\Autoload\ComposerStaticInitb18a5e351e55c68d4c9efdba4f5c95ae::getInitializer($loader)); 33 33 34 34 $loader->register(true); -
ai-content-writer/trunk/vendor/composer/autoload_static.php
r3396137 r3438794 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 323bde87c3a41909797ba511302c4b477 class ComposerStaticInitb18a5e351e55c68d4c9efdba4f5c95ae 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 46 46 { 47 47 return \Closure::bind(function () use ($loader) { 48 $loader->prefixLengthsPsr4 = ComposerStaticInit 323bde87c3a41909797ba511302c4b47::$prefixLengthsPsr4;49 $loader->prefixDirsPsr4 = ComposerStaticInit 323bde87c3a41909797ba511302c4b47::$prefixDirsPsr4;50 $loader->classMap = ComposerStaticInit 323bde87c3a41909797ba511302c4b47::$classMap;48 $loader->prefixLengthsPsr4 = ComposerStaticInitb18a5e351e55c68d4c9efdba4f5c95ae::$prefixLengthsPsr4; 49 $loader->prefixDirsPsr4 = ComposerStaticInitb18a5e351e55c68d4c9efdba4f5c95ae::$prefixDirsPsr4; 50 $loader->classMap = ComposerStaticInitb18a5e351e55c68d4c9efdba4f5c95ae::$classMap; 51 51 52 52 }, null, ClassLoader::class); -
ai-content-writer/trunk/vendor/composer/installed.php
r3400677 r3438794 2 2 'root' => array( 3 3 'name' => 'beautifulplugins/ai-content-writer', 4 'pretty_version' => 'v2.1. 0',5 'version' => '2.1. 0.0',6 'reference' => ' 777864413f1c079e16111913ae068c1e9bb32dbc',4 'pretty_version' => 'v2.1.1', 5 'version' => '2.1.1.0', 6 'reference' => '537696dbd8b3083cae7942d9eb820b25fb957c0c', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 'beautifulplugins/ai-content-writer' => array( 14 'pretty_version' => 'v2.1. 0',15 'version' => '2.1. 0.0',16 'reference' => ' 777864413f1c079e16111913ae068c1e9bb32dbc',14 'pretty_version' => 'v2.1.1', 15 'version' => '2.1.1.0', 16 'reference' => '537696dbd8b3083cae7942d9eb820b25fb957c0c', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.