Changeset 3386203
- Timestamp:
- 10/29/2025 06:21:34 AM (5 months ago)
- Location:
- ai-wp-writer
- Files:
-
- 33 added
- 7 edited
-
tags/4.2.7.2 (added)
-
tags/4.2.7.2/assets (added)
-
tags/4.2.7.2/assets/css (added)
-
tags/4.2.7.2/assets/css/style.css (added)
-
tags/4.2.7.2/assets/images (added)
-
tags/4.2.7.2/assets/images/arrow-mod.png (added)
-
tags/4.2.7.2/assets/images/arrow.jpg (added)
-
tags/4.2.7.2/assets/images/bg-to-logo.png (added)
-
tags/4.2.7.2/assets/images/check.png (added)
-
tags/4.2.7.2/assets/images/cryptocloud.png (added)
-
tags/4.2.7.2/assets/images/doc.png (added)
-
tags/4.2.7.2/assets/images/lock.png (added)
-
tags/4.2.7.2/assets/images/logo.png (added)
-
tags/4.2.7.2/assets/images/paypal.png (added)
-
tags/4.2.7.2/assets/images/robokassa.png (added)
-
tags/4.2.7.2/assets/images/stripe.png (added)
-
tags/4.2.7.2/assets/js (added)
-
tags/4.2.7.2/assets/js/app.js (added)
-
tags/4.2.7.2/assets/js/button.js (added)
-
tags/4.2.7.2/assets/js/image-block.js (added)
-
tags/4.2.7.2/assets/js/image-tiny-mce.js (added)
-
tags/4.2.7.2/assets/libs (added)
-
tags/4.2.7.2/assets/libs/charts.js (added)
-
tags/4.2.7.2/class.assistant.php (added)
-
tags/4.2.7.2/index.php (added)
-
tags/4.2.7.2/langs (added)
-
tags/4.2.7.2/langs/wp-ai-assistant-ru_RU.mo (added)
-
tags/4.2.7.2/langs/wp-ai-assistant-ru_RU.po (added)
-
tags/4.2.7.2/readme.txt (added)
-
tags/4.2.7.2/tpl (added)
-
tags/4.2.7.2/tpl/notice.php (added)
-
tags/4.2.7.2/tpl/options.php (added)
-
tags/4.2.7.2/tpl/workspace.php (added)
-
trunk/assets/css/style.css (modified) (2 diffs)
-
trunk/assets/js/app.js (modified) (1 diff)
-
trunk/assets/js/image-block.js (modified) (1 diff)
-
trunk/index.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/tpl/options.php (modified) (1 diff)
-
trunk/tpl/workspace.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ai-wp-writer/trunk/assets/css/style.css
r3369840 r3386203 1578 1578 transition: .5s; 1579 1579 margin: -2px 1px; 1580 pointer-events: auto !important; 1580 1581 } 1581 1582 … … 2189 2190 width: auto; 2190 2191 height: auto; 2191 min-width: 1 05px;2192 min-width: 125px; 2192 2193 position: absolute; 2193 2194 z-index: 9999; 2194 2195 display: block; 2196 text-align: left; 2195 2197 } 2196 2198 -
ai-wp-writer/trunk/assets/js/app.js
r3369840 r3386203 2133 2133 2134 2134 request: ( args = {}, url = false, timeout = 120000 ) => { 2135 return new Promise( async resolve => { 2136 let xhr = await app.xhr( args, url, timeout ); 2137 2138 if( xhr === true ){ 2139 aiassist.api = ( aiassist.api == aiassist.apiurl ) ? aiassist.apiurl2 : aiassist.apiurl; 2140 xhr = await app.xhr( args, url, timeout ); 2141 } 2142 2143 resolve( xhr ); 2144 } ) 2145 }, 2146 2147 xhr: ( args = {}, url = false, timeout = 120000 ) => { 2135 2148 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 ) }) ) 2136 2149 } -
ai-wp-writer/trunk/assets/js/image-block.js
r3369840 r3386203 157 157 aiImageBlcokEl( 'div', { class: 'aiassist-select aiassist-image-model' }, 158 158 addModel('flux', aiassist.info.labels.img_model_4_on, aiassist.info.labels.img_model_4, 'aiassist-option'), 159 addModel('midjourney', aiassist.info.labels.img_model_1_on, aiassist.info.labels.img_model_1, 'aiassist-option '+( ! aiassist.info.subscribe.expire ? 'aiassist-lock' : '' ) ),160 addModel('dalle', aiassist.info.labels.img_model_2_on, aiassist.info.labels.img_model_2, 'aiassist-option '+( ! aiassist.info.subscribe.expire ? 'aiassist-lock' : '' ) ),161 addModel('gptImage', aiassist.info.labels.img_model_3_on, aiassist.info.labels.img_model_3, 'aiassist-option '+( ! aiassist.info.subscribe.expire ? 'aiassist-lock' : '' ) ),159 addModel('midjourney', aiassist.info.labels.img_model_1_on, aiassist.info.labels.img_model_1, 'aiassist-option '+( ! aiassist.info.subscribe.expire ? 'aiassist-lock' : '' ) ), 160 addModel('dalle', aiassist.info.labels.img_model_2_on, aiassist.info.labels.img_model_2, 'aiassist-option '+( ! aiassist.info.subscribe.expire ? 'aiassist-lock' : '' ) ), 161 addModel('gptImage', aiassist.info.labels.img_model_3_on, aiassist.info.labels.img_model_3, 'aiassist-option '+( ! aiassist.info.subscribe.expire ? 'aiassist-lock' : '' ) ), 162 162 addModel('input'), 163 163 ), -
ai-wp-writer/trunk/index.php
r3373471 r3386203 1 1 <?php 2 2 /* 3 Version: 4.2. 5.23 Version: 4.2.7.2 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, GPT-5-nano, o3-mini, Dalle 3, GPT-image, FLUX. -
ai-wp-writer/trunk/readme.txt
r3373471 r3386203 1 === AI WP Writer - best WordPress AI plugin for generating content===1 === AI WP Writer – AI content generation === 2 2 Contributors: aipost 3 3 Tags: AI, generator, articles, content, image … … 5 5 Tested up to: 6.8.3 6 6 Requires PHP: 5.6.0 7 Stable tag: 4.2. 5.27 Stable tag: 4.2.7.2 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html 10 10 11 Generate SEO-optimized AI articles with images that drive traffic from search engines. The site is automatically populated with AI-generated content using an AI text generator, an AI content generator, including article rewriting and automatic post translation. Powered by: ChatGPT, GPT-5, DALL·E 3, GPT-Image, and FLUX.11 Generate SEO-optimized AI articles with images that drive traffic from search engines. The site is automatically populated with AI-generated content using an AI text generator, an AI content generator, including article rewriting and automatic post translation. 12 12 13 13 == Description == 14 AI WP Writer is a powerful AI content generator for WordPress. To generate AI texts, it supports ChatGPT, GPT-5, GPT-5 mini, GPT-5 nano, o3-mini and built-in functions for generating images through FLUX, Dalle 3, GPT-image.Implementing the plugin instruments you may use different generation variations, choose topics, automate tasks and create unique articles.14 AI WP Writer is a powerful AI content generator for WordPress. Implementing the plugin instruments you may use different generation variations, choose topics, automate tasks and create unique articles. 15 15 16 16 AI WP Writer generates publications with meta title and meta description, which improves SEO, positions in Google. The plugin creates high-quality SEO optimized articles using key words, helps to make up headings, allows to get more traffic and upgrade site content. … … 39 39 The plugin allows to rewrite articles, create unique variations of materials and translate them into other languages. You can delete unnecessary HTML code, tags and external links. It helps to get a finished text without complications and enhances readability for the audience. The rewriting functionality will be of particular use for restoring sites on dropped domains. 40 40 41 ## AI WP Writer is the best WordPress pluginfor generating AI content41 ## AI WP Writer - good choice for generating AI content 42 42 43 43 AI WP Writer is a convenient solution for automating article creation. It is suitable for blogs, online shops, business sites and other projects. Users can utilize the plugin to work with SEO, create finished publications, manage content and integrate services. -
ai-wp-writer/trunk/tpl/options.php
r3373471 r3386203 1162 1162 <?php } ?> 1163 1163 <?php if( @$this->info->labels->text_model_2_on ){ ?> 1164 <div class="aiassist-option " data-value="gpt4"><?php echo esc_html( $this->info->labels->text_model_2 )?></div>1164 <div class="aiassist-option <?php echo ! @$this->info->subscribe->expire ? 'aiassist-lock' : ''?>" data-value="gpt4"><?php echo esc_html( $this->info->labels->text_model_2 )?></div> 1165 1165 <?php } ?> 1166 1166 <?php if( @$this->info->labels->text_model_3_on ){ ?> 1167 <div class="aiassist-option <?php echo ! @$this->info->subscribe->expire ? 'aiassist-lock' : ''?>" data-value="gpt4_nano"><?php echo esc_html( $this->info->labels->text_model_3 )?></div>1167 <div class="aiassist-option" data-value="gpt4_nano"><?php echo esc_html( $this->info->labels->text_model_3 )?></div> 1168 1168 <?php } ?> 1169 1169 <?php if( @$this->info->labels->text_model_4_on ){ ?> -
ai-wp-writer/trunk/tpl/workspace.php
r3373471 r3386203 38 38 <?php } ?> 39 39 <?php if( @$this->info->labels->text_model_2_on ){ ?> 40 <div class="aiassist-option " data-value="gpt4"><?php echo esc_html( $this->info->labels->text_model_2 )?></div>40 <div class="aiassist-option <?php echo ! @$this->info->subscribe->expire ? 'aiassist-lock' : ''?>" data-value="gpt4"><?php echo esc_html( $this->info->labels->text_model_2 )?></div> 41 41 <?php } ?> 42 42 <?php if( @$this->info->labels->text_model_3_on ){ ?> 43 <div class="aiassist-option <?php echo ! @$this->info->subscribe->expire ? 'aiassist-lock' : ''?>" data-value="gpt4_nano"><?php echo esc_html( $this->info->labels->text_model_3 )?></div>43 <div class="aiassist-option" data-value="gpt4_nano"><?php echo esc_html( $this->info->labels->text_model_3 )?></div> 44 44 <?php } ?> 45 45 <?php if( @$this->info->labels->text_model_4_on ){ ?>
Note: See TracChangeset
for help on using the changeset viewer.