From f97848d322fe14b4c6b26113f4cfa83bc75c4ecc Mon Sep 17 00:00:00 2001 From: codecalm Date: Tue, 7 Apr 2020 21:06:00 +0200 Subject: image fixes --- .github/icons.png | Bin 251373 -> 269420 bytes .github/tabler-icons-1.3.0.png | Bin 38404 -> 40170 bytes .github/tabler-icons-1.3.0.svg | 2 +- .github/tabler-icons-1.4.0.png | Bin 11135 -> 11321 bytes gulpfile.js | 4 ++-- 5 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/icons.png b/.github/icons.png index 385f051..c3fe182 100644 Binary files a/.github/icons.png and b/.github/icons.png differ diff --git a/.github/tabler-icons-1.3.0.png b/.github/tabler-icons-1.3.0.png index 1b41947..1fc05eb 100644 Binary files a/.github/tabler-icons-1.3.0.png and b/.github/tabler-icons-1.3.0.png differ diff --git a/.github/tabler-icons-1.3.0.svg b/.github/tabler-icons-1.3.0.svg index eefc63f..22d5e27 100644 --- a/.github/tabler-icons-1.3.0.svg +++ b/.github/tabler-icons-1.3.0.svg @@ -31,7 +31,7 @@ - + diff --git a/.github/tabler-icons-1.4.0.png b/.github/tabler-icons-1.4.0.png index f7c9c67..6a1bb9c 100644 Binary files a/.github/tabler-icons-1.4.0.png and b/.github/tabler-icons-1.4.0.png differ diff --git a/gulpfile.js b/gulpfile.js index 9a5b6e6..7463dd0 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -51,7 +51,7 @@ const createScreenshot = async (filePath) => { const fileName = filePath.replace('.svg', ''); const htmlFilePath = path.join("file:", filePath); - const browser = await puppeteer.launch(); + const browser = await puppeteer.launch({headless: false}); const page = await browser.newPage(); await page.setViewport({ @@ -486,7 +486,7 @@ gulp.task('changelog-image', function (cb) { newVersion = argv['new-version'] || `${p.version}`; if (version) { - cp.exec(`git diff v${version} HEAD --name-status`, function (err, ret) { + cp.exec(`git diff v${version} v${newVersion} --name-status`, function (err, ret) { let newIcons = []; -- cgit v1.2.1