Plugin Directory

Changeset 1650616


Ignore:
Timestamp:
05/03/2017 11:28:49 PM (9 years ago)
Author:
jczorkmid
Message:

updating supported WP version, changing version to 1.6.2.2

Location:
use-google-libraries/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • use-google-libraries/trunk/README.txt

    r1145152 r1650616  
    44Tags: javascript, performance, CDN, Google, jQuery, Prototype, MooTools, Dojo, Google AJAX Libraries API, YSlow, Page Speed
    55Requires at least: 3.4
    6 Tested up to: 4.1.3
    7 Stable tag: 1.6.2.1
     6Tested up to: 4.7.4
     7Stable tag: 1.6.2.2
    88
    99Allows your site to use common javascript libraries from Google's AJAX
     
    126126
    127127== Changelog ==
     128
     129= 1.6.2.2 =
     130
     131+ Updated supported version.
    128132
    129133= 1.6.2.1 =
     
    247251== Upgrade Notice ==
    248252
    249 = 1.6.2.1 =
    250 
    251 Bypass UGL in unsupported versions of WordPress (update now, and UGL will start working again when it's ready).
     253= 1.6.2.2 =
     254
     255Changed supported version to < WP 4.8
    252256
    253257== A Request ==
  • use-google-libraries/trunk/use-google-libraries.php

    r1145153 r1650616  
    44  Plugin URI: http://jasonpenney.net/wordpress-plugins/use-google-libraries/
    55  Description: Allows your site to use common javascript libraries from Google's AJAX Libraries CDN, rather than from WordPress's own copies.
    6   Version: 1.6.2.1
     6  Version: 1.6.2.2
    77  Author: Jason Penney
    88  Author URI: http://jasonpenney.net/
     
    1111*/
    1212
    13 /*  Copyright 2008-2013  Jason Penney (email : [email protected] )
     13/*  Copyright 2008-2017  Jason Penney (email : [email protected] )
    1414
    1515    This program is free software; you can redistribute it and/or modify
     
    3535        protected static $instance;
    3636        protected static $plugin_file = __FILE__;
    37         protected static $version = '1.6.2.1';
     37        protected static $version = '1.6.2.2';
    3838        protected static $noconflict_inject = "<script type='text/javascript'>try{jQuery.noConflict();}catch(e){};</script>\n";
    3939
     
    227227
    228228        static function configure_plugin() {
    229             if ( version_compare( get_bloginfo( 'version' ), '4.2', '>=') ) {
     229            if ( version_compare( get_bloginfo( 'version' ), '4.8', '>=') ) {
    230230                self::debug( 'Not yet qualified with this version of WordPress. Bypassing UGL.' );
    231231                return;
Note: See TracChangeset for help on using the changeset viewer.