Plugin Directory

Changeset 3373083


Ignore:
Timestamp:
10/05/2025 09:37:49 AM (6 months ago)
Author:
aipost
Message:

update 4.2.5

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

Legend:

Unmodified
Added
Removed
  • ai-wp-writer/trunk/class.assistant.php

    r3369840 r3373083  
    489489            return;
    490490   
    491         wp_die( $this->wpcurl( [ 'token' => sanitize_text_field( $this->options->token ), 'action' => 'getPayUrl', 'promocode' => $_POST['promocode'], 'type' => sanitize_text_field( $_POST['type'] ), 'billing' => sanitize_text_field( $_POST['billing'] ), 'out_summ' => sanitize_text_field( $_POST['out_summ'] ), 'currency' => __('$', 'wp-ai-assistant'), 'locale' => get_locale() ] ) );
     491        wp_die( $this->wpcurl( [ 'token' => sanitize_text_field( $this->options->token ), 'action' => 'getPayUrl', 'recurring' => (int) $_POST['recurring'], 'promocode' => $_POST['promocode'], 'type' => sanitize_text_field( $_POST['type'] ), 'billing' => sanitize_text_field( $_POST['billing'] ), 'out_summ' => sanitize_text_field( $_POST['out_summ'] ), 'currency' => __('$', 'wp-ai-assistant'), 'locale' => get_locale() ] ) );
    492492    }
    493493   
  • ai-wp-writer/trunk/index.php

    r3369840 r3373083  
    11<?php
    22/*
    3     Version: 4.2.3.3
     3    Version: 4.2.5
    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, GPT-5-nano, o3-mini, Dalle 3, GPT-image, FLUX.
  • ai-wp-writer/trunk/readme.txt

    r3369840 r3373083  
    33Tags: AI, generator, articles, content, image
    44Requires at least: 5.0.0
    5 Tested up to: 6.8.2
     5Tested up to: 6.8.3
    66Requires PHP: 5.6.0
    7 Stable tag: 4.2.3.3
     7Stable tag: 4.2.5
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
  • ai-wp-writer/trunk/tpl/workspace.php

    r3369840 r3373083  
    4646                    <div class="aiassist-option <?php echo ! @$this->info->subscribe->expire ? 'aiassist-lock' : ''?>" data-value="gpt_o3_mini"><?php echo esc_html( $this->info->labels->text_model_4 )?></div>
    4747                <?php } ?>
    48                 <input type="hidden" name="aiassist-text-model" class="aiassist-auto-options" id="aiassist-change-text-model" value="<?php echo $model ?>" />
     48                <input type="hidden" name="aiassist-text-model" id="aiassist-change-text-model-editor" value="<?php echo $model ?>" />
    4949            </div>
    5050        </div>
     
    262262                    <div class="aiassist-option <?php echo ! @$this->info->subscribe->expire ? 'aiassist-lock' : ''?>" data-value="gptImage"><?php echo esc_html( $this->info->labels->img_model_3 )?></div>
    263263                <?php } ?>
    264                 <input type="hidden" name="aiassist-image-model" class="aiassist-auto-options"  id="aiassist-change-image-model" value="<?php echo esc_attr( $model ) ?>" />
     264                <input type="hidden" name="aiassist-image-model" id="aiassist-change-image-model" value="<?php echo esc_attr( $model ) ?>" />
    265265            </div>
    266266           
     
    381381                        <div class="aiassist-option <?php echo ! @$this->info->subscribe->expire ? 'aiassist-lock' : ''?>" data-value="gptImage"><?php echo esc_html( $this->info->labels->img_model_3 )?></div>
    382382                    <?php } ?>
    383                     <input type="hidden" name="aiassist-image-model" class="aiassist-auto-options"  id="aiassist-tiny-image-model" value="<?php echo esc_attr( $model ) ?>" />
     383                    <input type="hidden" name="aiassist-image-model" id="aiassist-tiny-image-model" value="<?php echo esc_attr( $model ) ?>" />
    384384                </div>
    385385               
Note: See TracChangeset for help on using the changeset viewer.