Skip to content

Commit

Permalink
Item11746: Prepare for Release
Browse files Browse the repository at this point in the history
 - Increment version numbers of all plugins
 - For decimal versions, no need to require version->parse
 - Update release notes of all plugins
 - Update release notes

git-svn-id: http://svn.foswiki.org/branches/Release01x01@16120 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
GeorgeClark authored and GeorgeClark committed Nov 28, 2012
1 parent 4971f42 commit 414e276
Show file tree
Hide file tree
Showing 42 changed files with 120 additions and 67 deletions.
2 changes: 2 additions & 0 deletions CommentPlugin/data/System/CommentPlugin.txt
Expand Up @@ -254,6 +254,8 @@ Another great extension from the <a style="text-decoration:none" href="http://wi
| Release: | %$RELEASE% |
| Version: | %$VERSION% |
| Change History: | |
| 28 Nov 2012 (1.1.6) | Foswikitask:Item11267: Convert to perl version string. <br />\
Foswikitask:Item12233: Don't generate comment links when rendering static html |
| 06 Apr 2012 | Foswikitask:Item11655: CommentPlugin types table is missing some shipped types. |
| 10 Apr 2011 | Foswikitask:Item10263: remove wrap="soft" to make templates validate. This version is shipped with Foswiki 1.1.3 |
| 19 Nov 2010 | Foswikitask:Item10050 - CommentPlugin prompt must not add newlines that prevent COMMENT inside TML tables |
Expand Down
4 changes: 2 additions & 2 deletions CommentPlugin/lib/Foswiki/Plugins/CommentPlugin.pm
Expand Up @@ -10,8 +10,8 @@ use warnings;
use Foswiki::Func ();
use Foswiki::Plugins ();

use version; our $VERSION = version->declare("v1.1.5");
our $RELEASE = '1.1.5';
use version; our $VERSION = version->declare("v1.1.6");
our $RELEASE = '1.1.6';
our $SHORTDESCRIPTION =
'Quickly post comments to a page without an edit/save cycle';
our $NO_PREFS_IN_TOPIC = 1;
Expand Down
5 changes: 4 additions & 1 deletion CompareRevisionsAddOn/data/System/CompareRevisionsAddOn.txt
Expand Up @@ -133,11 +133,14 @@ This Add-On comes pre-installed on Foswiki. You should only need to re-install i
---++ Add-On Info

| Plugin Author: | Foswiki:Main.KennethLavrsen |
| Copyright &copy;: | 2006, !JChristophFuchs; 2008-2010 Kenneth Lavrsen and Foswiki Contributors |
| Copyright &copy;: | 2006, !JChristophFuchs; 2008-2012 Kenneth Lavrsen and Foswiki Contributors |
| License: | GPL ([[http://www.gnu.org/copyleft/gpl.html][GNU General Public License]]) |
| Version: | %$VERSION% |
| Release: | %$RELEASE% |
| Change History: | <!-- versions below in reverse order -->&nbsp; |
| 28 Nov 2012 (1.1.8) | Foswikitask:Item11267: Convert to perl version strings, <br />\
Foswikitask:Item11755: Compare breaks characterset encoding. <br />\
Foswikitask:Item11930: Read settings from Main.SitePreferences |
| 06 Apr 2012 (1.1.7) | Foswikitask:Item11445: References to Sandbos should use %<nop>SANDBOXWEB% macro. Release with Foswiki 1.1.5. |
| 05 Dec 2011 (1.1.6) | Release with Foswiki 1.1.4 - minor code and documentation cleanup. |
| 28 May 2011 (1.1.6) | Foswikitask:Item10803 - Fix invalid Foswiki configuration affecting !ApacheLogin users introduced in =1.1.4= |
Expand Down
Expand Up @@ -27,11 +27,17 @@ Test: <nop>CompareRevisionsAddOnPlugin is %IF{"context CompareRevisionsAddOnPlug
---++ Plugin Info

| Plugin Author: | Foswiki:Main.KennethLavrsen |
| Copyright &copy;: | 2006, !JChristophFuchs; 2008-2010 Kenneth Lavrsen and Foswiki Contributors |
| Copyright &copy;: | 2006, !JChristophFuchs; 2008-2012 Kenneth Lavrsen and Foswiki Contributors |
| License: | GPL ([[http://www.gnu.org/copyleft/gpl.html][GNU General Public License]]) |
| Version: | %$VERSION% |
| Release: | %$RELEASE% |
| Change History: | <!-- versions below in reverse order -->&nbsp; |
| 28 Nov 2012 (1.1.8) | Foswikitask:Item11267: Convert to perl version strings, <br />\
Foswikitask:Item11755: Compare breaks characterset encoding. <br />\
Foswikitask:Item11930: Read settings from Main.SitePreferences |
| 06 Apr 2012 (1.1.7) | Foswikitask:Item11445: References to Sandbos should use %<nop>SANDBOXWEB% macro. Release with Foswiki 1.1.5. |
| 05 Dec 2011 (1.1.6) | Release with Foswiki 1.1.4 - minor code and documentation cleanup. |
| 28 May 2011 (1.1.6) | Foswikitask:Item10803 - Fix invalid Foswiki configuration affecting !ApacheLogin users introduced in =1.1.4= |
| 17 May 2011 (1.1.5) | Foswikitask:Item10677 - Speed optimization by avoiding doing pointless lookup for settings in plugin topic |
| 30 Apr 2011 (1.1.4) | Foswikitask:Item10566 - Add =compareauth= script for !ApacheLogin users %BR%\
- Switch to x.y.z version numbering %BR%\
Expand Down
@@ -1,12 +1,13 @@
package Foswiki::Contrib::CompareRevisionsAddOn;
use strict;

use version; our $VERSION = version->declare("v1.1.7");
# Also update CompareRevisionsAddOnPlugin
use version; our $VERSION = version->declare("v1.1.8");

# This is a free-form string you can use to "name" your own plugin version.
# It is *not* used by the build automation tools, but is reported as part
# of the version number in PLUGINDESCRIPTIONS. Keep in sync with $VERSION
our $RELEASE = '1.1.7';
our $RELEASE = '1.1.8';

our $SHORTDESCRIPTION =
'Compares two revisions of a document. In contrast to normal _rdiff_, the comparison is done with the rendered HTML output.';
Expand Down
Expand Up @@ -17,8 +17,9 @@ use warnings;

use Foswiki;

use version; our $VERSION = version->declare("v1.1.6");
our $RELEASE = '1.1.6';
# Keep this in sync with CompareRevsionsAddOn
use version; our $VERSION = version->declare("v1.1.8");
our $RELEASE = '1.1.8';

# Name of this Plugin, only used in this module
our $pluginName = 'CompareRevisionsAddonPlugin';
Expand Down Expand Up @@ -67,7 +68,7 @@ sub _handleRdiff2Compare {
__END__
Foswiki - The Free and Open Source Wiki, http://foswiki.org/
Copyright (C) 2008-2010 Foswiki Contributors. Foswiki Contributors
Copyright (C) 2008-2012 Foswiki Contributors. Foswiki Contributors
are listed in the AUTHORS file in the root of this distribution.
NOTE: Please extend that file, not this notice.
Expand Down
3 changes: 2 additions & 1 deletion EditTablePlugin/data/System/EditTablePlugin.txt
Expand Up @@ -195,11 +195,12 @@ Test if the Plugin is correctly installed:

---++ Plugin Info

| Copyright: | &copy; 2008-2012, Arthur Clemens and Foswiki Contributors; Copyright &copy; 2002-2007 Peter Thoeny, peter@thoeny.org and TWiki Contributors |
| Copyright: | &copy; 2008-2012, Arthur Clemens and Foswiki Contributors; Copyright &copy; 2002-2007 Peter Thoeny, peter@thoeny.org and TWiki Contributors |
| License: | GPL ([[http://www.gnu.org/copyleft/gpl.html][GNU General Public License]]) |
| Version: | %$VERSION% |
| Release: | %$RELEASE% |
| Change History: | <!-- specify latest version first -->&nbsp; |
| 28 Nov 2012: | 4.43: Foswikitask:Item11267: Convert to perl version strings. Release with Foswiki 1.1.6 |
| 06 Apr 2012: | 4.42: Foswikitask:Item11445: References to =Sandbox= should use %<nop>SANDBOXWEB% macro. Release with Foswiki 1.1.5. |
| 05 Dec 2011: | 4.41: Version released with Foswiki 1.1.4. Minor code and documentation cleanup. |
| 11 Apr 2011: | 4.40: Version released with Foswiki 1.1.3. Only a minor change related to how the plugin is being upgraded |
Expand Down
5 changes: 2 additions & 3 deletions EditTablePlugin/lib/Foswiki/Plugins/EditTablePlugin.pm
Expand Up @@ -7,12 +7,11 @@ package Foswiki::Plugins::EditTablePlugin;
use strict;
use warnings;

# simple decimal version, use parse method with no leading "v"
use version; our $VERSION = version->parse("4.42");
our $VERSION = '4.43';

# Please note that the second is now two digit.
# Someone increased 4.22 to 4.3 which is not correct.
our $RELEASE = '4.42';
our $RELEASE = '4.43';

our $pluginName = 'EditTablePlugin';
our $ENCODE_START = '--EditTableEncodeStart--';
Expand Down
1 change: 1 addition & 0 deletions FamFamFamContrib/data/System/FamFamFamContrib.txt
Expand Up @@ -70,6 +70,7 @@ eg
| Version: | %$VERSION% |
| Release: | %$RELEASE% |
| Change History: | <!-- versions below in reverse order -->&nbsp; |
| 28 Nov 2012 (1.4.5) | Released with Foswiki 1.1.6. Foswikitask:Item11267 - Convert to perl version strings. |
| 06 Apr 2012 (1.4.4) | Released with Foswiki 1.1.5. Foswikitask:Item11383 - remove redundant %<nop>REVARG% from templates. |
| 12 Dec 2011 (1.4.3) | Released with Foswiki 1.1.4. Foswikitask:Item11104 - Added =trash-small= icon to !DocumentGraphics. Foswikitask:Item11016 - Print should pass through URL parameters. Foswikitask:Item11341 - Add a Cog icon. |
| 03 May 2011 (1.4.1) | Foswikitask:Item10699 - Update METADATA for attachments |
Expand Down
4 changes: 2 additions & 2 deletions FamFamFamContrib/lib/Foswiki/Contrib/FamFamFamContrib.pm
Expand Up @@ -4,8 +4,8 @@ package Foswiki::Contrib::FamFamFamContrib;
use strict;
use warnings;

use version; our $VERSION = version->declare("v1.4.4");
our $RELEASE = '1.4.4';
use version; our $VERSION = version->declare("v1.4.5");
our $RELEASE = '1.4.5';
our $SHORTDESCRIPTION =
'FamFamFam Silk is a smooth, free icon set, containing over 2000 icons';

Expand Down
3 changes: 2 additions & 1 deletion HistoryPlugin/data/System/HistoryPlugin.txt
Expand Up @@ -57,11 +57,12 @@ __Note:__ You do not need to install anything on the browser to use this plugin.
-->

| Plugin Author: | Foswiki:Main.KennethLavrsen |
| Copyright &copy;: | 2006, !JChristophFuchs; 2008-2011 Kenneth Lavrsen and Foswiki Contributors |
| Copyright &copy;: | 2006, !JChristophFuchs; 2008-2012 Kenneth Lavrsen and Foswiki Contributors |
| License: | GPL ([[http://www.gnu.org/copyleft/gpl.html][GNU General Public License]]) |
| Version: | %$VERSION% |
| Release: | %$RELEASE% |
| Change History: | <!-- versions below in reverse order -->&nbsp; |
| 28 Nov 2012: | 1.11 Version released with Foswiki 1.1.6. Change to perl version strings |
| 11 Apr 2011: | 1.10 Version released with Foswiki 1.1.3. Only a minor change related to how the plugin is being upgraded |
| 13 Mar 2011: | 1.9 Arthur Clemens: added parameter =versions= as a more versatile alternative to =rev1=, =rev2=, =nrev= and =reverse=. |
| 13 Mar 2011: | 1.8 Arthur Clemens: fix rendering of =REVINFO= date and time parameters; add unit tests. |
Expand Down
8 changes: 4 additions & 4 deletions HistoryPlugin/lib/Foswiki/Plugins/HistoryPlugin.pm
Expand Up @@ -9,9 +9,9 @@ use Error qw(:try);
use Foswiki::AccessControlException ();

# =========================
# Simple decimal version, use parse, and no leading "v"
use version; our $VERSION = version->parse("1.10");
our $RELEASE = '1.10';
# Simple decimal version, no leading "v"
our $VERSION = "1.11";
our $RELEASE = '1.11';
our $NO_PREFS_IN_TOPIC = 1;
our $SHORTDESCRIPTION = 'Shows a complete history of a topic';

Expand Down Expand Up @@ -248,7 +248,7 @@ sub _handleHeadFoot {
__END__
Foswiki - The Free and Open Source Wiki, http://foswiki.org/
Copyright (C) 2008-2011 Foswiki Contributors. Foswiki Contributors
Copyright (C) 2008-2012 Foswiki Contributors. Foswiki Contributors
are listed in the AUTHORS file in the root of this distribution.
NOTE: Please extend that file, not this notice.
Expand Down
4 changes: 2 additions & 2 deletions InterwikiPlugin/data/System/InterwikiPlugin.txt
Expand Up @@ -52,12 +52,12 @@ The =INTERWIKIPLUGIN_INTERLINKFORMAT= supports a number of formatting tokens:
---++ Plugin Info

| Author: | Foswiki:%USERSWEB%.AndreaSterbini, TWiki:Main.PeterThoeny |
| Copyright: | &copy; 2001-2007, Andrea Sterbini, Peter Thoeny ([[http://www.twiki.net/][TWIKI.NET]]), 2007-2011 %SYSTEMWEB%.ProjectContributor |
| Copyright: | &copy; 2001-2007, Andrea Sterbini, Peter Thoeny ([[http://www.twiki.net/][TWIKI.NET]]), 2007-2012 %SYSTEMWEB%.ProjectContributor |
| License: | GPL ([[http://www.gnu.org/copyleft/gpl.html][GNU General Public License]]) |
| Version: | %$VERSION% |
| Release: | %$RELEASE% |
| Change History: | <!-- versions below in reverse order -->&nbsp; |
| 12 Nov 1012: (1.1.6) | update CPAN link to goto metacpan and remove some ancient links that have been broken for years |
| 12 Nov 1012: (1.1.6) | update CPAN link to goto metacpan and remove some ancient links that have been broken for years. Convert to perl version strings |
| 05 Dec 2011: (1.1.2) | Release with Foswiki 1.1.4 - Minor code and documentation cleanup |
| 30 Oct 2011: | Foswiki:Main.GeorgeClark - Add support for quoted page references from TimotheLitt (Foswikitask:Item10872) |
| 10 Apr 2011: | Foswiki:Main.AndrewJones - Links can now be formatted (Foswikitask:Item10619) |
Expand Down
2 changes: 1 addition & 1 deletion InterwikiPlugin/lib/Foswiki/Plugins/InterwikiPlugin.pm
Expand Up @@ -181,7 +181,7 @@ sub _trimWhitespace {
__END__
Foswiki - The Free and Open Source Wiki, http://foswiki.org/
Copyright (C) 2008-2011 Foswiki Contributors. Foswiki Contributors
Copyright (C) 2008-2012 Foswiki Contributors. Foswiki Contributors
are listed in the AUTHORS file in the root of this distribution.
NOTE: Please extend that file, not this notice.
Expand Down
4 changes: 4 additions & 0 deletions JQueryPlugin/data/System/JQueryPlugin.txt
Expand Up @@ -136,6 +136,10 @@ reduce bandwidth and speed up interactive performance.
| Release: | %$RELEASE% |
| Version: | %$VERSION% |
| Change History: | <!-- versions below in reverse order -->&nbsp; |
| 28 Nov 2012: | (4.45) - Release with Foswiki 1.1.6 <br />\
Item12192: Fix some layout issues<br />\
Item12214: default jquery-ui theme overrides manual JQTHEME choice.<br />\
Item12215: Hide JQLoader using CSS. |
| 26 Oct 2012: | Item12195: Default jquery version is jquery-1.8.2 now |
| 24 Oct 2012: | Item12190: Chili enabled by default, warning demoted to a note. |
| 17 Oct 2012: | (4.44) - Item12048: upgrade to jquery-ui-1.8.23; added jquery-1.8.2 |
Expand Down
6 changes: 3 additions & 3 deletions JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin.pm
Expand Up @@ -14,9 +14,9 @@ Container for jQuery and plugins
use Foswiki::Plugins ();
use Foswiki::Plugins::JQueryPlugin::Plugins ();

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

Expand Down
2 changes: 1 addition & 1 deletion JSCalendarContrib/data/System/JSCalendarContrib.txt
Expand Up @@ -82,7 +82,7 @@ Another great Foswiki extension from the <a style="text-decoration:none" href="h
| Version: | %$VERSION% |
| Release: | %$RELEASE% |
| Change History: | |
| 01 Nov 2012 | Button icon made transparent. |
| 28 Nov 2012 | Foswikitask:Item12213: Button icon made transparent. Foswikitask:Item11267: Convert to perl version strings. |
| 06 Apr 2012 | Foswikitask:Item11568: Re-introduce style options and updated default calendar style.%BR%\
Foswikitask:Item11701: Fallback to numbers for month if month name is expected, but numbers are entered. |
| 29 Nov 2011 | Revert changes since 30 July. Bump release to 1.5. |
Expand Down
4 changes: 2 additions & 2 deletions JSCalendarContrib/lib/Foswiki/Contrib/JSCalendarContrib.pm
Expand Up @@ -18,8 +18,8 @@ use warnings;

use Foswiki::Func (); # The plugins API

use version; our $VERSION = version->declare("v1.5.3");
our $RELEASE = '1.5.3';
use version; our $VERSION = version->declare("v1.5.4");
our $RELEASE = '1.5.4';
our $SHORTDESCRIPTION =
"[[http://dynarch.com/mishoo/calendar.epl][Mishoo JSCalendar]] date and time picker, packaged for use by plugins, skins and add-ons";

Expand Down
4 changes: 3 additions & 1 deletion MailerContrib/data/System/MailerContrib.txt
Expand Up @@ -247,11 +247,13 @@ Many thanks to the following sponsors for supporting this work:
* [[http://wikigardens.com][WikiGardens]]

| Author: | [[http://c-dot.co.uk][Crawford Currie]] |
| Copyright &copy;: | 2004, Wind River Systems; 2009-2010 Foswiki Contributors |
| Copyright &copy;: | 2004, Wind River Systems; 2009-2012 Foswiki Contributors |
| License: | GPL |
| Version: | %$VERSION% |
| Release: | %$RELEASE% |
| Change History: | |
| 2.5.4 (28 Nov 2012) | Foswiki:Tasks/Item11918: Instructions for blocking email are incorrect. <br />\
Foswiki:Tasks:Item11267: Convert to perl version strings. |
| 2.5.3 (11 Sep 2012) | Foswiki:Tasks/Item12072: undocument non-existent =-user= parameter and update faulty examples |
| | Foswiki:Tasks/Item11138: Empty subscription without trailing space after colon is treated as wildcard for all topics |
| 2.5.2 (2 Dec 2011) | Foswiki 1.1.4 Release: Foswiki:Tasks/Item11138: Foswiki:Tasks/Item11131: Document behavior with group subscriptions, Resolve issue with trailing spaces impacting subscriptions |
Expand Down
6 changes: 3 additions & 3 deletions MailerContrib/lib/Foswiki/Contrib/MailerContrib.pm
Expand Up @@ -26,8 +26,8 @@ use Foswiki::Contrib::MailerContrib::WebNotify ();
use Foswiki::Contrib::MailerContrib::Change ();
use Foswiki::Contrib::MailerContrib::UpData ();

use version; our $VERSION = version->declare("v2.5.3");
our $RELEASE = '2.5.3';
use version; our $VERSION = version->declare("v2.5.4");
our $RELEASE = '2.5.4';
our $SHORTDESCRIPTION = 'Supports email notification of changes';

our $verbose = 0;
Expand Down Expand Up @@ -601,7 +601,7 @@ sub _sendNewsletterMail {
__END__
Module of Foswiki - The Free and Open Source Wiki, http://foswiki.org/
Copyright (C) 2008-2009 Foswiki Contributors. All Rights Reserved.
Copyright (C) 2008-2012 Foswiki Contributors. All Rights Reserved.
Foswiki Contributors are listed in the AUTHORS file in the root
of this distribution. NOTE: Please extend that file, not this notice.
Expand Down
6 changes: 3 additions & 3 deletions MailerContrib/lib/Foswiki/Plugins/MailerContribPlugin.pm
Expand Up @@ -4,8 +4,8 @@ package Foswiki::Plugins::MailerContribPlugin;
use strict;
use warnings;

use version; our $VERSION = version->declare("v2.5.3");
our $RELEASE = '2.5.3';
use version; our $VERSION = version->declare("v2.5.4");
our $RELEASE = '2.5.4';
our $SHORTDESCRIPTION = 'Supports e-mail notification of changes';
our $NO_PREFS_IN_TOPIC = 1;

Expand Down Expand Up @@ -45,7 +45,7 @@ sub _restNotify {
__END__
Foswiki - The Free and Open Source Wiki, http://foswiki.org/
Copyright (C) 2008-2010 Foswiki Contributors. Foswiki Contributors
Copyright (C) 2008-2012 Foswiki Contributors. Foswiki Contributors
are listed in the AUTHORS file in the root of this distribution.
NOTE: Please extend that file, not this notice.
Expand Down
1 change: 1 addition & 0 deletions PreferencesPlugin/data/System/PreferencesPlugin.txt
Expand Up @@ -37,6 +37,7 @@ In edit mode, the edit button is replaced by Save and Cancel buttons, with their
| Version: | %$VERSION% |
| Release: | %$RELEASE% |
| Change History: | <!-- versions below in reverse order -->&nbsp; |
| 28 Nov 2012 (1.1.4) | Foswikitask:Item11267: Convert to perl version strings |
| 06 Apr 2012 (1.1.3) | Foswikitask:Item11445: Use %<nop>SANDBOXWEB% macro. |
| 02 Dec 2011 (1.1.2) | Minor updates for internal compatibility with Foswiki |
| 29 Jun 2011 (1.1.1) | Switch to x.y.z version numbering. Minor update to play better with custom formfield types ( =Foswiki::Meta->new()= behaviour ) |
Expand Down
4 changes: 2 additions & 2 deletions PreferencesPlugin/lib/Foswiki/Plugins/PreferencesPlugin.pm
Expand Up @@ -15,8 +15,8 @@ use Foswiki::Plugins (); # For the API version

use vars qw( @shelter );

use version; our $VERSION = version->declare("v1.1.3");
our $RELEASE = '1.1.3';
use version; our $VERSION = version->declare("v1.1.4");
our $RELEASE = '1.1.4';
our $SHORTDESCRIPTION =
'Allows editing of preferences using fields predefined in a form';
our $NO_PREFS_IN_TOPIC = 1;
Expand Down
1 change: 1 addition & 0 deletions RenderListPlugin/data/System/RenderListPlugin.txt
Expand Up @@ -345,6 +345,7 @@ Themes are defined by setting a [[%SYSTEMWEB%.PreferenceSettings][preference]] c
| Version: | %$VERSION% |
| Release: | %$RELEASE% |
| Change History: | <!-- versions below in reverse order -->&nbsp; |
| 28 Nov 2012: | 2.2.7: Foswiki 1.1.6 release. Item11267: Convert to perl version string. |
| 06 Apr 2012: | 2.2.6: Foswiki 1.1.5 release. Item11453: convert to preRenderingHandler. |
| 05 Dec 2011: | 2.2.5: Foswiki 1.1.4 release. Minor code and topic cleanup. |
| 15 Jul 2011: | 2.2.4: fixed line parser - Foswikitask:Item10969 |
Expand Down
6 changes: 3 additions & 3 deletions RenderListPlugin/lib/Foswiki/Plugins/RenderListPlugin.pm
Expand Up @@ -30,8 +30,8 @@ use vars qw(
$pubUrl $attachUrl
);

use version; our $VERSION = version->declare("v2.2.6");
our $RELEASE = '2.2.6';
use version; our $VERSION = version->declare("v2.2.7");
our $RELEASE = '2.2.7';
our $pluginName = 'RenderListPlugin'; # Name of this Plugin
our $NO_PREFS_IN_TOPIC = 1;
our $SHORTDESCRIPTION = 'Render bullet lists in a variety of formats';
Expand Down Expand Up @@ -342,7 +342,7 @@ sub fixImageTag {
__END__
Foswiki - The Free and Open Source Wiki, http://foswiki.org/
Copyright (C) 2008-2010 Foswiki Contributors. Foswiki Contributors
Copyright (C) 2008-2012 Foswiki Contributors. Foswiki Contributors
are listed in the AUTHORS file in the root of this distribution.
NOTE: Please extend that file, not this notice.
Expand Down
1 change: 1 addition & 0 deletions SlideShowPlugin/data/System/SlideShowPlugin.txt
Expand Up @@ -193,6 +193,7 @@ The part between the rulers defines the default format of a slide:
| Version: | %$VERSION% |
| Release: | %$RELEASE% |
| Change History: | <!-- versions below in reverse order -->&nbsp; |
| 28 Nov 2012: | 2.1.6: Foswikitask:Item11267: Convert to perl version strings. |
| 06 Apr 2012: | 2.1.5: Foswiki:Main.RichMorin documentation cleanup%BR%\
Foswikitask:Item11649: SlideShowPlugin un-necessarily breaks jquery widgets (TABPANES for eg are just blank). |
| 28 Aug 2011: | 2.1.4: URL encoding of query parameters did not include the parameter names |
Expand Down
4 changes: 2 additions & 2 deletions SlideShowPlugin/lib/Foswiki/Plugins/SlideShowPlugin.pm
Expand Up @@ -9,8 +9,8 @@ use vars qw(
$web $topic $user $installWeb $debug $addedHead
);

use version; our $VERSION = version->declare("v2.1.5");
our $RELEASE = '2.1.5';
use version; our $VERSION = version->declare("v2.1.6");
our $RELEASE = '2.1.6';
our $SHORTDESCRIPTION =
'Create web based presentations based on topics with headings';
our $NO_PREFS_IN_TOPIC = 1;
Expand Down

0 comments on commit 414e276

Please sign in to comment.