Changeset 150
- Timestamp:
- 02/25/06 17:48:38
- Files:
-
- trunk/plagger/Changes (modified) (1 diff)
- trunk/plagger/MANIFEST (modified) (3 diffs)
- trunk/plagger/lib/Plagger.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/plagger/Changes
r112 r150 1 1 The latest, HTML version of this document is always available at http://plagger.org/trac.cgi/wiki/PlaggerChangeLog 2 3 == 0.5.3 (2006/02/25) == 4 5 === Core === 6 7 * Added aggregator.finalize, publish.entry and publish.init hook 8 * Added Plagger::Rule::Fresh to match with 'fresh' entries (thanks to youpy) 9 * Fixed bug with SmartFeed creating duplicated entries #61 10 * Support log:level global configuration flag to set min loglevel 11 12 === Plugins === 13 14 * Added Publish::Spotlight to create WebBookmark searchable with Spotlight (youpy) 15 * Added Search::Namazu to create HTML files searchable with Namazu (miyagawa) 16 * Added Search::Rast to index entries with Rast (Yappo) 17 * Added Publish::MTWidget to publish Movable Type Sidebar Manager widget (miyagawa) 18 * Added an option 'show_icon: 1', to show users pic in Frepa and Mixi custom feeds 19 * Fixed Subscription::Mailman to handle subject prefixes without index 20 * Publish::IRC now has 'announce: action' option to use CTCP ACTION rather than NOTICE 21 * Filter::StripRSSAd now strips Rakuten Hiroba (plaza.rakuten.co.jp) ad pattern 22 * Fixed CustomFeed::Frepa to complete the trimmed title under fetch_body mode 23 * Fixed typo in Subscription::HatenaRSS 2 24 3 25 == 0.5.2 (2006/02/22) == trunk/plagger/MANIFEST
r113 r150 36 36 lib/Plagger/Plugin/Publish/IRC.pm 37 37 lib/Plagger/Plugin/Publish/JavaScript.pm 38 lib/Plagger/Plugin/Publish/MTWidget.pm 38 39 lib/Plagger/Plugin/Publish/PSP.pm 40 lib/Plagger/Plugin/Publish/Spotlight.pm 41 lib/Plagger/Plugin/Search/Namazu.pm 42 lib/Plagger/Plugin/Search/Rast.pm 39 43 lib/Plagger/Plugin/SmartFeed.pm 40 44 lib/Plagger/Plugin/Subscription/Bloglines.pm … … 53 57 lib/Plagger/Rule/FeedAttr.pm 54 58 lib/Plagger/Rule/FeedType.pm 59 lib/Plagger/Rule/Fresh.pm 55 60 lib/Plagger/Rule/Rating.pm 56 61 lib/Plagger/Rules.pm … … 71 76 templates/plugins/irc_notify.tt 72 77 templates/plugins/javascript.tt 78 templates/plugins/mt_widget.tt 79 templates/plugins/namazu.tt 73 80 templates/plugins/psp.tt 81 templates/plugins/spotlight.tt trunk/plagger/lib/Plagger.pm
r141 r150 1 1 package Plagger; 2 2 use strict; 3 our $VERSION = '0.5. 2';3 our $VERSION = '0.5.3'; 4 4 5 5 use 5.8.1;
