Plugin Directory

Changeset 2475497


Ignore:
Timestamp:
02/16/2021 11:19:32 AM (5 years ago)
Author:
NickDuncan
Message:
  • v.1.0.02
  • Added a cache buster for the scripts.js file (CloudFlare users experiencing issues)
Location:
content-bot/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • content-bot/trunk/content-bot.php

    r2475458 r2475497  
    44Plugin URI: https://contentbot.ai
    55Description: Create amazing AI content snippets with OpenAI's GPT3 autoregressive language model that uses deep learning to produce human-like text.
    6 Version: 1.0.01
     6Version: 1.0.02
    77Author: NickDuncan
    88Author URI: https://codecabin.io
     
    1313
    1414/**
    15  *
     15 *
     16 * v.1.0.02
     17 * Added a cache buster for the scripts.js file (CloudFlare users experiencing issues)
     18 *
    1619 * v.1.0.01
    1720 * Added support for multi outputs
     
    2528
    2629global $cbaiVersion;
    27 $cbaiVersion = '1.0.01';
     30$cbaiVersion = '1.0.02';
    2831define( 'CBAI_PLUGIN_DIR_URL', plugin_dir_url(__FILE__) );
    2932define( 'CBAI_PLUGIN_DIR_PATH', plugin_dir_path(__FILE__) );
     
    3235
    3336function cbai_loadMyBlock() {
     37    global $cbaiVersion;
    3438    wp_enqueue_script(
    3539        'content-bot-gutenberg',
    3640        plugin_dir_url(__FILE__) . 'script.js',
    3741        array('wp-blocks','wp-editor'),
    38         true
     42        $cbaiVersion
    3943    );
    4044
  • content-bot/trunk/readme.txt

    r2475458 r2475497  
    7474== Changelog ==
    7575
     76= v.1.0.02 =
     77* Added a cache buster for the scripts.js file (CloudFlare users experiencing issues)
     78
    7679= v.1.0.01 =
    7780* Added support for multi outputs
Note: See TracChangeset for help on using the changeset viewer.