Plugin Directory

Changeset 3266658


Ignore:
Timestamp:
04/04/2025 02:41:58 AM (12 months ago)
Author:
caseyak
Message:

Update files for 1.7

Location:
caseyak/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • caseyak/trunk/README.txt

    r3266404 r3266658  
    66Tested up to: 6.7.2
    77Requires PHP: 7.0
    8 Stable tag: 1.6
     8Stable tag: 1.7
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8383* Bug fixes & misc improvements
    8484
     85= 1.7 =
     86* Bug fixes & misc improvements
     87
    8588== Upgrade Notice ==
    8689
     
    108111= 1.6 =
    109112* Bug fixes & misc improvements
     113
     114= 1.7 =
     115* Bug fixes & misc improvements
  • caseyak/trunk/caseyak.php

    r3266404 r3266658  
    1717 * Plugin URI:        https://caseyak.com/wordpress
    1818 * Description:       The CaseYak AI Case Value Calculator.
    19  * Version:           1.6
     19 * Version:           1.7
    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.6' );
     38define( 'CASEYAK_VERSION', '1.7' );
    3939
    4040/**
  • caseyak/trunk/includes/class-caseyak.php

    r3065572 r3266658  
    173173        $plugin_public = new Caseyak_Public( $this->get_plugin_name(), $this->get_version() );
    174174
    175         $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_styles' );
    176175        $this->loader->add_action( 'wp_footer', $plugin_public, 'addScript' );
    177176    }
  • caseyak/trunk/public/class-caseyak-public.php

    r3263545 r3266658  
    5656
    5757    /**
    58      * Register the stylesheets for the public-facing side of the site.
    59      *
    60      * @since    1.0.0
    61      */
    62     public function enqueue_styles() {
    63 
    64         wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/caseyak-public.css', array(), $this->version, 'all' );
    65 
    66     }
    67 
    68     /**
    6958     * Adds the public CaseYak script to the body
    7059     *
     
    7463        $file = plugin_dir_path( dirname( __FILE__ ) ) . 'public/partials/caseyak-script.php';
    7564        $t = time();
    76         $mvaScript = plugin_dir_url( __FILE__ ) . 'js/mva.js?v=' . $t;
     65        $mvaScript = 'https://caseyak.com/assets/js/mva.js?v=' . $t;
    7766        if (file_exists($file)) {
    7867            // get instance settings
Note: See TracChangeset for help on using the changeset viewer.