Changeset 194

Show
Ignore:
Timestamp:
02/27/06 20:46:23
Author:
miyagawa
Message:

package 0.5.4

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/plagger/Changes

    r150 r194  
    11The latest, HTML version of this document is always available at http://plagger.org/trac.cgi/wiki/PlaggerChangeLog 
     2 
     3== 0.5.4 (2006/02/27) == 
     4 
     5=== Core === 
     6 
     7 * Makefile.PL has a much better dependencies #59 (Thanks to Daisuke Maki) 
     8 * Fixed multiple categories handling bug in Aggregator::Simple (Thanks to koyachi) 
     9 * Added body_text, title_text convinience methods to Feed and Entry 
     10 * Now uses FindBin module to find templates directory in a better way (youpy) 
     11 * New authors: Daisuke Maki, Tokuhiro Matsuno and Tsutomu Koyachi 
     12 
     13=== New Plugins === 
     14 
     15 * Aggregator::Xango - POE based high-speed parallel crawling (daisuke) 
     16 * Publish::PDF - Create PDF files based on feeds (miyagawa) 
     17 * Publish::Speech - Make the feeds as an audio using Text-to-Speech (miyagawa) 
     18 * Publish::MSAgent - Let Microsoft Agent to speak feeds content (miyagawa) 
     19 * Publish::Growl - Send feed notifications to Mac OSX Growl (kazeburo) 
     20 * Filter::tDiaryComment - strip comments from tDiary RSS (tokuhirom) 
     21 * Filter::TTP - replace ttp: with http: (tokuhirom) 
     22 * Filter::DeliciousFeedTags - split del.icio.us "foo bar baz" tags into array (miyagawa) 
     23 * Publish::Delicious - post entries to del.icio.us automatically (koyachi) 
     24 
     25=== Plugins Updates === 
     26 
     27 * Publish::Spotlight: Now it without Mac::Glue using osascript call 
     28 * Publish::MTWidget: Added an option to rebuild the blog templates after updating widgets 
     29 * Publish::Gmail: Added an option to support POP3 before SMTP (tokuhirom) 
    230 
    331== 0.5.3 (2006/02/25) == 
  • trunk/plagger/MANIFEST

    r150 r194  
    11AUTHORS 
    22bin/plagger-ircbot.pl 
     3bin/spotlight_comment.scpt 
    34Changes 
    45config.yaml.sample 
     
    2223lib/Plagger/Plugin.pm 
    2324lib/Plagger/Plugin/Aggregator/Simple.pm 
     25lib/Plagger/Plugin/Aggregator/Xango.pm 
    2426lib/Plagger/Plugin/CustomFeed/Frepa.pm 
    2527lib/Plagger/Plugin/CustomFeed/Mailman.pm 
    2628lib/Plagger/Plugin/CustomFeed/Mixi.pm 
    2729lib/Plagger/Plugin/Filter/Delicious.pm 
     30lib/Plagger/Plugin/Filter/DeliciousFeedTags.pm 
    2831lib/Plagger/Plugin/Filter/FeedBurnerPermalink.pm 
    2932lib/Plagger/Plugin/Filter/HatenaBookmarkTag.pm 
    3033lib/Plagger/Plugin/Filter/HatenaBookmarkUsersCount.pm 
    3134lib/Plagger/Plugin/Filter/StripRSSAd.pm 
     35lib/Plagger/Plugin/Filter/tDiaryComment.pm 
     36lib/Plagger/Plugin/Filter/TTP.pm 
    3237lib/Plagger/Plugin/Filter/URLBL.pm 
    3338lib/Plagger/Plugin/Publish/CHTML.pm 
    3439lib/Plagger/Plugin/Publish/Debug.pm 
     40lib/Plagger/Plugin/Publish/Delicious.pm 
    3541lib/Plagger/Plugin/Publish/Gmail.pm 
     42lib/Plagger/Plugin/Publish/Growl.pm 
    3643lib/Plagger/Plugin/Publish/IRC.pm 
    3744lib/Plagger/Plugin/Publish/JavaScript.pm 
     45lib/Plagger/Plugin/Publish/MSAgent.pm 
    3846lib/Plagger/Plugin/Publish/MTWidget.pm 
     47lib/Plagger/Plugin/Publish/PDF.pm 
    3948lib/Plagger/Plugin/Publish/PSP.pm 
     49lib/Plagger/Plugin/Publish/Speech.pm 
     50lib/Plagger/Plugin/Publish/Speech/Win32.pm 
    4051lib/Plagger/Plugin/Publish/Spotlight.pm 
    4152lib/Plagger/Plugin/Search/Namazu.pm 
     
    6576lib/Plagger/Update.pm 
    6677lib/Plagger/UserAgent.pm 
     78lib/Plagger/Util.pm 
    6779Makefile.PL 
    6880MANIFEST                        This list of files 
  • trunk/plagger/MANIFEST.SKIP

    r91 r194  
    1010\.gz$ 
    1111\.cvsignore 
    12 ^config\.yaml$ 
     12^.*\.yaml$ 
  • trunk/plagger/lib/Plagger.pm

    r165 r194  
    11package Plagger; 
    22use strict; 
    3 our $VERSION = '0.5.3'; 
     3our $VERSION = '0.5.4'; 
    44 
    55use 5.8.1;