Skip to content

Commit

Permalink
Item12520: add jquery-1.10.1 and jquery-2.0.2 bugfix releases
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk@16776 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
MichaelDaum authored and MichaelDaum committed May 31, 2013
1 parent a86a15a commit aae522a
Show file tree
Hide file tree
Showing 7 changed files with 18,663 additions and 5 deletions.
1 change: 1 addition & 0 deletions JQueryPlugin/data/System/JQueryPlugin.txt
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ reduce bandwidth and speed up interactive performance.
| Release: | %$RELEASE% |
| Version: | %$VERSION% |
| Change History: | <!-- versions below in reverse order -->&nbsp; |
| 31 May 2013: | (4.81) - Item12520: added jquery-1.10.1 and jquery-2.0.2 |
| 30 May 2013: | (4.80) - Item12519: upgraded superfish, supersubs and hoverintent |
| 29 May 2013: | (4.70) - Item12345: added jquery-1.9.1, jquery-1.10.0, jquery-2.0.0, jquery-2.0.1; \
removed themeswitcher as it isn't supported and non-functional anymore; \
Expand Down
4 changes: 2 additions & 2 deletions JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ use Foswiki::Plugins ();
use Foswiki::Plugins::JQueryPlugin::Plugins ();

# Simple decimal version, use parse method, no leading "v"
use version; our $VERSION = version->parse("4.80");
our $RELEASE = '4.80';
use version; our $VERSION = version->parse("4.81");
our $RELEASE = '4.81';
our $SHORTDESCRIPTION = 'jQuery <nop>JavaScript library for Foswiki';
our $NO_PREFS_IN_TOPIC = 1;

Expand Down
4 changes: 2 additions & 2 deletions JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/Config.spec
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ $Foswiki::cfg{JQueryPlugin}{NoConflict} = 0;
# a newer jQuery library. Starting with jquery-1.9.1 all deprecated methods have been removed from it and put into the "migrate" plugin.
$Foswiki::cfg{JQueryPlugin}{DefaultPlugins} = '';

# **SELECT jquery-1.7.1, jquery-1.7.2, jquery-1.8.0, jquery-1.8.1, jquery-1.8.2, jquery-1.8.3, jquery-1.9.1, jquery-1.10.0, jquery-2.0.0, jquery-2.0.1**
# **SELECT jquery-1.7.1, jquery-1.7.2, jquery-1.8.0, jquery-1.8.1, jquery-1.8.2, jquery-1.8.3, jquery-1.9.1, jquery-1.10.0, jquery-2.0.0, jquery-2.0.1, jquery-2.0.2**
# Note that starting with jQuery-1.9.1 deprecated features have been removed. If you are experiencing
# problems with plugins still using deprecated features then add the <code>migrate</code> plugin to the list
# of plugins loaded by default (see above). Further note that starting with jQuery-2.0 support for Internet Explorer 6/7/8
# has been dropped. Use jQuery-1.9 in case you still need to cover these browsers.
$Foswiki::cfg{JQueryPlugin}{JQueryVersion} = 'jquery-1.8.3';

# **SELECT , jquery-1.7.1, jquery-1.7.2, jquery-1.8.0, jquery-1.8.1, jquery-1.8.2, jquery-1.8.3, jquery-1.9.1, jquery-1.10.0**
# **SELECT , jquery-1.7.1, jquery-1.7.2, jquery-1.8.0, jquery-1.8.1, jquery-1.8.2, jquery-1.8.3, jquery-1.9.1, jquery-1.10.0, jquery-1.10.1**
# Use a different jQuery library for Internet Explorer 6/7/8. Since jQuery-2.0 these old browsers aren't suppored anymore.
# Use one of the jQuery-1.x libraries to still serve a compatible jQuery to these browsers. Or leave it empty to use the same
# library version for all browsers.
Expand Down
6 changes: 6 additions & 0 deletions JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -242,12 +242,18 @@ pub/System/JQueryPlugin/jquery-1.9.1.uncompressed.js 0644
pub/System/JQueryPlugin/jquery-1.10.0.js 0644
pub/System/JQueryPlugin/jquery-1.10.0.js.gz 0644
pub/System/JQueryPlugin/jquery-1.10.0.uncompressed.js 0644
pub/System/JQueryPlugin/jquery-1.10.1.js 0644
pub/System/JQueryPlugin/jquery-1.10.1.js.gz 0644
pub/System/JQueryPlugin/jquery-1.10.1.uncompressed.js 0644
pub/System/JQueryPlugin/jquery-2.0.0.js 0644
pub/System/JQueryPlugin/jquery-2.0.0.js.gz 0644
pub/System/JQueryPlugin/jquery-2.0.0.uncompressed.js 0644
pub/System/JQueryPlugin/jquery-2.0.1.js 0644
pub/System/JQueryPlugin/jquery-2.0.1.js.gz 0644
pub/System/JQueryPlugin/jquery-2.0.1.uncompressed.js 0644
pub/System/JQueryPlugin/jquery-2.0.2.js 0644
pub/System/JQueryPlugin/jquery-2.0.2.js.gz 0644
pub/System/JQueryPlugin/jquery-2.0.2.uncompressed.js 0644
pub/System/JQueryPlugin/Makefile 0644
pub/System/JQueryPlugin/Makefile.include 0644
pub/System/JQueryPlugin/plugins/autocomplete/jquery.autocomplete.css 0644
Expand Down
4 changes: 3 additions & 1 deletion JQueryPlugin/pub/System/JQueryPlugin/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ TARGET=\
jquery-1.8.3.js \
jquery-1.9.1.js \
jquery-1.10.0.js \
jquery-1.10.1.js \
jquery-2.0.0.js \
jquery-2.0.1.js
jquery-2.0.1.js \
jquery-2.0.2.js

-include Makefile.include
Loading

0 comments on commit aae522a

Please sign in to comment.