Changeset 1629
- Timestamp:
- 08/30/06 00:13:25
- Files:
-
- trunk/plagger/Changes (modified) (1 diff)
- trunk/plagger/MANIFEST (modified) (5 diffs)
- trunk/plagger/lib/Plagger.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/plagger/Changes
r1585 r1629 1 1 The latest, HTML version of this document is always available at http://plagger.org/trac.cgi/wiki/PlaggerChangeLog 2 3 == 0.7.10 (2006/08/29) == 4 5 === Core === 6 7 * Added Test::Perl::Critic test 8 * Fixed 2 args open to 3 args to follow PBP 9 * Added video/mp4 MIME type to mime_type_of 10 * Fixed bug in mime_type_of in extracting mp3 from "foo.bar.mp3" 11 * Refactored enclosure detection code to Util. Added ogg to known list by hardcoding 12 * bumped up XML::Atom and XML::Liberal requirement 13 * tools/chimp-smoker: fixed bug in get_branch 14 * Encode::Detect is no more recommended module by default 15 * Fixed ConfigLoader bug that it doesn't do rewrite_config correctly (by charsbar) 16 17 === Plugins Updates === 18 19 * Filter::TruePermalink: refactored assets loading code. Store redirection result even if it's empty 20 * Fitler::TruePermalink: Don't handle HTTP response body when it checks redirection, to skip huge files like mp3 21 * Filter::EntryFullText: refactored assets loading code. 22 * Fitler::StripRSSAd: refactored assets loading code. Renamed pattern files to .pat 23 * Filter::StripRSSAd: Added slashdot.jp and pheedo.jp handler 24 * Publish::Feed: use permalink to set to entry link 2 25 3 26 == 0.7.9 (2006/08/24) == trunk/plagger/MANIFEST
r1594 r1629 125 125 assets/plugins/Filter-StripRSSAd/pheedo.pat 126 126 assets/plugins/Filter-StripRSSAd/pheedo_jp.pat 127 assets/plugins/Filter-StripRSSAd/pheedo_jp2.pat 127 128 assets/plugins/Filter-StripRSSAd/pheedo_jp_ad_entry.yaml 128 129 assets/plugins/Filter-StripRSSAd/plaza_rakuten.pat … … 133 134 assets/plugins/Filter-TruePermalink/blogpeople.yaml 134 135 assets/plugins/Filter-TruePermalink/cnet_podcast.yaml 136 assets/plugins/Filter-TruePermalink/google_groups.yaml 135 137 assets/plugins/Filter-TruePermalink/imenu.yaml 136 138 assets/plugins/Filter-TruePermalink/joltmark.yaml … … 213 215 deps/Filter-ExtractAuthorName.yaml 214 216 deps/Filter-FeedFlareStripper.yaml 217 deps/Filter-FloatingDateTime.yaml 215 218 deps/Filter-GuessLanguage.yaml 216 219 deps/Filter-HatenaBookmarkTag.yaml … … 533 536 plagger 534 537 t/00_compile.t 538 t/99-perlcritic.t 535 539 t/assets/plugins/Test-AssetsPath/assets_path.tt 540 t/perlcriticrc 536 541 t/samples/assets_path.tt 537 542 t/samples/atom-category.xml … … 552 557 t/samples/guess-language/mixed.xml 553 558 t/samples/guess-language/mixed_nolang.xml 559 t/samples/hatena-rss.xml 554 560 t/samples/hatenafotolife.rdf 555 561 t/samples/included-recipe.yaml trunk/plagger/lib/Plagger.pm
r1626 r1629 1 1 package Plagger; 2 2 use strict; 3 our $VERSION = '0.7. 9';3 our $VERSION = '0.7.10'; 4 4 5 5 use 5.8.1;
