Changeset 1691
- Timestamp:
- 09/15/06 18:17:08
- Files:
-
- trunk/plagger/Changes (modified) (2 diffs)
- trunk/plagger/MANIFEST (modified) (6 diffs)
- trunk/plagger/lib/Plagger.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/plagger/Changes
r1663 r1691 1 1 The latest, HTML version of this document is always available at http://plagger.org/trac.cgi/wiki/PlaggerChangeLog 2 3 == 0.7.12 (2006/09/15) == 4 5 === Core === 6 7 * [Backward Incompatible] Updated $feed->id implementation to return unique ID 8 * Requires XML::RSS::LibXML 0.23 9 * allow '-' as a config name to read from STDIN 10 11 === New Plugins === 12 13 * Search::Grep: Search engine using flat file and grep (ko) 14 * Filter::UnicodeNormalize: Normalize entry body using Unicode::Normalize (otsune) 15 16 === Plugins Updates === 17 18 * Misc plugins updates to use Plagger::Util filename_for 19 * Subscription::LivedoorReader: modified_on can be null 20 * BloglinesContentNormalize: hack space before empty elements 21 * Rule::URLBL: fixed bug with non-HTTP URLs 22 * Filter::StripRSSAd: Update for Bloglines 23 * CustomFeed::Simple: Support XPath based link extraction 24 * Publish::CHTML: use id_safe for safe feed ID generation 25 * Filter::EntryFullText: support XPath with custom_feed_follow_xpath 26 * Filter::TruePermalink: Don't die if it detects infinite reditrection loop 2 27 3 28 == 0.7.11 (2006/08/30) == … … 18 43 === Plugins Updates === 19 44 45 * Publish::Feed: fixed RSS 2.0 webMaster validity problem 20 46 * Search::Rast: moved some code to plugin.init. updated document 21 47 * Subscription::XPath: Accept non-absolute link as well trunk/plagger/MANIFEST
r1669 r1691 60 60 assets/plugins/Filter-EntryFullText/mainichi-msn-graph.yaml 61 61 assets/plugins/Filter-EntryFullText/mainichi-msn.yaml 62 assets/plugins/Filter-EntryFullText/matino-akari_com.yaml 62 63 assets/plugins/Filter-EntryFullText/memn0ck.yaml 63 64 assets/plugins/Filter-EntryFullText/mtv-music.yaml … … 94 95 assets/plugins/Filter-EntryFullText/sponichi.yaml 95 96 assets/plugins/Filter-EntryFullText/sportsnavi.yaml 97 assets/plugins/Filter-EntryFullText/technobahn_com.yaml 96 98 assets/plugins/Filter-EntryFullText/tencount.yaml 97 99 assets/plugins/Filter-EntryFullText/theinquirer.yaml … … 237 239 deps/Filter-Thumbnail.yaml 238 240 deps/Filter-TTP.yaml 241 deps/Filter-UnicodeNormalize.yaml 239 242 deps/Filter-URLBL.yaml 240 243 deps/Notify-Audio-iTunesWin32.yaml … … 272 275 deps/Rule-Deduped.yaml 273 276 deps/Rule-Fresh.yaml 277 deps/Rule-URLBL.yaml 274 278 deps/Search-Estraier.yaml 279 deps/Search-Grep.yaml 275 280 deps/Search-KinoSearch.yaml 276 281 deps/Search-Spotlight.yaml … … 423 428 lib/Plagger/Plugin/Filter/TruePermalink.pm 424 429 lib/Plagger/Plugin/Filter/TTP.pm 430 lib/Plagger/Plugin/Filter/UnicodeNormalize.pm 425 431 lib/Plagger/Plugin/Filter/URLBL.pm 426 432 lib/Plagger/Plugin/Notify/Audio.pm … … 477 483 lib/Plagger/Plugin/Publish/Takahashi.pm 478 484 lib/Plagger/Plugin/Search/Estraier.pm 485 lib/Plagger/Plugin/Search/Grep.pm 479 486 lib/Plagger/Plugin/Search/KinoSearch.pm 480 487 lib/Plagger/Plugin/Search/Namazu.pm trunk/plagger/lib/Plagger.pm
r1663 r1691 1 1 package Plagger; 2 2 use strict; 3 our $VERSION = '0.7.1 1';3 our $VERSION = '0.7.12'; 4 4 5 5 use 5.8.1;
