Plugin Directory

Changeset 1641252


Ignore:
Timestamp:
04/20/2017 10:41:09 AM (9 years ago)
Author:
priberam
Message:

Prevents cache on scripts when updating to new versions

Location:
flip/trunk
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • flip/trunk/flip.php

    r1631830 r1641252  
    44 * Plugin URI: https://www.flip.pt/Produtos/Plugin-do-FLiP-para-WordPress
    55 * Description: Portuguese spell checker, grammar checker and style checker, with or without the Spelling Reform of 1990.
    6  * Version: 1.5.2
     6 * Version: 1.5.3
    77 * Author: Priberam
    88 * Author URI: http://www.priberam.pt
     
    9292    // Declare script for new button
    9393    public function flip_add_tinymce_plugin( $plugin_array ) {
    94         $plugin_array['flip'] = plugins_url() .'/flip/flip_tinymce.js?v=1.5.1';
     94        $data = get_plugin_data(__FILE__);
     95        $plugin_array['murmurhash'] = plugins_url() .'/flip/murmurhash3_gc.js?v=' . $data['Version'];
     96        $plugin_array['flip_engine'] = plugins_url() .'/flip/engine.js?v=' . $data['Version'];
     97        $plugin_array['flip'] = plugins_url() .'/flip/flip_tinymce.js?v=' . $data['Version'];
    9598        return $plugin_array;
    9699    }
  • flip/trunk/readme.txt

    r1631830 r1641252  
    44Requires at least: 4.3
    55Tested up to: 4.7
    6 Stable tag: 1.5.2
     6Stable tag: 1.5.3
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    3636
    3737== Changelog ==
     38= 1.5.3 =
     39* Prevents cache on scripts when updating to new versions
    3840
    3941= 1.5.2 =
     
    4850
    4951== Upgrade Notice ==
     52= 1.5.3 =
     53* Prevents cache on scripts when updating to new versions
    5054
    5155= 1.5.2 =
Note: See TracChangeset for help on using the changeset viewer.