diff --git a/CHANGELOG.md b/CHANGELOG.md index 279139f..90019fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ All notable changes to this project will be documented in this file. Older chang ## [0.8.0.2] - Tweaks to directory and bundle icons +- Switch from qltool to iff - Output redirection fixes - Thumbnail bindings - "Add to existing" prefs option diff --git a/Tester.zip b/Tester.zip index c0f97e6..5ae2816 100644 Binary files a/Tester.zip and b/Tester.zip differ diff --git a/Tester/Tester.php b/Tester/Tester.php index d0fb8a4..a280a2a 100644 --- a/Tester/Tester.php +++ b/Tester/Tester.php @@ -1,6 +1,6 @@ BindValue(":fid",$fid); if ($ext || file_exists($pathname."/Icon\r")) { - dfm("Ext or custom icon found, processing ".$pathname." with qltool"); - $tools = array("qltool"); + dfm("Ext or custom icon found, processing ".$pathname." with iff"); + $tools = array("iff"); } elseif (glob($globsafe."/".globstring($p['album_files']),GLOB_BRACE) && $test = glob($globsafe."/".globstring($p['cover_exts'],$p['cover_files']),GLOB_BRACE)) { dfm("Album files and cover found, processing ".$pathname." with flacdiricon"); $cmd['flacdiricon'] = $bin_flacdiricon." ".$shellpath." ".$p['icon_size']." ".escapeshellarg(array_shift($test))." ".$tfile; @@ -324,9 +325,9 @@ if ($p['icons'] && $ext != "DS_Store") { } else { $stmt->BindValue(":fid",$fid); if (in_array($extl, $p['i_sox'])) { - $tools = array("flacicon","ql-icon","qltool"); + $tools = array("flacicon","ql-icon","iff"); } else { - $tools = array("ql-icon","qltool"); + $tools = array("ql-icon","iff"); } } diff --git a/utils/polyfill.php b/utils/polyfill.php index bcf8426..4a8982c 100755 --- a/utils/polyfill.php +++ b/utils/polyfill.php @@ -20,7 +20,7 @@ $dmg = $dest."/Polyfill.sparsebundle"; if (file_exists($dmg)) { exec("trash ".$dmg."; umount -f /Volumes/Polyfill"); } -exec("hdiutil create -size 100g -fs HFS+ -type SPARSEBUNDLE -volname Polyfill -attach ".$dmg); +exec("hdiutil create -size 1tb -fs HFS+ -type SPARSEBUNDLE -volname Polyfill -attach ".$dmg); $base = "/Volumes/Polyfill"; $sample_files = glob($sample."/*.*");