- fixed stupid bug in deleting tags
- fixed minor pod errors involving >
-0.40?
+0.40pre2
- make t1log optional, defaulting to off. You can enable the log
with Imager::init(t1log=>1) (Ticket #369)
- quote a few hash key strings to prevent warnings on 5.004
- difference() method
- hide (with static) or rename many symbols that could possibly
cause conflicts with other libraries or perl
-
+ - Fix runaway cache problem for freetype1 font cache.
+ - Added version logging when log is started.
=================================================================
For latest versions check the Imager-devel pages:
# print Dumper(@_);
#}
+sub init_log {
+ m_init_log($_[0],$_[1]);
+ log_entry("Imager $VERSION starting\n", 1);
+}
+
+
sub init {
my %parms=(loglevel=>1,@_);
if ($parms{'log'}) {
init_log($parms{'log'},$parms{'loglevel'});
}
+
if (exists $parms{'warn_obsolete'}) {
$warn_obsolete = $parms{'warn_obsolete'};
}