Plugin Directory

Changeset 3263545


Ignore:
Timestamp:
03/28/2025 02:20:20 PM (12 months ago)
Author:
caseyak
Message:

Update files for 1.3

Location:
caseyak/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • caseyak/trunk/README.txt

    r3262847 r3263545  
    66Tested up to: 6.7.2
    77Requires PHP: 7.0
    8 Stable tag: 1.2
     8Stable tag: 1.3
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7171* Updates to our description to reflect new AI agent functionality
    7272
     73= 1.3 =
     74* Bug fixes & misc improvements
     75
    7376== Upgrade Notice ==
    7477
     
    8487= 1.2 =
    8588* 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  
    1717 * Plugin URI:        https://caseyak.com/wordpress
    1818 * Description:       The CaseYak AI Case Value Calculator.
    19  * Version:           1.2
     19 * Version:           1.3
    2020 * Author:            CaseYak
    2121 * Author URI:        https://caseyak.com
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'CASEYAK_VERSION', '1.2' );
     38define( 'CASEYAK_VERSION', '1.3' );
    3939
    4040/**
  • caseyak/trunk/public/class-caseyak-public.php

    r3065572 r3263545  
    7373    public function addScript() {
    7474        $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;
    7677        if (file_exists($file)) {
    7778            // get instance settings
Note: See TracChangeset for help on using the changeset viewer.