Changeset 3263545
- Timestamp:
- 03/28/2025 02:20:20 PM (12 months ago)
- Location:
- caseyak/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (3 diffs)
-
caseyak.php (modified) (2 diffs)
-
public/class-caseyak-public.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
caseyak/trunk/README.txt
r3262847 r3263545 6 6 Tested up to: 6.7.2 7 7 Requires PHP: 7.0 8 Stable tag: 1. 28 Stable tag: 1.3 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 71 71 * Updates to our description to reflect new AI agent functionality 72 72 73 = 1.3 = 74 * Bug fixes & misc improvements 75 73 76 == Upgrade Notice == 74 77 … … 84 87 = 1.2 = 85 88 * Updates to our description to reflect new AI agent functionality 89 90 = 1.3 = 91 * Bug fixes & misc improvements -
caseyak/trunk/caseyak.php
r3262847 r3263545 17 17 * Plugin URI: https://caseyak.com/wordpress 18 18 * Description: The CaseYak AI Case Value Calculator. 19 * Version: 1. 219 * Version: 1.3 20 20 * Author: CaseYak 21 21 * Author URI: https://caseyak.com … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define( 'CASEYAK_VERSION', '1. 2' );38 define( 'CASEYAK_VERSION', '1.3' ); 39 39 40 40 /** -
caseyak/trunk/public/class-caseyak-public.php
r3065572 r3263545 73 73 public function addScript() { 74 74 $file = plugin_dir_path( dirname( __FILE__ ) ) . 'public/partials/caseyak-script.php'; 75 $mvaScript = plugin_dir_url( __FILE__ ) . 'js/mva.js'; 75 $t = time(); 76 $mvaScript = plugin_dir_url( __FILE__ ) . 'js/mva.js?v=' . $t; 76 77 if (file_exists($file)) { 77 78 // get instance settings
Note: See TracChangeset
for help on using the changeset viewer.