Changeset 3458786
- Timestamp:
- 02/11/2026 08:51:31 AM (6 weeks ago)
- Location:
- ai-wp-writer
- Files:
-
- 34 added
- 4 edited
-
tags/4.3.8.6 (added)
-
tags/4.3.8.6/assets (added)
-
tags/4.3.8.6/assets/css (added)
-
tags/4.3.8.6/assets/css/style.css (added)
-
tags/4.3.8.6/assets/images (added)
-
tags/4.3.8.6/assets/images/arrow-mod.png (added)
-
tags/4.3.8.6/assets/images/arrow.jpg (added)
-
tags/4.3.8.6/assets/images/bg-to-logo.png (added)
-
tags/4.3.8.6/assets/images/check.png (added)
-
tags/4.3.8.6/assets/images/creem.png (added)
-
tags/4.3.8.6/assets/images/cryptocloud.png (added)
-
tags/4.3.8.6/assets/images/doc.png (added)
-
tags/4.3.8.6/assets/images/lock.png (added)
-
tags/4.3.8.6/assets/images/logo.png (added)
-
tags/4.3.8.6/assets/images/paypal.png (added)
-
tags/4.3.8.6/assets/images/robokassa.png (added)
-
tags/4.3.8.6/assets/images/stripe.png (added)
-
tags/4.3.8.6/assets/js (added)
-
tags/4.3.8.6/assets/js/app.js (added)
-
tags/4.3.8.6/assets/js/button.js (added)
-
tags/4.3.8.6/assets/js/image-block.js (added)
-
tags/4.3.8.6/assets/js/image-tiny-mce.js (added)
-
tags/4.3.8.6/assets/libs (added)
-
tags/4.3.8.6/assets/libs/charts.js (added)
-
tags/4.3.8.6/class.assistant.php (added)
-
tags/4.3.8.6/index.php (added)
-
tags/4.3.8.6/langs (added)
-
tags/4.3.8.6/langs/wp-ai-assistant-ru_RU.mo (added)
-
tags/4.3.8.6/langs/wp-ai-assistant-ru_RU.po (added)
-
tags/4.3.8.6/readme.txt (added)
-
tags/4.3.8.6/tpl (added)
-
tags/4.3.8.6/tpl/notice.php (added)
-
tags/4.3.8.6/tpl/options.php (added)
-
tags/4.3.8.6/tpl/workspace.php (added)
-
trunk/assets/js/app.js (modified) (1 diff)
-
trunk/class.assistant.php (modified) (10 diffs)
-
trunk/index.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ai-wp-writer/trunk/assets/js/app.js
r3456958 r3458786 2174 2174 2175 2175 xhr: ( args = {}, url = false, timeout = 120000 ) => { 2176 return new Promise( resolve => $.ajax({ url: url || aiassist.ajaxurl, type: 'POST', data: args, timeout: timeout, dataType: 'json', success: data => resolve( data ), error: error => resolve( true ) }) )2176 return new Promise( resolve => $.ajax({ url: ( url || aiassist.ajaxurl ) +'?_='+ Date.now(), type: 'POST', data: args, timeout: timeout, dataType: 'json', cache: false, success: data => resolve( data ), error: error => resolve( true ) }) ) 2177 2177 } 2178 2178 -
ai-wp-writer/trunk/class.assistant.php
r3456958 r3458786 589 589 return $data; 590 590 591 $lang_id = 0;591 $lang_id = $this->getDefaultLangId(); 592 592 $break = false; 593 593 $data['publish'] = 0; … … 733 733 $data['textModel'] = sanitize_text_field( $_POST['textModel'] ); 734 734 update_option('aiArticlesAutoGenData', $data); 735 736 wp_die( json_encode( $data ) ); 735 737 } 736 738 … … 742 744 $data['start'] = false; 743 745 update_option('aiArticlesAutoGenData', $data); 746 747 wp_die( json_encode( $data ) ); 744 748 } 745 749 … … 751 755 $data['start'] = true; 752 756 update_option('aiArticlesAutoGenData', $data); 757 758 wp_die( json_encode( $data ) ); 753 759 } 754 760 … … 788 794 789 795 update_option('aiArticlesAutoGenData', $data); 796 797 wp_die( json_encode( $data ) ); 790 798 } 791 799 … … 857 865 $data['textModel'] = sanitize_text_field( $_POST['textModel'] ); 858 866 update_option('aiRewritesData', $data); 867 868 wp_die( json_encode( $data ) ); 859 869 } 860 870 … … 870 880 $data['counter'] = 0; 871 881 872 $lang_id = 0;882 $lang_id = $this->getDefaultLangId(); 873 883 $this->setInfo(); 874 884 … … 1177 1187 $data['start'] = true; 1178 1188 update_option('aiRewritesData', $data); 1189 1190 wp_die( json_encode( $data ) ); 1179 1191 } 1180 1192 … … 1186 1198 $data['start'] = false; 1187 1199 update_option('aiRewritesData', $data); 1200 1201 wp_die( json_encode( $data ) ); 1188 1202 } 1189 1203 … … 1229 1243 1230 1244 update_option('aiRewritesData', $data); 1245 1246 wp_die( json_encode( $data ) ); 1231 1247 } 1232 1248 -
ai-wp-writer/trunk/index.php
r3456958 r3458786 1 1 <?php 2 2 /* 3 Version: 4.3.8. 43 Version: 4.3.8.6 4 4 Plugin Name: AI WP Writer 5 5 Description: Fast generation of articles with images in Wordpress editor, automatic content writer on schedule, mass rewriting of articles. Powered by ChatGPT, GPT-5, GPT-5 mini/nano, o3 (reasoning), Dalle 3, GPT-image, FLUX, Nano Banana. -
ai-wp-writer/trunk/readme.txt
r3456958 r3458786 1 1 === AI WP Writer – AI content generation, SEO-articles, rewriting === 2 Contributors: AIpost2 Contributors: aipost 3 3 Tags: AI, generator, articles, content, image 4 4 Requires at least: 6.0 5 5 Tested up to: 6.9 6 6 Requires PHP: 5.6.0 7 Stable tag: 4.3.8. 47 Stable tag: 4.3.8.6 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html
Note: See TracChangeset
for help on using the changeset viewer.