Subject: | Shell base broken on new Padre versions due to get_mimetype replacement |
In new versions of Padre (I have 0.76) shell base plugin fail running
update_environment_vars subroutine due to replacement of
Padre::Document->get_mimetype to Padre::Document->mimetype.
The fix is just replace line 94 of Base.pm
$ENV{PE_MIMETYPE} = $document->get_mimetype();
with
$ENV{PE_MIMETYPE} = $document->mimetype();
(This bug makes Filter plugin broken).