2 Commits

Author SHA1 Message Date
Luc Didry
36a007d2f7 Bump version (0.10.2) 2018-04-24 18:39:28 +02:00
Luc Didry
f013359314 Fix Zip files creation 2018-04-24 18:37:51 +02:00
2 changed files with 4 additions and 1 deletions

View File

@@ -1,5 +1,8 @@
Revision history for Lutim
0.10.2 2018-04-24
- Fix bug on zip file creation
0.10.1 2018-04-15
- Fix bug on theme creation (#73)

View File

@@ -724,7 +724,7 @@ sub zip {
}
if ($key) {
$zip->addString($c->decrypt($key, $path)->slurp, "images/$filename");
$zip->addString($c->decrypt($key, $path), "images/$filename");
} else {
$zip->addFile($path, "images/$filename");
}