Changeset 1663
- Timestamp:
- 09/05/06 04:20:49
- Files:
-
- trunk/plagger/Changes (modified) (1 diff)
- trunk/plagger/MANIFEST (modified) (6 diffs)
- trunk/plagger/lib/Plagger.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/plagger/Changes
r1629 r1663 1 1 The latest, HTML version of this document is always available at http://plagger.org/trac.cgi/wiki/PlaggerChangeLog 2 2 3 == 0.7.11 (2006/08/30) == 4 5 === Core === 6 7 * Makefile.PL now prioritizes "default" plugins first, then otherwise alphabetically sorted 8 * testcritic test is now not in distribution since it's unnecessary and annoys people 9 * Updated POD document of some core modules (Mark Fowler) 10 * $ua->mirror(URI, $path) now works 11 * t::TestPlagger: allow strings rather than regexp in file_contains 12 * tools/plugin-start: optionally call svn/svk if it's detected 13 14 === New Plugins === 15 16 * Notify::Command: generic command caller plugin for notification (miyagawa) 17 18 === Plugins Updates === 19 20 * Search::Rast: moved some code to plugin.init. updated document 21 * Subscription::XPath: Accept non-absolute link as well 22 * Filter::StripRSSAd: some spacing fix for bloglines nasty content updates 23 * Filter::BloglinesContentNormalize: strip added by Bloglines 24 3 25 == 0.7.10 (2006/08/29) == 4 26 trunk/plagger/MANIFEST
r1662 r1663 49 49 assets/plugins/Filter-EntryFullText/japan_zdnet_com.yaml 50 50 assets/plugins/Filter-EntryFullText/juno.yaml 51 assets/plugins/Filter-EntryFullText/keizai_biz.yaml 51 52 assets/plugins/Filter-EntryFullText/kojii_net.yaml 52 53 assets/plugins/Filter-EntryFullText/kyodo.yaml … … 242 243 deps/Notify-Balloon.yaml 243 244 deps/Notify-Beep.yaml 245 deps/Notify-Command.yaml 244 246 deps/Notify-Eject-Win32.yaml 245 247 deps/Notify-Growl.yaml … … 267 269 deps/Publish-Speech-Win32.yaml 268 270 deps/Publish-SWF.yaml 271 deps/Publish-Takahashi.yaml 269 272 deps/Rule-Deduped.yaml 270 273 deps/Rule-Fresh.yaml … … 428 431 lib/Plagger/Plugin/Notify/Beep.pm 429 432 lib/Plagger/Plugin/Notify/Campfire.pm 433 lib/Plagger/Plugin/Notify/Command.pm 430 434 lib/Plagger/Plugin/Notify/Eject.pm 431 435 lib/Plagger/Plugin/Notify/Eject/darwin.pm … … 544 548 t/samples/config.ini 545 549 t/samples/delicious.xml 550 t/samples/evil.xml 546 551 t/samples/feed.xml 547 552 t/samples/feeds.txt … … 579 584 t/samples/top10news.xml 580 585 t/samples/vox.xml 586 t/samples/xoxo-relative.html 581 587 t/samples/xoxo.html 582 588 t/TestPlagger.pm trunk/plagger/lib/Plagger.pm
r1629 r1663 1 1 package Plagger; 2 2 use strict; 3 our $VERSION = '0.7.1 0';3 our $VERSION = '0.7.11'; 4 4 5 5 use 5.8.1;
