diff --git a/.github/icons-stroke.png b/.github/icons-stroke.png new file mode 100644 index 000000000..54511056b Binary files /dev/null and b/.github/icons-stroke.png differ diff --git a/.github/icons-stroke.svg b/.github/icons-stroke.svg index e91bfe864..a85315f62 100644 --- a/.github/icons-stroke.svg +++ b/.github/icons-stroke.svg @@ -1,19 +1,19 @@ - - + + - + - + - + - + - - - - - + + + + + \ No newline at end of file diff --git a/.github/icons.png b/.github/icons.png index 444edbb19..2913a33d0 100644 Binary files a/.github/icons.png and b/.github/icons.png differ diff --git a/README.md b/README.md index 639057f95..e710e9f59 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,11 @@ A set of over 300 free MIT-licensed high-quality SVG icons for you to use in your web projects. Each icon is designed on a 24x24 grid and a `2px` stroke. -**If you want to support my project and help me grow it, you can [become a sponsor on GitHub](https://github.com/sponsors/codecalm)!** +**If you want to support my project and help me grow it, you can [become a sponsor on GitHub](https://github.com/sponsors/codecalm) or just [donate me on PayPal](https://paypal.me/codecalm) :)** ## Preview -![](./.github/icons.svg) +![](https://raw.githubusercontent.com/tabler/tabler-icons/master/.github/icons.png) ## Installation @@ -71,7 +71,7 @@ Add an icon to be displayed on your page with the following markup (`activity` i All icons in this repository have been created with the value of the `stroke-width` property, so if you change the value, you can get different icon variants that will fit in well with your design. -![](./.github/icons-stroke.svg) +![](https://raw.githubusercontent.com/tabler/tabler-icons/master/.github/icons-stroke.png) ## License diff --git a/gulpfile.js b/gulpfile.js index ab729bed4..7affc7323 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -49,8 +49,9 @@ const createScreenshot = async (filePath) => { const page = await browser.newPage(); await page.setViewport({ - height: 100, - width: 100 + height: 10, + width: 10, + deviceScaleFactor: 2 }); await page.goto(htmlFilePath); @@ -68,6 +69,77 @@ const createScreenshot = async (filePath) => { } }; + +const printChangelog = function(newIcons, modifiedIcons, renamedIcons) { + if(newIcons.length > 0) { + let str = ''; + str += `${newIcons.length} new icons: `; + + newIcons.forEach(function(icon, i){ + str += `\`${icon}\``; + + if((i + 1) <= newIcons.length - 1) { + str += ', ' + } + }); + + console.log(str); + console.log(''); + } + + if(modifiedIcons.length > 0) { + let str = ''; + str += `Fixed icons: `; + + modifiedIcons.forEach(function(icon, i){ + str += `\`${icon}\``; + + if((i + 1) <= modifiedIcons.length - 1) { + str += ', ' + } + }); + + console.log(str); + console.log(''); + } + + if(renamedIcons.length > 0) { + console.log(`Renamed icons: `); + + renamedIcons.forEach(function(icon, i){ + console.log(`- \`${icon[0]}\` renamed to \`${icon[1]}\``); + }); + } +}; + + + +gulp.task('build-zip', function() { + const version = p.version; + + return gulp.src('{icons/**/*,icons-png/**/*,tabler-sprite.svg,tabler-sprite-nostroke.svg}') + .pipe(zip(`tabler-icons-${version}.zip`)) + .pipe(gulp.dest('packages')) +}); + +gulp.task('build-jekyll', function(cb){ + cp.exec('bundle exec jekyll build', function() { + cb(); + }); +}); + +gulp.task('build-copy', function(cb){ + cp.exec('mkdir -p icons/ && rm -fd ./icons/* && cp ./_site/icons/* ./icons', function() { + cb(); + }); +}); + +gulp.task('clean-png', function(cb){ + cp.exec('rm -fd ./icons-png/*', function() { + cb(); + }); +}); + gulp.task('icons-sprite', function (cb) { glob("_site/icons/*.svg", {}, function (er, files) { @@ -143,15 +215,15 @@ gulp.task('icons-preview', function (cb) { }); }); -gulp.task('icons-stroke', function (cb) { +gulp.task('icons-stroke', gulp.series('build-jekyll', function (cb) { const icon = "disabled", strokes = ['.5', '1', '1.5', '2', '2.75'], - svgFileContent = fs.readFileSync(`_site/icons/${icon}.svg`).toString(), + svgFileContent = fs.readFileSync(`icons/${icon}.svg`).toString(), padding = 16, paddingOuter = 5, - iconSize = 64, - width = (strokes.length * (iconSize + padding) - padding) + paddingOuter * 2, + iconSize = 32, + width = 882, height = iconSize + paddingOuter * 2; let svgContentSymbols = '', @@ -174,10 +246,10 @@ gulp.task('icons-stroke', function (cb) { const svgContent = `\n${svgContentSymbols}\n${svgContentIcons}\n`; - fs.writeFileSync('icons-stroke.svg', svgContent); - createScreenshot('icons-stroke.svg'); + fs.writeFileSync('.github/icons-stroke.svg', svgContent); + createScreenshot('.github/icons-stroke.svg'); cb(); -}); +})); gulp.task('optimize', function (cb) { glob("src/_icons/*.svg", {}, function (er, files) { @@ -202,6 +274,7 @@ gulp.task('optimize', function (cb) { }); }); + gulp.task('changelog-commit', function(cb) { cp.exec('git status', function(err, ret) { let newIcons = [], modifiedIcons = [], renamedIcons = []; @@ -222,45 +295,7 @@ gulp.task('changelog-commit', function(cb) { return newIcons.indexOf( el ) < 0; }); - if(newIcons.length > 0) { - let str = ''; - str += `${newIcons.length} new icons: `; - - newIcons.forEach(function(icon, i){ - str += `\`${icon}\``; - - if((i + 1) <= newIcons.length - 1) { - str += ', ' - } - }); - - console.log(str); - console.log(''); - } - - if(modifiedIcons.length > 0) { - let str = ''; - str += `Fixed icons: `; - - modifiedIcons.forEach(function(icon, i){ - str += `\`${icon}\``; - - if((i + 1) <= modifiedIcons.length - 1) { - str += ', ' - } - }); - - console.log(str); - console.log(''); - } - - if(renamedIcons.length > 0) { - console.log(`**Renamed icons: `); - - renamedIcons.forEach(function(icon, i){ - console.log(`- \`${icon[0]}\` renamed to \`${icon[1]}\``); - }); - } + printChangelog(newIcons, modifiedIcons, renamedIcons); cb(); }); @@ -288,75 +323,12 @@ gulp.task('changelog-diff', function(cb) { return newIcons.indexOf( el ) < 0; }); - if(newIcons.length > 0) { - let str = ''; - str += `${newIcons.length} new icons: `; - - newIcons.forEach(function(icon, i){ - str += `\`${icon}\``; - - if((i + 1) <= newIcons.length - 1) { - str += ', ' - } - }); - - console.log(str); - console.log(''); - } - - if(modifiedIcons.length > 0) { - let str = ''; - str += `Fixed icons: `; - - modifiedIcons.forEach(function(icon, i){ - str += `\`${icon}\``; - - if((i + 1) <= modifiedIcons.length - 1) { - str += ', ' - } - }); - - console.log(str); - console.log(''); - } - - if(renamedIcons.length > 0) { - console.log(`**Renamed icons: `); - - renamedIcons.forEach(function(icon, i){ - console.log(`- \`${icon[0]}\` renamed to \`${icon[1]}\``); - }); - } + printChangelog(newIcons, modifiedIcons, renamedIcons); cb(); }); }); -gulp.task('build-zip', function() { - const version = p.version; - - return gulp.src('{icons/**/*,icons-png/**/*,tabler-sprite.svg,tabler-sprite-nostroke.svg}') - .pipe(zip(`tabler-icons-${version}.zip`)) - .pipe(gulp.dest('packages')) -}); - -gulp.task('build-jekyll', function(cb){ - cp.exec('bundle exec jekyll build', function() { - cb(); - }); -}); - -gulp.task('build-copy', function(cb){ - cp.exec('mkdir -p icons/ && rm -fd ./icons/* && cp ./_site/icons/* ./icons', function() { - cb(); - }); -}); - -gulp.task('clean-png', function(cb){ - cp.exec('rm -fd ./icons-png/*', function() { - cb(); - }); -}); gulp.task('svg-to-png', gulp.series('build-jekyll', 'clean-png', async (cb) => { let files = glob.sync("_site/icons/*.svg");