Changeset 590
- Timestamp:
- 04/15/06 15:51:54
- Files:
-
- trunk/plagger/Changes (modified) (1 diff)
- trunk/plagger/lib/Plagger.pm (modified) (3 diffs)
- trunk/plagger/lib/Plagger/Cache.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/plagger/Changes
r563 r590 1 1 The latest, HTML version of this document is always available at http://plagger.org/trac.cgi/wiki/PlaggerChangeLog 2 3 == 0.6.3 (2006/04/15) == 4 5 === Core === 6 7 * EntryFullText: Fixed bug that date format is not properly decoded as UTF-8 8 * requires URI::Fetch 0.06. #168 9 * Added various sites upgrader files (miyagawa, s_nobu, ko, mamorou, nTeTs, youpy) 10 * Added atode.cc sample in examples directory 11 12 === New Plugins === 13 14 * Filter::BreakEntriesToFeeds: Break entries in each entry as a feed containing single entry (miyagawa) 15 * Filter::2chRSSPermalink: Fix rss.s2ch.net feeds permalink (youpy) 16 * Subscription::2chThreadList: Add 2ch threads to Subscription using rss.s2ch.net feeds (youpy) 17 18 === Plugins Updates === 19 20 * Subscription::Planet: Allow multiple keywords set in config files. Allow non utf-8 URI escape (Suggested by secondlife) 21 * CustomFeed::Mixi: Fix newline are not correctly extracted in Messages feed. Fixed first-time access bug without cookies 22 * Subscription::Bloglines: Fix atom:id bug when permaLink="false" 2 23 3 24 == 0.6.2 (2006/04/10) == trunk/plagger/lib/Plagger.pm
r564 r590 1 1 package Plagger; 2 2 use strict; 3 our $VERSION = '0.6. 2';3 our $VERSION = '0.6.3'; 4 4 5 5 use 5.8.1; … … 13 13 14 14 use base qw( Class::Accessor::Fast ); 15 __PACKAGE__->mk_accessors( qw(conf update subscription plugins_path cache ) );15 __PACKAGE__->mk_accessors( qw(conf update subscription plugins_path cache) ); 16 16 17 17 use Plagger::Cache; … … 49 49 $self->load_include($config); 50 50 $self->{conf} = $config->{global}; 51 $self->{conf}->{log} ||= { level => 'debug' };51 $self->{conf}->{log} ||= { level => 'debug' }; 52 52 $self->{config_path} = $opt{config}; 53 53 } else { trunk/plagger/lib/Plagger/Cache.pm
r448 r590 14 14 $conf->{class} ||= 'Cache::FileCache'; 15 15 $conf->{params} ||= { 16 cache_root => File::Spec->catfile($conf->{base}, 'cache'),16 cache_root => File::Spec->catfile($conf->{base}, 'cache'), 17 17 }; 18 18
