diff --git a/images/charvars.png b/images/charvars.png index dfdddad67..0cf70ce8d 100644 Binary files a/images/charvars.png and b/images/charvars.png differ diff --git a/images/download-options.png b/images/download-options.png index 8b28374af..b7dddc8c2 100644 Binary files a/images/download-options.png and b/images/download-options.png differ diff --git a/images/family.png b/images/family.png index b5d176a5d..085fac8c0 100644 Binary files a/images/family.png and b/images/family.png differ diff --git a/images/languages.png b/images/languages.png index 798a0096e..56e672605 100644 Binary files a/images/languages.png and b/images/languages.png differ diff --git a/images/ligations.png b/images/ligations.png index 786d9f2dc..d74c46eab 100644 Binary files a/images/ligations.png and b/images/ligations.png differ diff --git a/images/matrix.png b/images/matrix.png index 0f8ef3350..481867383 100644 Binary files a/images/matrix.png and b/images/matrix.png differ diff --git a/images/preview-all.png b/images/preview-all.png index 3a646d6dc..d2c704aef 100644 Binary files a/images/preview-all.png and b/images/preview-all.png differ diff --git a/images/stylesets.png b/images/stylesets.png index 117616885..071b52147 100644 Binary files a/images/stylesets.png and b/images/stylesets.png differ diff --git a/images/variants.png b/images/variants.png index 365570fba..d156a47e3 100644 Binary files a/images/variants.png and b/images/variants.png differ diff --git a/images/weights.png b/images/weights.png index 58778717f..cef7eb7e7 100644 Binary files a/images/weights.png and b/images/weights.png differ diff --git a/verdafile.js b/verdafile.js index 9f7fdab1b..981e6723d 100644 --- a/verdafile.js +++ b/verdafile.js @@ -374,7 +374,11 @@ const Pages = task(`pages`, async target => { }); const SampleImagesPre = task(`sample-images:pre`, async target => { - const [sans, slab] = await target.need(GroupContents`iosevka`, GroupContents`iosevka-slab`); + const [sans, slab] = await target.need( + GroupContents`iosevka`, + GroupContents`iosevka-slab`, + de`images` + ); await cp(`${DIST}/${sans}`, `snapshot/${sans}`); await cp(`${DIST}/${slab}`, `snapshot/${slab}`); }); @@ -422,7 +426,8 @@ phony(`clean`, async () => { build.deleteJournal(); // Disable journal }); phony(`release`, async target => { - await target.need(AllArchives, SampleImages, Pages); + await target.need(AllArchives); + await target.need(SampleImages, Pages); }); ///////////////////////////////////////////////////////////