Plugin Directory

Changeset 1708138


Ignore:
Timestamp:
08/04/2017 12:41:53 AM (9 years ago)
Author:
wassereimer
Message:

New Version 17.08

Location:
easy-code-placement
Files:
265 added
5 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • easy-code-placement/trunk/easy-code-placement.php

    r1529213 r1708138  
    44 * Text Domain: easy-code-placement
    55 * Domain Path: /lang
    6  * Version: 16.11
     6 * Version: 17.08
    77 * Plugin URI: https://www.randnotizen.org/easy-code-placement/
    88 * Author: Jens Herdy
     
    3636// *********
    3737define( 'ECP_FILE', __FILE__ );
    38 define( 'ECP_VERSION', '16.11' );
     38define( 'ECP_VERSION', '17.08' );
    3939
    4040// ***********************
  • easy-code-placement/trunk/inc/functions.php

    r1529213 r1708138  
    100100            switch_to_blog( $blogid );
    101101           
    102             // if not updated yet to 3.2.1 still regenerate missing tables in multisite
    103             ecp_install();
    104             $wpdb->query( "UPDATE " . $wpdb->prefix . "ecp_data SET version='16.11'" );
    105             $wpdb->update( $wpdb->prefix . 'ecp_options', array( 'option_value' => '16.11' ), array( 'option_name' => 'version' ) );
     102            // multi update
     103            $wpdb->query( "UPDATE " . $wpdb->prefix . "ecp_data SET version='17.08'" );
     104            $wpdb->update( $wpdb->prefix . 'ecp_options', array( 'option_value' => '17.08' ), array( 'option_name' => 'version' ) );
    106105        }
    107106    switch_to_blog( $blog );
     
    110109        // single update
    111110        global $wpdb;
    112         $wpdb->query( "UPDATE " . $wpdb->prefix . "ecp_data SET version='16.11'" );
    113         $wpdb->update( $wpdb->prefix . 'ecp_options', array( 'option_value' => '16.11' ), array( 'option_name' => 'version' ) );
     111        $wpdb->query( "UPDATE " . $wpdb->prefix . "ecp_data SET version='17.08'" );
     112        $wpdb->update( $wpdb->prefix . 'ecp_options', array( 'option_value' => '17.08' ), array( 'option_name' => 'version' ) );
    114113    }
    115114}
     
    127126       
    128127    // check if we use the current version
    129     }elseif( $ecp_options_version === '16.11' ) {
     128    }elseif( $ecp_options_version === '17.08' ) {
    130129        return;
    131130       
     
    248247    wp_enqueue_script( 'ecp_admin_uikit_accordion_js', plugins_url( '/ext/uikit-2.27.1/js/components/accordion.min.js' , __FILE__ ), array( 'jquery' ), '2.27.1', false );
    249248    wp_enqueue_script( 'ecp_admin_uikit_tooltip_js', plugins_url( '/ext/uikit-2.27.1/js/components/tooltip.min.js' , __FILE__ ), array( 'jquery' ), '2.27.1', false );
    250     wp_enqueue_script( 'ecp_admin_uikit_pagination_js', plugins_url( '/ext/uikit-2.27.1/js/components/pagination.min.js' , __FILE__ ), array( 'jquery' ), '2.27.1', false );
    251     wp_enqueue_script( 'ecp_admin_clipboard', plugins_url( '/ext/clipboard.js-1.5.12/clipboard.min.js', __FILE__ ), array( 'jquery' ), '1.5.12', false );
     249    wp_enqueue_script( 'ecp_admin_clipboard', plugins_url( '/ext/clipboard.js-1.7.1/clipboard.min.js', __FILE__ ), array( 'jquery' ), '1.7.1', false );
    252250    wp_enqueue_script( 'ecp_admin_js', plugins_url( '/js/scripts.js', __FILE__ ), array( 'jquery' ), '16.10', true );
    253251    wp_enqueue_style( 'ecp_admin_css', plugins_url( '/css/style.css', __FILE__ ), array(), '16.10', 'all' );
  • easy-code-placement/trunk/readme.txt

    r1529213 r1708138  
    44Tags: ad, add, addthis, ads, adsense, adsense plugin, advertising, affilimatch, affilinet, align, alignment, amazon associates, any, audio, clicksor, code, codes, css, easy, flash, google, google adsense, html, infolinks, insert, java, javascript, keyword, keywords, multisite, network, offline, online, page, pages, php, place, placement, plugin, post, posts, shortcode, shortcodes, snippet, snippets, tag, tags, text, title, video, widget
    55Requires at least: 4.0
    6 Tested up to: 4.6.1
    7 Stable tag: 16.11
     6Tested up to: 4.8.1
     7Stable tag: 17.08
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    8787
    8888== Changelog ==
     89
     90= 17.08 =
     91* 04.08.2017
     92* Compatibility check for WordPress Version 4.8.1
     93* Updated clipboard.js to version 1.7.1
     94* Removed not used js from admin area
     95* Removed not used external plugins/scripts
    8996
    9097= 16.11 =
Note: See TracChangeset for help on using the changeset viewer.