diff --git a/CompareRevisionsAddOn/data/System/CompareRevisionsAddOn.txt b/CompareRevisionsAddOn/data/System/CompareRevisionsAddOn.txt index f7d9e281c6..e7a86df85f 100755 --- a/CompareRevisionsAddOn/data/System/CompareRevisionsAddOn.txt +++ b/CompareRevisionsAddOn/data/System/CompareRevisionsAddOn.txt @@ -165,8 +165,9 @@ __Note:__ You do not need to install anything on the browser to use this add-on. | Version: | %$VERSION% | | Release: | %$RELEASE% | | Change History: |   | +| 10 Apr 2011 | Foswikitask:Item10401 - Call logEvent in compare
Foswikitask:Item10402 - Don't use obsolete template for missing web/topic
Version shipping with 1.1.3 | | 21 Oct 2010 | Added dependency of HTML::Tree to installer and to core MANIFEST so you see it listed in configure | -| 04 Oct 2010 | Foswikitask:Item9774: Add CompareRevisionsAddOn.pm stub module to provide Version & Release strings | +| 04 Oct 2010 | Foswikitask:Item9774 - Add CompareRevisionsAddOn.pm stub module to provide Version & Release strings | | 31 Jul 2010 | Paul Harvey: Foswikitask:Item9415 - Documentation updates | | 19 Sep 2009 | Kenneth Lavrsen: Expert settings in plugins makes configure fail to save. Using the hidden (H) setting instead which is much better anyway as this is not a setting to be altered by a user. | | 18 Sep 2009 | Kenneth Lavrsen: Expert settings in plugins makes configure fail to save. Settings therefore un-experted again | diff --git a/CompareRevisionsAddOn/data/System/CompareRevisionsAddonPlugin.txt b/CompareRevisionsAddOn/data/System/CompareRevisionsAddonPlugin.txt index badc3ce2fd..8136314104 100755 --- a/CompareRevisionsAddOn/data/System/CompareRevisionsAddonPlugin.txt +++ b/CompareRevisionsAddOn/data/System/CompareRevisionsAddonPlugin.txt @@ -32,6 +32,7 @@ Test: CompareRevisionsAddOnPlugin is %IF{"context CompareRevisionsAddOnPlug | Version: | %$VERSION% | | Release: | %$RELEASE% | | Change History: |   | +| 10 Apr 2011 | Foswikitask:Item10401 - Call logEvent in compare
Foswikitask:Item10402 - Don't use obsolete template for missing web/topic.
Version shipping with 1.1.3 | | 21 Oct 2010 | Version shipping with 1.1.1 | | 12 Sep 2009 | Kenneth Lavrsen: Fixed problem with tables always showing up as changed even when they were not | | 09 Aug 2009 | Plugin is now a default plugin shipped with Foswiki. It will later have its function integrated in core in a future Foswiki version so its life as default plugin is temporary. Changed its switchboard setting to EXPERT so it is hidden in configure. You should never need to change this anyway. | diff --git a/CompareRevisionsAddOn/lib/Foswiki/Contrib/CompareRevisionsAddOn.pm b/CompareRevisionsAddOn/lib/Foswiki/Contrib/CompareRevisionsAddOn.pm index e8bbf439f7..0200e2a05a 100644 --- a/CompareRevisionsAddOn/lib/Foswiki/Contrib/CompareRevisionsAddOn.pm +++ b/CompareRevisionsAddOn/lib/Foswiki/Contrib/CompareRevisionsAddOn.pm @@ -9,7 +9,7 @@ our $VERSION = '$Rev: 4995 $'; # 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. -our $RELEASE = '21 Oct 2010'; +our $RELEASE = '10 Apr 2011'; our $SHORTDESCRIPTION = 'Compares two revisions of a document. In contrast to normal _rdiff_, the comparison is done with the rendered HTML output.'; diff --git a/CompareRevisionsAddOn/lib/Foswiki/Plugins/CompareRevisionsAddonPlugin.pm b/CompareRevisionsAddOn/lib/Foswiki/Plugins/CompareRevisionsAddonPlugin.pm index 79fbb52970..c3e69ddef6 100755 --- a/CompareRevisionsAddOn/lib/Foswiki/Plugins/CompareRevisionsAddonPlugin.pm +++ b/CompareRevisionsAddOn/lib/Foswiki/Plugins/CompareRevisionsAddonPlugin.pm @@ -29,7 +29,7 @@ $VERSION = '$Rev: 8713$'; # 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. -$RELEASE = '21 Oct 2010'; +$RELEASE = '10 Apr 2011'; # Name of this Plugin, only used in this module $pluginName = 'CompareRevisionsAddonPlugin';