Changeset 3267787
- Timestamp:
- 04/07/2025 11:02:02 AM (10 months ago)
- Location:
- easy-gpt-for-wp
- Files:
-
- 71 added
- 3 edited
-
tags/1.15 (added)
-
tags/1.15/admin (added)
-
tags/1.15/admin/admin-functions.php (added)
-
tags/1.15/admin/index.php (added)
-
tags/1.15/assets (added)
-
tags/1.15/assets/banner-1544x500.png (added)
-
tags/1.15/assets/banner-772x250.png (added)
-
tags/1.15/assets/icon-128x128.gif (added)
-
tags/1.15/assets/icon-256x256.gif (added)
-
tags/1.15/assets/screenshot-1.png (added)
-
tags/1.15/assets/screenshot-10.png (added)
-
tags/1.15/assets/screenshot-11.png (added)
-
tags/1.15/assets/screenshot-12.png (added)
-
tags/1.15/assets/screenshot-2.png (added)
-
tags/1.15/assets/screenshot-3.png (added)
-
tags/1.15/assets/screenshot-4.png (added)
-
tags/1.15/assets/screenshot-5.png (added)
-
tags/1.15/assets/screenshot-6.png (added)
-
tags/1.15/assets/screenshot-7.png (added)
-
tags/1.15/assets/screenshot-8.png (added)
-
tags/1.15/assets/screenshot-9.png (added)
-
tags/1.15/easy-gpt-for-wp.php (added)
-
tags/1.15/images (added)
-
tags/1.15/images/Logo-Pequeno-admin.png (added)
-
tags/1.15/images/accept-and-insert-article.png (added)
-
tags/1.15/images/generate-new-post.png (added)
-
tags/1.15/images/image-api.png (added)
-
tags/1.15/images/image-license.png (added)
-
tags/1.15/images/index.php (added)
-
tags/1.15/images/new-bulk-generation.png (added)
-
tags/1.15/images/tutorial-settings-post.png (added)
-
tags/1.15/images/tutorial-settings.png (added)
-
tags/1.15/images/view-bulk-generation.png (added)
-
tags/1.15/includes (added)
-
tags/1.15/includes/bulk-article-processing.php (added)
-
tags/1.15/includes/bulk-generation.php (added)
-
tags/1.15/includes/bulk-list.php (added)
-
tags/1.15/includes/comments.php (added)
-
tags/1.15/includes/cost.php (added)
-
tags/1.15/includes/easy-gpt-bulk-article-generator.php (added)
-
tags/1.15/includes/easy-gpt-options.php (added)
-
tags/1.15/includes/easy-gpt-refresh-page.php (added)
-
tags/1.15/includes/easy-gpt-refresh-processing.php (added)
-
tags/1.15/includes/how-to-use.php (added)
-
tags/1.15/includes/index.php (added)
-
tags/1.15/includes/license.php (added)
-
tags/1.15/includes/metaboxes.php (added)
-
tags/1.15/includes/settings-functions.php (added)
-
tags/1.15/includes/status.php (added)
-
tags/1.15/includes/support.php (added)
-
tags/1.15/index.php (added)
-
tags/1.15/js (added)
-
tags/1.15/js/admin-script.js (added)
-
tags/1.15/js/admin-youtube.js (added)
-
tags/1.15/js/bulk-generation-another.js (added)
-
tags/1.15/js/bulk-generation.js (added)
-
tags/1.15/js/easy-gpt-bulk-list.js (added)
-
tags/1.15/js/easy-gpt-custom.js (added)
-
tags/1.15/js/how-to-use.js (added)
-
tags/1.15/public (added)
-
tags/1.15/public/index.php (added)
-
tags/1.15/public/public-functions.php (added)
-
tags/1.15/readme.txt (added)
-
tags/1.15/styles (added)
-
tags/1.15/styles/admin-style.css (added)
-
tags/1.15/styles/bulk-generation.css (added)
-
tags/1.15/styles/bulk-list.css (added)
-
tags/1.15/styles/comments-style.css (added)
-
tags/1.15/styles/how-to-use.css (added)
-
tags/1.15/styles/license.css (added)
-
tags/1.15/styles/metabox-style.css (added)
-
trunk/easy-gpt-for-wp.php (modified) (1 diff)
-
trunk/includes/easy-gpt-refresh-processing.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easy-gpt-for-wp/trunk/easy-gpt-for-wp.php
r3267752 r3267787 4 4 * Plugin URI: https://easygptforwp.com/ 5 5 * Description: Integrates OpenAI GPT functionalities to automatically generate content and manage SEO in WordPress. 6 * Version: 1.1 46 * Version: 1.15 7 7 * Author: Ignacio Gil Alvarez 8 8 * Author URI: https://morris34.com/ -
easy-gpt-for-wp/trunk/includes/easy-gpt-refresh-processing.php
r3267752 r3267787 12 12 if (empty($options['easy_gpt_refresh_enabled'])) { 13 13 error_log("[EasyGPT] ❌ Article refresher disabled in settings."); 14 return; 15 } 16 17 $license_status = get_option('easy_gpt_license_status'); 18 $license_expires = get_option('easy_gpt_license_expires'); 19 $is_license_valid = $license_status === 'valid' && new DateTime($license_expires) > new DateTime(); 20 if ( ! $is_license_valid ) { 21 error_log("[EasyGPT] ❌ Article refresh blocked: license invalid or expired."); 14 22 return; 15 23 } -
easy-gpt-for-wp/trunk/readme.txt
r3267752 r3267787 5 5 Tested up to: 6.7.2 6 6 Requires PHP: 7.3 7 Stable tag: 1.1 47 Stable tag: 1.15 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 153 153 154 154 == Changelog == 155 = 1.15 = 156 * Fix minor errors. 157 155 158 = 1.14 = 156 159 * Introduced "just-in-time" generation mode: articles are now generated close to their scheduled publish time, based on the WordPress cron schedule.
Note: See TracChangeset
for help on using the changeset viewer.