Plugin Directory

Changeset 3458786


Ignore:
Timestamp:
02/11/2026 08:51:31 AM (6 weeks ago)
Author:
aipost
Message:

update 4.3.8.6

Location:
ai-wp-writer
Files:
34 added
4 edited

Legend:

Unmodified
Added
Removed
  • ai-wp-writer/trunk/assets/js/app.js

    r3456958 r3458786  
    21742174       
    21752175        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 ) }) )
    21772177        }
    21782178
  • ai-wp-writer/trunk/class.assistant.php

    r3456958 r3458786  
    589589                return $data;
    590590           
    591             $lang_id = 0;
     591            $lang_id = $this->getDefaultLangId();
    592592            $break = false;
    593593            $data['publish'] = 0;
     
    733733        $data['textModel'] = sanitize_text_field( $_POST['textModel'] );
    734734        update_option('aiArticlesAutoGenData', $data);
     735       
     736        wp_die( json_encode( $data ) );
    735737    }
    736738   
     
    742744        $data['start'] = false;
    743745        update_option('aiArticlesAutoGenData', $data);
     746       
     747        wp_die( json_encode( $data ) );
    744748    }
    745749   
     
    751755        $data['start'] = true;
    752756        update_option('aiArticlesAutoGenData', $data);
     757       
     758        wp_die( json_encode( $data ) );
    753759    }
    754760   
     
    788794       
    789795        update_option('aiArticlesAutoGenData', $data);
     796       
     797        wp_die( json_encode( $data ) );
    790798    }
    791799   
     
    857865        $data['textModel']      = sanitize_text_field( $_POST['textModel'] );
    858866        update_option('aiRewritesData', $data);
     867       
     868        wp_die( json_encode( $data ) );
    859869    }
    860870
     
    870880                $data['counter'] = 0;
    871881               
    872                 $lang_id = 0;
     882                $lang_id = $this->getDefaultLangId();
    873883                $this->setInfo();
    874884               
     
    11771187        $data['start'] = true;
    11781188        update_option('aiRewritesData', $data);
     1189       
     1190        wp_die( json_encode( $data ) );
    11791191    }
    11801192   
     
    11861198        $data['start'] = false;
    11871199        update_option('aiRewritesData', $data);
     1200       
     1201        wp_die( json_encode( $data ) );
    11881202    }
    11891203   
     
    12291243       
    12301244        update_option('aiRewritesData', $data);
     1245       
     1246        wp_die( json_encode( $data ) );
    12311247    }
    12321248   
  • ai-wp-writer/trunk/index.php

    r3456958 r3458786  
    11<?php
    22/*
    3     Version: 4.3.8.4
     3    Version: 4.3.8.6
    44    Plugin Name: AI WP Writer
    55    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  
    11=== AI WP Writer – AI content generation, SEO-articles, rewriting ===
    2 Contributors: AIpost
     2Contributors: aipost
    33Tags: AI, generator, articles, content, image
    44Requires at least: 6.0
    55Tested up to: 6.9
    66Requires PHP: 5.6.0
    7 Stable tag: 4.3.8.4
     7Stable tag: 4.3.8.6
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
Note: See TracChangeset for help on using the changeset viewer.