Changeset 2475497
- Timestamp:
- 02/16/2021 11:19:32 AM (5 years ago)
- Location:
- content-bot/trunk
- Files:
-
- 2 edited
-
content-bot.php (modified) (4 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
content-bot/trunk/content-bot.php
r2475458 r2475497 4 4 Plugin URI: https://contentbot.ai 5 5 Description: 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.0 16 Version: 1.0.02 7 7 Author: NickDuncan 8 8 Author URI: https://codecabin.io … … 13 13 14 14 /** 15 * 15 * 16 * v.1.0.02 17 * Added a cache buster for the scripts.js file (CloudFlare users experiencing issues) 18 * 16 19 * v.1.0.01 17 20 * Added support for multi outputs … … 25 28 26 29 global $cbaiVersion; 27 $cbaiVersion = '1.0.0 1';30 $cbaiVersion = '1.0.02'; 28 31 define( 'CBAI_PLUGIN_DIR_URL', plugin_dir_url(__FILE__) ); 29 32 define( 'CBAI_PLUGIN_DIR_PATH', plugin_dir_path(__FILE__) ); … … 32 35 33 36 function cbai_loadMyBlock() { 37 global $cbaiVersion; 34 38 wp_enqueue_script( 35 39 'content-bot-gutenberg', 36 40 plugin_dir_url(__FILE__) . 'script.js', 37 41 array('wp-blocks','wp-editor'), 38 true42 $cbaiVersion 39 43 ); 40 44 -
content-bot/trunk/readme.txt
r2475458 r2475497 74 74 == Changelog == 75 75 76 = v.1.0.02 = 77 * Added a cache buster for the scripts.js file (CloudFlare users experiencing issues) 78 76 79 = v.1.0.01 = 77 80 * Added support for multi outputs
Note: See TracChangeset
for help on using the changeset viewer.