Changeset 3427481
- Timestamp:
- 12/25/2025 10:58:18 PM (2 months ago)
- Location:
- release0/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
public/class-release0-public.php (modified) (1 diff)
-
release0.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
release0/trunk/README.txt
r3426333 r3427481 6 6 License: GPL 2.0 7 7 License URI: http://www.gnu.org/licenses/gpl-2.0.txt 8 Stable Tag: 1.0. 78 Stable Tag: 1.0.8 9 9 10 10 Develop sophisticated chat experiences effortlessly, no coding required. … … 33 33 34 34 == Changelog == 35 = 1.0.8 = 36 * Improved overall performance and responsiveness. Fixed multiple bugs to enhance reliability and stability. 37 35 38 = 1.0.7 = 36 39 * Major AI and productivity update adding DeepSeek and Perplexity integrations, plus new Password and SmartSheet components for secure inputs and structured workflows. -
release0/trunk/public/class-release0-public.php
r3324022 r3427481 61 61 sanitize_text_field(get_option('release0_init_snippet')) . 62 62 'Agent.setPrefilledVariables({ ...release0WpUser });'; 63 wp_register_script('release0-module-js', RELEASE0_PLUGIN_URL . 'js/release0.js', '', RELEASE0_VERSION, true); 64 wp_enqueue_script('release0-module-js', RELEASE0_PLUGIN_URL . 'js/release0.js', '', RELEASE0_VERSION, true); 63 $release0_script_url = plugins_url('../js/release0.js', __FILE__); 64 wp_register_script('release0-module-js', $release0_script_url, array(), RELEASE0_VERSION, true); 65 wp_enqueue_script('release0-module-js', $release0_script_url, array(), RELEASE0_VERSION, true); 65 66 wp_add_inline_script('release0-module-js', $release0_modules_js_string); 66 67 } 68 67 69 68 70 function is_path_excluded($excluded_paths) -
release0/trunk/release0.php
r3426333 r3427481 4 4 * Plugin Name: Release0 5 5 * Description: Automate customer interactions with Release0. Build AI agents that respond, collect data, and integrate seamlessly—without writing code. 6 * Version: 1.0. 76 * Version: 1.0.8 7 7 * Author: Release0 8 8 * Author URI: https://release0.com/ … … 17 17 } 18 18 19 define('RELEASE0_VERSION', '1.0. 7');20 define('RELEASE0_LIB_VERSION', '1.1. 9');19 define('RELEASE0_VERSION', '1.0.8'); 20 define('RELEASE0_LIB_VERSION', '1.1.10'); 21 21 define('RELEASE0_PLUGIN_URL', plugin_dir_url(__FILE__)); 22 22
Note: See TracChangeset
for help on using the changeset viewer.