From 210c939c853204e1352b04dabc045c6202f19ec9 Mon Sep 17 00:00:00 2001 From: codecalm Date: Sat, 21 Mar 2020 12:12:29 +0100 Subject: zip task --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 37ee789f..757762ef 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,8 @@ "optimize": "gulp optimize", "start": "bundle exec jekyll serve --watch --livereload", "build": "gulp optimize && gulp build && gulp icons-preview && gulp icons-sprite", - "png": "gulp svg-to-png" + "png": "gulp svg-to-png", + "zip": "gulp build-zip" }, "description": "", "devDependencies": { -- cgit v1.2.1 From ae85645c5ebfccbb3145f128e2202e5f5e492880 Mon Sep 17 00:00:00 2001 From: codecalm Date: Sat, 21 Mar 2020 12:20:38 +0100 Subject: editor "active" class feature --- src/editor.html | 3 +++ src/style.scss | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/src/editor.html b/src/editor.html index 6794a491..3a928f28 100644 --- a/src/editor.html +++ b/src/editor.html @@ -113,6 +113,9 @@ layout: default .on('click', '.js-icon', function (e) { var icon = $(this).attr('data-icon'); + $('.js-icon').removeClass('active'); + $(this).addClass('active'); + $('.js-icon-name').html(icon); localStorage.setItem('icon', icon); diff --git a/src/style.scss b/src/style.scss index 2ffbb470..49a1b2f6 100644 --- a/src/style.scss +++ b/src/style.scss @@ -179,6 +179,10 @@ a { justify-content: center; border: 1px solid transparent; + &.active { + background: #f0f0f0; + } + @at-root a#{&}:hover { opacity: .75; } -- cgit v1.2.1 From c77eb46c33bf1edf622194ec309b703cb6bae5d2 Mon Sep 17 00:00:00 2001 From: codecalm Date: Sat, 21 Mar 2020 14:05:39 +0100 Subject: changelog generator --- gulpfile.js | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 56 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 37f6b224..3ba79bd2 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -191,7 +191,7 @@ gulp.task('optimize', function (cb) { .replace(/\s?\/>/g, ' />') .replace(/\n\s*<(line|circle|path|polyline)/g, "\n <$1") .replace(/polyline points="([0-9.]+)\s([0-9.]+)\s([0-9.]+)\s([0-9.]+)"/g, 'line x1="$1" y1="$2" x2="$3" y2="$4"') - .replace(/a([0-9.]+)\s([0-9.]+)\s([0-9.]+)\s?([0-1])\s?([0-1])\s?(-?[0-9.]+)\s?(-?[0-9.]+)/g, 'a$1 $2 $3 $4 $5 $6 $7') + .replace(/a\s?([0-9.]+)\s([0-9.]+)\s([0-9.]+)\s?([0-1])\s?([0-1])\s?(-?[0-9.]+)\s?(-?[0-9.]+)/g, 'a$1 $2 $3 $4 $5 $6 $7') .replace(/\n\n+/g, "\n"); fs.writeFileSync(file, svgFileContent); @@ -201,7 +201,61 @@ gulp.task('optimize', function (cb) { }); }); -gulp.task('build-zip', function(cb) { +gulp.task('prepare-changelog', function(cb) { + cp.exec('git status', function(err, ret) { + let newIcons = [], modifiedIcons = [], renamedIcons = []; + + ret.replace(/new file:\s+src\/_icons\/([a-z1-9-]+)\.svg/g, function (m, fileName) { + newIcons.push(fileName); + }); + + ret.replace(/modified:\s+src\/_icons\/([a-z1-9-]+)\.svg/g, function (m, fileName) { + modifiedIcons.push(fileName); + }); + + ret.replace(/renamed:\s+src\/_icons\/([a-z1-9-]+).svg -> src\/_icons\/([a-z1-9-]+).svg/g, function (m, fileNameBefore, fileNameAfter) { + renamedIcons.push([fileNameBefore, fileNameAfter]); + }); + + modifiedIcons = modifiedIcons.filter( function( el ) { + return newIcons.indexOf( el ) < 0; + }); + + if(newIcons.length > 0) { + console.log(`**${newIcons.length} new icons:**\n`); + + newIcons.forEach(function(icon){ + console.log(`- \`${icon}\``); + }); + + console.log(''); + } + + if(modifiedIcons.length > 0) { + console.log(`**Fixed icons:**\n`); + + modifiedIcons.forEach(function(icon){ + console.log(`- \`${icon}\``); + }); + + console.log(''); + } + + if(renamedIcons.length > 0) { + console.log(`**Renamed icons:**\n`); + + renamedIcons.forEach(function(icon){ + console.log(`- \`${icon[0]}\` renamed to \`${icon[1]}\``); + }) + } + + cb(); + }); + + +}); + +gulp.task('build-zip', function() { const version = p.version; return gulp.src('{icons/**/*,icons-png/**/*,tabler-sprite.svg}') -- cgit v1.2.1 From fc65cd9348392ca62619be9d82d294a1c711130f Mon Sep 17 00:00:00 2001 From: codecalm Date: Sat, 21 Mar 2020 14:53:32 +0100 Subject: 14 new icons: `ad`, `building-arch`, `building-bridge-2`, `building-bridge`, `building-church`, `building-hospital`, `building-store`, `building`, `device-speaker`, `home-2`, `id`, `layout-bottombar`, `live-photo`, `template` Fixed icons: `layout-2`, `layout-columns`, `layout-navbar`, `layout-rows`, `layout-sidebar-right`, `layout-sidebar`, `layout`, `registered` Renamed icons: `ajdustments` renamed to `adjustments` --- src/_icons/ad.svg | 9 +++++++++ src/_icons/adjustments.svg | 14 ++++++++++++++ src/_icons/ajdustments.svg | 14 -------------- src/_icons/building-arch.svg | 7 +++++++ src/_icons/building-bridge-2.svg | 5 +++++ src/_icons/building-bridge.svg | 10 ++++++++++ src/_icons/building-church.svg | 9 +++++++++ src/_icons/building-hospital.svg | 9 +++++++++ src/_icons/building-store.svg | 9 +++++++++ src/_icons/building.svg | 12 ++++++++++++ src/_icons/device-speaker.svg | 7 +++++++ src/_icons/home-2.svg | 8 ++++++++ src/_icons/id.svg | 10 ++++++++++ src/_icons/layout-2.svg | 8 ++++---- src/_icons/layout-bottombar.svg | 6 ++++++ src/_icons/layout-columns.svg | 4 ++-- src/_icons/layout-navbar.svg | 4 ++-- src/_icons/layout-rows.svg | 4 ++-- src/_icons/layout-sidebar-right.svg | 4 ++-- src/_icons/layout-sidebar.svg | 4 ++-- src/_icons/layout.svg | 6 +++--- src/_icons/live-photo.svg | 7 +++++++ src/_icons/registered.svg | 2 +- src/_icons/template.svg | 10 ++++++++++ 24 files changed, 150 insertions(+), 32 deletions(-) create mode 100644 src/_icons/ad.svg create mode 100644 src/_icons/adjustments.svg delete mode 100644 src/_icons/ajdustments.svg create mode 100644 src/_icons/building-arch.svg create mode 100644 src/_icons/building-bridge-2.svg create mode 100644 src/_icons/building-bridge.svg create mode 100644 src/_icons/building-church.svg create mode 100644 src/_icons/building-hospital.svg create mode 100644 src/_icons/building-store.svg create mode 100644 src/_icons/building.svg create mode 100644 src/_icons/device-speaker.svg create mode 100644 src/_icons/home-2.svg create mode 100644 src/_icons/id.svg create mode 100644 src/_icons/layout-bottombar.svg create mode 100644 src/_icons/live-photo.svg create mode 100644 src/_icons/template.svg diff --git a/src/_icons/ad.svg b/src/_icons/ad.svg new file mode 100644 index 00000000..576b61de --- /dev/null +++ b/src/_icons/ad.svg @@ -0,0 +1,9 @@ +--- +tags: [] +--- + + + + + + diff --git a/src/_icons/adjustments.svg b/src/_icons/adjustments.svg new file mode 100644 index 00000000..fd9d200d --- /dev/null +++ b/src/_icons/adjustments.svg @@ -0,0 +1,14 @@ +--- +tags: [equalizer, sliders, controls, settings, filter] +--- + + + + + + + + + + + diff --git a/src/_icons/ajdustments.svg b/src/_icons/ajdustments.svg deleted file mode 100644 index fd9d200d..00000000 --- a/src/_icons/ajdustments.svg +++ /dev/null @@ -1,14 +0,0 @@ ---- -tags: [equalizer, sliders, controls, settings, filter] ---- - - - - - - - - - - - diff --git a/src/_icons/building-arch.svg b/src/_icons/building-arch.svg new file mode 100644 index 00000000..298eb6cb --- /dev/null +++ b/src/_icons/building-arch.svg @@ -0,0 +1,7 @@ +--- +--- + + + + + diff --git a/src/_icons/building-bridge-2.svg b/src/_icons/building-bridge-2.svg new file mode 100644 index 00000000..2ed3b4dc --- /dev/null +++ b/src/_icons/building-bridge-2.svg @@ -0,0 +1,5 @@ +--- +--- + + + diff --git a/src/_icons/building-bridge.svg b/src/_icons/building-bridge.svg new file mode 100644 index 00000000..88cf6b66 --- /dev/null +++ b/src/_icons/building-bridge.svg @@ -0,0 +1,10 @@ +--- +--- + + + + + + + + diff --git a/src/_icons/building-church.svg b/src/_icons/building-church.svg new file mode 100644 index 00000000..5a746f46 --- /dev/null +++ b/src/_icons/building-church.svg @@ -0,0 +1,9 @@ +--- +--- + + + + + + + diff --git a/src/_icons/building-hospital.svg b/src/_icons/building-hospital.svg new file mode 100644 index 00000000..cf8ab60a --- /dev/null +++ b/src/_icons/building-hospital.svg @@ -0,0 +1,9 @@ +--- +--- + + + + + + + diff --git a/src/_icons/building-store.svg b/src/_icons/building-store.svg new file mode 100644 index 00000000..e088d1d4 --- /dev/null +++ b/src/_icons/building-store.svg @@ -0,0 +1,9 @@ +--- +--- + + + + + + + diff --git a/src/_icons/building.svg b/src/_icons/building.svg new file mode 100644 index 00000000..74602d49 --- /dev/null +++ b/src/_icons/building.svg @@ -0,0 +1,12 @@ +--- +--- + + + + + + + + + + diff --git a/src/_icons/device-speaker.svg b/src/_icons/device-speaker.svg new file mode 100644 index 00000000..3643b1e1 --- /dev/null +++ b/src/_icons/device-speaker.svg @@ -0,0 +1,7 @@ +--- +--- + + + + + diff --git a/src/_icons/home-2.svg b/src/_icons/home-2.svg new file mode 100644 index 00000000..86c9576d --- /dev/null +++ b/src/_icons/home-2.svg @@ -0,0 +1,8 @@ +--- +tags: [house, dashboard, living] +--- + + + + + diff --git a/src/_icons/id.svg b/src/_icons/id.svg new file mode 100644 index 00000000..f243557f --- /dev/null +++ b/src/_icons/id.svg @@ -0,0 +1,10 @@ +--- +tags: [] +--- + + + + + + + diff --git a/src/_icons/layout-2.svg b/src/_icons/layout-2.svg index 85823667..a97139c7 100644 --- a/src/_icons/layout-2.svg +++ b/src/_icons/layout-2.svg @@ -2,8 +2,8 @@ tags: [grid, columns, masonry, collage] --- - - - - + + + + diff --git a/src/_icons/layout-bottombar.svg b/src/_icons/layout-bottombar.svg new file mode 100644 index 00000000..23ddd8f5 --- /dev/null +++ b/src/_icons/layout-bottombar.svg @@ -0,0 +1,6 @@ +--- +--- + + + + diff --git a/src/_icons/layout-columns.svg b/src/_icons/layout-columns.svg index 5914ea46..c98ef78d 100644 --- a/src/_icons/layout-columns.svg +++ b/src/_icons/layout-columns.svg @@ -2,6 +2,6 @@ tags: [grid, column, rows] --- - - + + diff --git a/src/_icons/layout-navbar.svg b/src/_icons/layout-navbar.svg index 983012f4..54d5f9b7 100644 --- a/src/_icons/layout-navbar.svg +++ b/src/_icons/layout-navbar.svg @@ -2,6 +2,6 @@ tags: [grid, row, header] --- - - + + diff --git a/src/_icons/layout-rows.svg b/src/_icons/layout-rows.svg index f900f83d..7ad15708 100644 --- a/src/_icons/layout-rows.svg +++ b/src/_icons/layout-rows.svg @@ -2,6 +2,6 @@ tags: [grid, masonry, collage] --- - - + + diff --git a/src/_icons/layout-sidebar-right.svg b/src/_icons/layout-sidebar-right.svg index fb372e9b..499848df 100644 --- a/src/_icons/layout-sidebar-right.svg +++ b/src/_icons/layout-sidebar-right.svg @@ -2,6 +2,6 @@ tags: [grid, aside, column, columns] --- - - + + diff --git a/src/_icons/layout-sidebar.svg b/src/_icons/layout-sidebar.svg index dcee2653..8d989f63 100644 --- a/src/_icons/layout-sidebar.svg +++ b/src/_icons/layout-sidebar.svg @@ -2,6 +2,6 @@ tags: [grid, aside, column, columns] --- - - + + diff --git a/src/_icons/layout.svg b/src/_icons/layout.svg index 4606baad..ba97da4a 100644 --- a/src/_icons/layout.svg +++ b/src/_icons/layout.svg @@ -2,7 +2,7 @@ tags: [grid, columns, masonry, collage] --- - - - + + + diff --git a/src/_icons/live-photo.svg b/src/_icons/live-photo.svg new file mode 100644 index 00000000..bc04fed2 --- /dev/null +++ b/src/_icons/live-photo.svg @@ -0,0 +1,7 @@ +--- +--- + + + + + diff --git a/src/_icons/registered.svg b/src/_icons/registered.svg index a6fca273..b660199b 100644 --- a/src/_icons/registered.svg +++ b/src/_icons/registered.svg @@ -3,5 +3,5 @@ tags: [copyright] --- - + diff --git a/src/_icons/template.svg b/src/_icons/template.svg new file mode 100644 index 00000000..dbd6a913 --- /dev/null +++ b/src/_icons/template.svg @@ -0,0 +1,10 @@ +--- +tags: [grid, columns, masonry, collage] +--- + + + + + + + -- cgit v1.2.1 From f6eac139ef0faa372a67b7f130c25770c79bdad6 Mon Sep 17 00:00:00 2001 From: codecalm Date: Sat, 21 Mar 2020 14:54:53 +0100 Subject: build new version --- .github/icons.png | Bin 77085 -> 80152 bytes .github/icons.svg | 688 +++++++++++++++++++++------------------ icons/ad.svg | 9 + icons/adjustments.svg | 14 + icons/ajdustments.svg | 14 - icons/building-arch.svg | 8 + icons/building-bridge-2.svg | 6 + icons/building-bridge.svg | 10 + icons/building-church.svg | 10 + icons/building-hospital.svg | 10 + icons/building-store.svg | 10 + icons/device-speaker.svg | 8 + icons/home-2.svg | 8 + icons/id.svg | 10 + icons/layout-2.svg | 8 +- icons/layout-bottombar.svg | 7 + icons/layout-columns.svg | 4 +- icons/layout-navbar.svg | 4 +- icons/layout-rows.svg | 4 +- icons/layout-sidebar-right.svg | 4 +- icons/layout-sidebar.svg | 4 +- icons/layout.svg | 6 +- icons/live-photo.svg | 8 + icons/news.svg | 2 +- icons/registered.svg | 2 +- icons/template.svg | 10 + src/_icons/ad.svg | 4 +- src/_icons/building-bridge-2.svg | 2 +- src/_icons/building-bridge.svg | 11 +- src/_icons/device-speaker.svg | 2 +- src/_icons/live-photo.svg | 2 +- src/_icons/news.svg | 2 +- src/_icons/template.svg | 6 +- tabler-sprite.svg | 2 +- 34 files changed, 527 insertions(+), 372 deletions(-) create mode 100644 icons/ad.svg create mode 100644 icons/adjustments.svg delete mode 100644 icons/ajdustments.svg create mode 100644 icons/building-arch.svg create mode 100644 icons/building-bridge-2.svg create mode 100644 icons/building-bridge.svg create mode 100644 icons/building-church.svg create mode 100644 icons/building-hospital.svg create mode 100644 icons/building-store.svg create mode 100644 icons/device-speaker.svg create mode 100644 icons/home-2.svg create mode 100644 icons/id.svg create mode 100644 icons/layout-bottombar.svg create mode 100644 icons/live-photo.svg create mode 100644 icons/template.svg diff --git a/.github/icons.png b/.github/icons.png index 37c2fd10..444edbb1 100644 Binary files a/.github/icons.png and b/.github/icons.png differ diff --git a/.github/icons.svg b/.github/icons.svg index 511c9d3d..eec99ccb 100644 --- a/.github/icons.svg +++ b/.github/icons.svg @@ -1,7 +1,9 @@ - + - + + @@ -128,6 +130,20 @@ + + + + + + + + + + + + + + @@ -244,6 +260,8 @@ + + @@ -344,10 +362,14 @@ + + + + @@ -365,7 +387,7 @@ - + @@ -379,27 +401,31 @@ - + + + - + - + - + - + - + + + @@ -457,7 +483,7 @@ - + @@ -497,7 +523,7 @@ - + @@ -564,6 +590,8 @@ + + @@ -627,317 +655,331 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/icons/ad.svg b/icons/ad.svg new file mode 100644 index 00000000..c88d477b --- /dev/null +++ b/icons/ad.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/adjustments.svg b/icons/adjustments.svg new file mode 100644 index 00000000..09900429 --- /dev/null +++ b/icons/adjustments.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons/ajdustments.svg b/icons/ajdustments.svg deleted file mode 100644 index 3d87cf63..00000000 --- a/icons/ajdustments.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/icons/building-arch.svg b/icons/building-arch.svg new file mode 100644 index 00000000..d0c0ed93 --- /dev/null +++ b/icons/building-arch.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/building-bridge-2.svg b/icons/building-bridge-2.svg new file mode 100644 index 00000000..6351d39b --- /dev/null +++ b/icons/building-bridge-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/building-bridge.svg b/icons/building-bridge.svg new file mode 100644 index 00000000..dde9bf5a --- /dev/null +++ b/icons/building-bridge.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/building-church.svg b/icons/building-church.svg new file mode 100644 index 00000000..f2c4386c --- /dev/null +++ b/icons/building-church.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/building-hospital.svg b/icons/building-hospital.svg new file mode 100644 index 00000000..2cd9be4e --- /dev/null +++ b/icons/building-hospital.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/building-store.svg b/icons/building-store.svg new file mode 100644 index 00000000..269cb8dd --- /dev/null +++ b/icons/building-store.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/device-speaker.svg b/icons/device-speaker.svg new file mode 100644 index 00000000..9c3b4819 --- /dev/null +++ b/icons/device-speaker.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/home-2.svg b/icons/home-2.svg new file mode 100644 index 00000000..28b31b06 --- /dev/null +++ b/icons/home-2.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/id.svg b/icons/id.svg new file mode 100644 index 00000000..514a5600 --- /dev/null +++ b/icons/id.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/layout-2.svg b/icons/layout-2.svg index dbd3a7eb..8387825c 100644 --- a/icons/layout-2.svg +++ b/icons/layout-2.svg @@ -1,9 +1,9 @@ - - - - + + + + diff --git a/icons/layout-bottombar.svg b/icons/layout-bottombar.svg new file mode 100644 index 00000000..a5b0c698 --- /dev/null +++ b/icons/layout-bottombar.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/layout-columns.svg b/icons/layout-columns.svg index 54559544..682f0f7b 100644 --- a/icons/layout-columns.svg +++ b/icons/layout-columns.svg @@ -1,7 +1,7 @@ - - + + diff --git a/icons/layout-navbar.svg b/icons/layout-navbar.svg index 714cd78f..f6e005c4 100644 --- a/icons/layout-navbar.svg +++ b/icons/layout-navbar.svg @@ -1,7 +1,7 @@ - - + + diff --git a/icons/layout-rows.svg b/icons/layout-rows.svg index 19aa3dae..f8bd040a 100644 --- a/icons/layout-rows.svg +++ b/icons/layout-rows.svg @@ -1,7 +1,7 @@ - - + + diff --git a/icons/layout-sidebar-right.svg b/icons/layout-sidebar-right.svg index 7345ff1c..8059c2b4 100644 --- a/icons/layout-sidebar-right.svg +++ b/icons/layout-sidebar-right.svg @@ -1,7 +1,7 @@ - - + + diff --git a/icons/layout-sidebar.svg b/icons/layout-sidebar.svg index b92b7fdd..92a44445 100644 --- a/icons/layout-sidebar.svg +++ b/icons/layout-sidebar.svg @@ -1,7 +1,7 @@ - - + + diff --git a/icons/layout.svg b/icons/layout.svg index 5b057b01..62670d33 100644 --- a/icons/layout.svg +++ b/icons/layout.svg @@ -1,8 +1,8 @@ - - - + + + diff --git a/icons/live-photo.svg b/icons/live-photo.svg new file mode 100644 index 00000000..500ef3e3 --- /dev/null +++ b/icons/live-photo.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/news.svg b/icons/news.svg index 5a749d9f..ee41a395 100644 --- a/icons/news.svg +++ b/icons/news.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/registered.svg b/icons/registered.svg index 3708c095..537a77d9 100644 --- a/icons/registered.svg +++ b/icons/registered.svg @@ -1,7 +1,7 @@ - + diff --git a/icons/template.svg b/icons/template.svg new file mode 100644 index 00000000..d2261cda --- /dev/null +++ b/icons/template.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/_icons/ad.svg b/src/_icons/ad.svg index 576b61de..b2166f25 100644 --- a/src/_icons/ad.svg +++ b/src/_icons/ad.svg @@ -4,6 +4,6 @@ tags: [] - - + + diff --git a/src/_icons/building-bridge-2.svg b/src/_icons/building-bridge-2.svg index 2ed3b4dc..23b8af58 100644 --- a/src/_icons/building-bridge-2.svg +++ b/src/_icons/building-bridge-2.svg @@ -1,5 +1,5 @@ --- --- - + diff --git a/src/_icons/building-bridge.svg b/src/_icons/building-bridge.svg index 88cf6b66..67b047bc 100644 --- a/src/_icons/building-bridge.svg +++ b/src/_icons/building-bridge.svg @@ -1,10 +1,9 @@ --- --- - - - - - - + + + + + diff --git a/src/_icons/device-speaker.svg b/src/_icons/device-speaker.svg index 3643b1e1..56f12add 100644 --- a/src/_icons/device-speaker.svg +++ b/src/_icons/device-speaker.svg @@ -3,5 +3,5 @@ - + diff --git a/src/_icons/live-photo.svg b/src/_icons/live-photo.svg index bc04fed2..d79dd7dc 100644 --- a/src/_icons/live-photo.svg +++ b/src/_icons/live-photo.svg @@ -3,5 +3,5 @@ - + diff --git a/src/_icons/news.svg b/src/_icons/news.svg index 077d7ada..5ccabad4 100644 --- a/src/_icons/news.svg +++ b/src/_icons/news.svg @@ -2,7 +2,7 @@ tags: [newspaper, article] --- - + diff --git a/src/_icons/template.svg b/src/_icons/template.svg index dbd6a913..163f1c2c 100644 --- a/src/_icons/template.svg +++ b/src/_icons/template.svg @@ -4,7 +4,7 @@ tags: [grid, columns, masonry, collage] - - - + + + diff --git a/tabler-sprite.svg b/tabler-sprite.svg index 9d2618d6..b80449b3 100644 --- a/tabler-sprite.svg +++ b/tabler-sprite.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file -- cgit v1.2.1 From 0908f417fe8cf18f6f88463eced6926c0e9d99de Mon Sep 17 00:00:00 2001 From: codecalm Date: Sat, 21 Mar 2020 20:02:57 +0100 Subject: 16 new icons: `alarm`, `arrow-back`, `arrow-forward`, `artboard`, `award`, `bug`, `calendar-event`, `globe`, `help`, `mug`, `palette`, `pencil`, `record-mail`, `ruler`, `scissors`, `stack` Fixed icons: `directions`, `disabled`, `disc`, `edit`, `switch-vertical` --- gulpfile.js | 41 +++++++++++++++++++++++---------- icons-png/ad.png | Bin 0 -> 3231 bytes icons-png/adjustments.png | Bin 0 -> 3210 bytes icons-png/ajdustments.png | Bin 3210 -> 0 bytes icons-png/alarm.png | Bin 0 -> 4782 bytes icons-png/arrow-back.png | Bin 0 -> 2242 bytes icons-png/arrow-forward.png | Bin 0 -> 2127 bytes icons-png/artboard.png | Bin 0 -> 2160 bytes icons-png/award.png | Bin 0 -> 3690 bytes icons-png/bug.png | Bin 0 -> 4357 bytes icons-png/building-arch.png | Bin 0 -> 2527 bytes icons-png/building-bridge-2.png | Bin 0 -> 2700 bytes icons-png/building-bridge.png | Bin 0 -> 2791 bytes icons-png/building-church.png | Bin 0 -> 2550 bytes icons-png/building-hospital.png | Bin 0 -> 2700 bytes icons-png/building-store.png | Bin 0 -> 2725 bytes icons-png/building.png | Bin 0 -> 2500 bytes icons-png/calendar-event.png | Bin 0 -> 2600 bytes icons-png/device-speaker.png | Bin 0 -> 3485 bytes icons-png/directions.png | Bin 1932 -> 2185 bytes icons-png/disabled.png | Bin 3600 -> 3627 bytes icons-png/disc.png | Bin 5544 -> 6334 bytes icons-png/edit.png | Bin 3065 -> 3169 bytes icons-png/globe.png | Bin 0 -> 4791 bytes icons-png/help.png | Bin 0 -> 5570 bytes icons-png/home-2.png | Bin 0 -> 2363 bytes icons-png/id.png | Bin 0 -> 3689 bytes icons-png/layout-2.png | Bin 4265 -> 2909 bytes icons-png/layout-bottombar.png | Bin 0 -> 1924 bytes icons-png/layout-columns.png | Bin 1979 -> 1958 bytes icons-png/layout-navbar.png | Bin 1966 -> 1925 bytes icons-png/layout-rows.png | Bin 1967 -> 1924 bytes icons-png/layout-sidebar-right.png | Bin 1983 -> 1972 bytes icons-png/layout-sidebar.png | Bin 1982 -> 1937 bytes icons-png/layout.png | Bin 3483 -> 3445 bytes icons-png/live-photo.png | Bin 0 -> 5400 bytes icons-png/mug.png | Bin 0 -> 2559 bytes icons-png/palette.png | Bin 0 -> 3875 bytes icons-png/pencil.png | Bin 0 -> 2107 bytes icons-png/record-mail.png | Bin 0 -> 1800 bytes icons-png/registered.png | Bin 5444 -> 5443 bytes icons-png/ruler.png | Bin 0 -> 2384 bytes icons-png/scissors.png | Bin 0 -> 3249 bytes icons-png/stack.png | Bin 0 -> 2173 bytes icons-png/template.png | Bin 0 -> 2769 bytes icons/activity.svg | 2 +- icons/ad.svg | 2 +- icons/adjustments.svg | 2 +- icons/alarm.svg | 9 ++++++++ icons/alert-circle.svg | 2 +- icons/alert-triangle.svg | 2 +- icons/align-center.svg | 2 +- icons/align-justified.svg | 2 +- icons/align-left.svg | 2 +- icons/align-right.svg | 2 +- icons/archive.svg | 2 +- icons/arrow-back.svg | 6 +++++ icons/arrow-bar-down.svg | 2 +- icons/arrow-bar-left.svg | 2 +- icons/arrow-bar-right.svg | 2 +- icons/arrow-bar-up.svg | 2 +- icons/arrow-down-circle.svg | 2 +- icons/arrow-down-left-circle.svg | 2 +- icons/arrow-down-left.svg | 2 +- icons/arrow-down-right-circle.svg | 2 +- icons/arrow-down-right.svg | 2 +- icons/arrow-down.svg | 2 +- icons/arrow-forward.svg | 6 +++++ icons/arrow-left-circle.svg | 2 +- icons/arrow-left.svg | 2 +- icons/arrow-narrow-down.svg | 2 +- icons/arrow-narrow-left.svg | 2 +- icons/arrow-narrow-right.svg | 2 +- icons/arrow-narrow-up.svg | 2 +- icons/arrow-right-circle.svg | 2 +- icons/arrow-right.svg | 2 +- icons/arrow-up-circle.svg | 2 +- icons/arrow-up-left-circle.svg | 2 +- icons/arrow-up-left.svg | 2 +- icons/arrow-up-right-circle.svg | 2 +- icons/arrow-up-right.svg | 2 +- icons/arrow-up.svg | 2 +- icons/arrows-diagonal-2.svg | 2 +- icons/arrows-diagonal.svg | 2 +- icons/arrows-maximize.svg | 2 +- icons/arrows-minimize.svg | 2 +- icons/artboard.svg | 14 +++++++++++ icons/at.svg | 2 +- icons/award.svg | 7 ++++++ icons/backspace.svg | 2 +- icons/ban.svg | 2 +- icons/battery-1.svg | 2 +- icons/battery-2.svg | 2 +- icons/battery-3.svg | 2 +- icons/battery-4.svg | 2 +- icons/battery-charging.svg | 2 +- icons/battery.svg | 2 +- icons/bell.svg | 2 +- icons/bike.svg | 2 +- icons/bluetooth.svg | 2 +- icons/bolt.svg | 2 +- icons/book.svg | 2 +- icons/bookmark.svg | 2 +- icons/border-all.svg | 2 +- icons/border-bottom.svg | 2 +- icons/border-horizontal.svg | 2 +- icons/border-inner.svg | 2 +- icons/border-left.svg | 2 +- icons/border-none.svg | 2 +- icons/border-outer.svg | 2 +- icons/border-right.svg | 2 +- icons/border-top.svg | 2 +- icons/border-vertical.svg | 2 +- icons/box.svg | 2 +- icons/briefcase.svg | 2 +- icons/bucket.svg | 2 +- icons/bug.svg | 14 +++++++++++ icons/building-arch.svg | 2 +- icons/building-bridge-2.svg | 2 +- icons/building-bridge.svg | 2 +- icons/building-church.svg | 2 +- icons/building-hospital.svg | 2 +- icons/building-store.svg | 2 +- icons/building.svg | 13 +++++++++++ icons/bulb-off.svg | 2 +- icons/bulb.svg | 2 +- icons/calendar-event.svg | 10 ++++++++ icons/calendar.svg | 2 +- icons/camera.svg | 2 +- icons/cash.svg | 2 +- icons/cast.svg | 2 +- icons/chart-area-line.svg | 2 +- icons/chart-area.svg | 2 +- icons/chart-bar.svg | 2 +- icons/chart-candle.svg | 2 +- icons/chart-donut.svg | 2 +- icons/chart-line.svg | 2 +- icons/chart-pie.svg | 2 +- icons/check.svg | 2 +- icons/chevron-down.svg | 2 +- icons/chevron-left.svg | 2 +- icons/chevron-right.svg | 2 +- icons/chevron-up.svg | 2 +- icons/chevrons-down.svg | 2 +- icons/chevrons-left.svg | 2 +- icons/chevrons-right.svg | 2 +- icons/chevrons-up.svg | 2 +- icons/circle-check.svg | 2 +- icons/circle-minus.svg | 2 +- icons/circle-plus.svg | 2 +- icons/circle-x.svg | 2 +- icons/circle.svg | 2 +- icons/clipboard-check.svg | 2 +- icons/clipboard-list.svg | 2 +- icons/clipboard-x.svg | 2 +- icons/clipboard.svg | 2 +- icons/clock.svg | 2 +- icons/cloud-download.svg | 2 +- icons/cloud-rain.svg | 2 +- icons/cloud-snow.svg | 2 +- icons/cloud-storm.svg | 2 +- icons/cloud-upload.svg | 2 +- icons/cloud.svg | 2 +- icons/code.svg | 2 +- icons/command.svg | 2 +- icons/compass.svg | 2 +- icons/copy.svg | 2 +- icons/copyright.svg | 2 +- icons/corner-down-left.svg | 2 +- icons/corner-down-right.svg | 2 +- icons/corner-left-down.svg | 2 +- icons/corner-left-up.svg | 2 +- icons/corner-right-down.svg | 2 +- icons/corner-right-up.svg | 2 +- icons/corner-up-left.svg | 2 +- icons/corner-up-right.svg | 2 +- icons/credit-card.svg | 2 +- icons/crop.svg | 2 +- icons/cut.svg | 2 +- icons/dashboard.svg | 2 +- icons/database.svg | 2 +- icons/device-desktop.svg | 2 +- icons/device-mobile.svg | 2 +- icons/device-speaker.svg | 2 +- icons/device-tablet.svg | 2 +- icons/device-tv.svg | 2 +- icons/directions.svg | 6 ++--- icons/disabled.svg | 4 ++-- icons/disc.svg | 6 +++-- icons/dots-circle-horizontal.svg | 2 +- icons/dots-diagonal-2.svg | 2 +- icons/dots-diagonal.svg | 2 +- icons/dots-vertical.svg | 2 +- icons/dots.svg | 2 +- icons/download.svg | 2 +- icons/droplet.svg | 2 +- icons/edit.svg | 3 ++- icons/external-link.svg | 2 +- icons/eye.svg | 2 +- icons/face-id.svg | 2 +- icons/file-check.svg | 2 +- icons/file-download.svg | 2 +- icons/file-minus.svg | 2 +- icons/file-music.svg | 2 +- icons/file-plus.svg | 2 +- icons/file-shredder.svg | 2 +- icons/file-text.svg | 2 +- icons/file-x.svg | 2 +- icons/file.svg | 2 +- icons/filter.svg | 2 +- icons/flag.svg | 2 +- icons/flip-horizontal.svg | 2 +- icons/flip-vertical.svg | 2 +- icons/floppy-disk.svg | 2 +- icons/folder-minus.svg | 2 +- icons/folder-plus.svg | 2 +- icons/folder-x.svg | 2 +- icons/folder.svg | 2 +- icons/folders.svg | 2 +- icons/frame.svg | 2 +- icons/friends.svg | 2 +- icons/gauge.svg | 2 +- icons/git-branch.svg | 2 +- icons/git-commit.svg | 2 +- icons/git-compare.svg | 2 +- icons/git-merge.svg | 2 +- icons/git-pull-request.svg | 2 +- icons/glass-full.svg | 2 +- icons/glass.svg | 2 +- icons/globe.svg | 9 ++++++++ icons/grid-dots.svg | 2 +- icons/grid.svg | 2 +- icons/hash.svg | 2 +- icons/headphones.svg | 2 +- icons/heart.svg | 2 +- icons/help.svg | 8 +++++++ icons/home-2.svg | 2 +- icons/home.svg | 2 +- icons/ice-cream.svg | 2 +- icons/id.svg | 2 +- icons/inbox.svg | 2 +- icons/info-circle.svg | 2 +- icons/info-square.svg | 2 +- icons/key.svg | 2 +- icons/layers-difference.svg | 2 +- icons/layers-intersect.svg | 2 +- icons/layers-subtract.svg | 2 +- icons/layers-union.svg | 2 +- icons/layout-2.svg | 2 +- icons/layout-align-bottom.svg | 2 +- icons/layout-align-center.svg | 2 +- icons/layout-align-left.svg | 2 +- icons/layout-align-middle.svg | 2 +- icons/layout-align-right.svg | 2 +- icons/layout-align-top.svg | 2 +- icons/layout-bottombar.svg | 2 +- icons/layout-columns.svg | 2 +- icons/layout-distribute-horizontal.svg | 2 +- icons/layout-distribute-vertical.svg | 2 +- icons/layout-navbar.svg | 2 +- icons/layout-rows.svg | 2 +- icons/layout-sidebar-right.svg | 2 +- icons/layout-sidebar.svg | 2 +- icons/layout.svg | 2 +- icons/lego.svg | 2 +- icons/lifebuoy.svg | 2 +- icons/link.svg | 2 +- icons/live-photo.svg | 2 +- icons/location.svg | 2 +- icons/lock-open.svg | 2 +- icons/lock.svg | 2 +- icons/magnet.svg | 2 +- icons/mail-opened.svg | 2 +- icons/mail.svg | 2 +- icons/man.svg | 2 +- icons/map-2.svg | 2 +- icons/map-pin.svg | 2 +- icons/map.svg | 2 +- icons/maximize.svg | 2 +- icons/menu.svg | 2 +- icons/message-2.svg | 2 +- icons/message-circle.svg | 2 +- icons/message-dots.svg | 2 +- icons/message.svg | 2 +- icons/microphone.svg | 2 +- icons/minimize.svg | 2 +- icons/minus.svg | 2 +- icons/mood-confuzed.svg | 2 +- icons/mood-happy.svg | 2 +- icons/mood-neutral.svg | 2 +- icons/mood-sad.svg | 2 +- icons/mood-smile.svg | 2 +- icons/moon.svg | 2 +- icons/mouse.svg | 2 +- icons/movie.svg | 2 +- icons/mug.svg | 7 ++++++ icons/music.svg | 2 +- icons/news.svg | 2 +- icons/notification.svg | 2 +- icons/package.svg | 2 +- icons/paint.svg | 2 +- icons/palette.svg | 9 ++++++++ icons/paperclip.svg | 2 +- icons/parking.svg | 2 +- icons/pencil.svg | 7 ++++++ icons/phone-call.svg | 2 +- icons/phone-incoming.svg | 2 +- icons/phone-outgoing.svg | 2 +- icons/phone-pause.svg | 2 +- icons/phone.svg | 2 +- icons/photo.svg | 2 +- icons/plus.svg | 2 +- icons/point.svg | 2 +- icons/power.svg | 2 +- icons/printer.svg | 2 +- icons/prompt.svg | 2 +- icons/puzzle.svg | 2 +- icons/qrcode.svg | 2 +- icons/record-mail.svg | 8 +++++++ icons/refresh.svg | 2 +- icons/registered.svg | 2 +- icons/rotate-clockwise.svg | 2 +- icons/rotate.svg | 2 +- icons/route.svg | 2 +- icons/router.svg | 2 +- icons/rss.svg | 2 +- icons/ruler.svg | 12 ++++++++++ icons/scissors.svg | 9 ++++++++ icons/search.svg | 2 +- icons/selector.svg | 2 +- icons/send.svg | 2 +- icons/server.svg | 2 +- icons/settings.svg | 2 +- icons/share.svg | 2 +- icons/shield-check.svg | 2 +- icons/shield-x.svg | 2 +- icons/shield.svg | 2 +- icons/shopping-cart.svg | 2 +- icons/sort-ascending.svg | 2 +- icons/sort-descending.svg | 2 +- icons/square-check.svg | 2 +- icons/square-minus.svg | 2 +- icons/square-plus.svg | 2 +- icons/square-x.svg | 2 +- icons/square.svg | 2 +- icons/stack.svg | 8 +++++++ icons/star.svg | 2 +- icons/sticker.svg | 2 +- icons/sun.svg | 2 +- icons/switch-horizontal.svg | 2 +- icons/switch-vertical.svg | 4 +--- icons/switch.svg | 2 +- icons/tag.svg | 2 +- icons/target.svg | 2 +- icons/temperature-celsius.svg | 2 +- icons/temperature-fahrenheit.svg | 2 +- icons/temperature.svg | 2 +- icons/template.svg | 2 +- icons/test-pipe.svg | 2 +- icons/thumb-down.svg | 2 +- icons/thumb-up.svg | 2 +- icons/ticket.svg | 2 +- icons/toggle-left.svg | 2 +- icons/toggle-right.svg | 2 +- icons/tool.svg | 2 +- icons/trash.svg | 2 +- icons/trending-down.svg | 2 +- icons/trending-up.svg | 2 +- icons/triangle.svg | 2 +- icons/trophy.svg | 2 +- icons/unlink.svg | 2 +- icons/upload.svg | 2 +- icons/urgent.svg | 2 +- icons/user-check.svg | 2 +- icons/user-minus.svg | 2 +- icons/user-plus.svg | 2 +- icons/user-x.svg | 2 +- icons/user.svg | 2 +- icons/viewfinder.svg | 2 +- icons/volume-2.svg | 2 +- icons/volume-3.svg | 2 +- icons/volume.svg | 2 +- icons/wifi.svg | 2 +- icons/woman.svg | 2 +- icons/world.svg | 2 +- icons/x.svg | 2 +- icons/zoom-in.svg | 2 +- icons/zoom-out.svg | 2 +- src/_icons/alarm.svg | 9 ++++++++ src/_icons/arrow-back.svg | 6 +++++ src/_icons/arrow-forward.svg | 6 +++++ src/_icons/artboard.svg | 13 +++++++++++ src/_icons/award.svg | 6 +++++ src/_icons/bug.svg | 13 +++++++++++ src/_icons/calendar-event.svg | 10 ++++++++ src/_icons/directions.svg | 4 ++-- src/_icons/disabled.svg | 2 +- src/_icons/disc.svg | 4 +++- src/_icons/edit.svg | 1 + src/_icons/globe.svg | 8 +++++++ src/_icons/help.svg | 7 ++++++ src/_icons/mug.svg | 6 +++++ src/_icons/palette.svg | 8 +++++++ src/_icons/pencil.svg | 6 +++++ src/_icons/record-mail.svg | 7 ++++++ src/_icons/ruler.svg | 11 +++++++++ src/_icons/scissors.svg | 8 +++++++ src/_icons/stack.svg | 7 ++++++ src/_icons/switch-vertical.svg | 2 -- src/_includes/icon.html | 2 +- 410 files changed, 657 insertions(+), 351 deletions(-) create mode 100644 icons-png/ad.png create mode 100644 icons-png/adjustments.png delete mode 100644 icons-png/ajdustments.png create mode 100644 icons-png/alarm.png create mode 100644 icons-png/arrow-back.png create mode 100644 icons-png/arrow-forward.png create mode 100644 icons-png/artboard.png create mode 100644 icons-png/award.png create mode 100644 icons-png/bug.png create mode 100644 icons-png/building-arch.png create mode 100644 icons-png/building-bridge-2.png create mode 100644 icons-png/building-bridge.png create mode 100644 icons-png/building-church.png create mode 100644 icons-png/building-hospital.png create mode 100644 icons-png/building-store.png create mode 100644 icons-png/building.png create mode 100644 icons-png/calendar-event.png create mode 100644 icons-png/device-speaker.png create mode 100644 icons-png/globe.png create mode 100644 icons-png/help.png create mode 100644 icons-png/home-2.png create mode 100644 icons-png/id.png create mode 100644 icons-png/layout-bottombar.png create mode 100644 icons-png/live-photo.png create mode 100644 icons-png/mug.png create mode 100644 icons-png/palette.png create mode 100644 icons-png/pencil.png create mode 100644 icons-png/record-mail.png create mode 100644 icons-png/ruler.png create mode 100644 icons-png/scissors.png create mode 100644 icons-png/stack.png create mode 100644 icons-png/template.png create mode 100644 icons/alarm.svg create mode 100644 icons/arrow-back.svg create mode 100644 icons/arrow-forward.svg create mode 100644 icons/artboard.svg create mode 100644 icons/award.svg create mode 100644 icons/bug.svg create mode 100644 icons/building.svg create mode 100644 icons/calendar-event.svg create mode 100644 icons/globe.svg create mode 100644 icons/help.svg create mode 100644 icons/mug.svg create mode 100644 icons/palette.svg create mode 100644 icons/pencil.svg create mode 100644 icons/record-mail.svg create mode 100644 icons/ruler.svg create mode 100644 icons/scissors.svg create mode 100644 icons/stack.svg create mode 100644 src/_icons/alarm.svg create mode 100644 src/_icons/arrow-back.svg create mode 100644 src/_icons/arrow-forward.svg create mode 100644 src/_icons/artboard.svg create mode 100644 src/_icons/award.svg create mode 100644 src/_icons/bug.svg create mode 100644 src/_icons/calendar-event.svg create mode 100644 src/_icons/globe.svg create mode 100644 src/_icons/help.svg create mode 100644 src/_icons/mug.svg create mode 100644 src/_icons/palette.svg create mode 100644 src/_icons/pencil.svg create mode 100644 src/_icons/record-mail.svg create mode 100644 src/_icons/ruler.svg create mode 100644 src/_icons/scissors.svg create mode 100644 src/_icons/stack.svg diff --git a/gulpfile.js b/gulpfile.js index 3ba79bd2..5210a8d2 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -222,31 +222,48 @@ gulp.task('prepare-changelog', function(cb) { }); if(newIcons.length > 0) { - console.log(`**${newIcons.length} new icons:**\n`); + let str = ''; + str += `${newIcons.length} new icons: `; - newIcons.forEach(function(icon){ - console.log(`- \`${icon}\``); + newIcons.forEach(function(icon, i){ + str += `\`${icon}\``; + + if((i + 1) <= newIcons.length - 1) { + str += ', ' + } }); - console.log(''); + console.log(str); } if(modifiedIcons.length > 0) { - console.log(`**Fixed icons:**\n`); + let str = ''; + str += `Fixed icons: `; + + modifiedIcons.forEach(function(icon, i){ + str += `\`${icon}\``; - modifiedIcons.forEach(function(icon){ - console.log(`- \`${icon}\``); + if((i + 1) <= modifiedIcons.length - 1) { + str += ', ' + } }); - console.log(''); + console.log(str); } if(renamedIcons.length > 0) { - console.log(`**Renamed icons:**\n`); + let str = ''; + str += `**Renamed icons: `; + + renamedIcons.forEach(function(icon, i){ + str += `\`${icon[0]}\` renamed to \`${icon[1]}\``; + + if((i + 1) <= renamedIcons.length - 1) { + str += ', ' + } + }); - renamedIcons.forEach(function(icon){ - console.log(`- \`${icon[0]}\` renamed to \`${icon[1]}\``); - }) + console.log(str); } cb(); diff --git a/icons-png/ad.png b/icons-png/ad.png new file mode 100644 index 00000000..23c2a8e1 Binary files /dev/null and b/icons-png/ad.png differ diff --git a/icons-png/adjustments.png b/icons-png/adjustments.png new file mode 100644 index 00000000..e4846583 Binary files /dev/null and b/icons-png/adjustments.png differ diff --git a/icons-png/ajdustments.png b/icons-png/ajdustments.png deleted file mode 100644 index e4846583..00000000 Binary files a/icons-png/ajdustments.png and /dev/null differ diff --git a/icons-png/alarm.png b/icons-png/alarm.png new file mode 100644 index 00000000..011ed13c Binary files /dev/null and b/icons-png/alarm.png differ diff --git a/icons-png/arrow-back.png b/icons-png/arrow-back.png new file mode 100644 index 00000000..a9f296a6 Binary files /dev/null and b/icons-png/arrow-back.png differ diff --git a/icons-png/arrow-forward.png b/icons-png/arrow-forward.png new file mode 100644 index 00000000..d8b078be Binary files /dev/null and b/icons-png/arrow-forward.png differ diff --git a/icons-png/artboard.png b/icons-png/artboard.png new file mode 100644 index 00000000..2bb3aaeb Binary files /dev/null and b/icons-png/artboard.png differ diff --git a/icons-png/award.png b/icons-png/award.png new file mode 100644 index 00000000..a8adf863 Binary files /dev/null and b/icons-png/award.png differ diff --git a/icons-png/bug.png b/icons-png/bug.png new file mode 100644 index 00000000..cf72a085 Binary files /dev/null and b/icons-png/bug.png differ diff --git a/icons-png/building-arch.png b/icons-png/building-arch.png new file mode 100644 index 00000000..80bb7a8c Binary files /dev/null and b/icons-png/building-arch.png differ diff --git a/icons-png/building-bridge-2.png b/icons-png/building-bridge-2.png new file mode 100644 index 00000000..6e3323e3 Binary files /dev/null and b/icons-png/building-bridge-2.png differ diff --git a/icons-png/building-bridge.png b/icons-png/building-bridge.png new file mode 100644 index 00000000..339fca02 Binary files /dev/null and b/icons-png/building-bridge.png differ diff --git a/icons-png/building-church.png b/icons-png/building-church.png new file mode 100644 index 00000000..d907c6fe Binary files /dev/null and b/icons-png/building-church.png differ diff --git a/icons-png/building-hospital.png b/icons-png/building-hospital.png new file mode 100644 index 00000000..9cfda8df Binary files /dev/null and b/icons-png/building-hospital.png differ diff --git a/icons-png/building-store.png b/icons-png/building-store.png new file mode 100644 index 00000000..cfefd080 Binary files /dev/null and b/icons-png/building-store.png differ diff --git a/icons-png/building.png b/icons-png/building.png new file mode 100644 index 00000000..812b2116 Binary files /dev/null and b/icons-png/building.png differ diff --git a/icons-png/calendar-event.png b/icons-png/calendar-event.png new file mode 100644 index 00000000..e1b2289c Binary files /dev/null and b/icons-png/calendar-event.png differ diff --git a/icons-png/device-speaker.png b/icons-png/device-speaker.png new file mode 100644 index 00000000..23fac92b Binary files /dev/null and b/icons-png/device-speaker.png differ diff --git a/icons-png/directions.png b/icons-png/directions.png index 478fa353..7548d782 100644 Binary files a/icons-png/directions.png and b/icons-png/directions.png differ diff --git a/icons-png/disabled.png b/icons-png/disabled.png index 0b093621..c59c2807 100644 Binary files a/icons-png/disabled.png and b/icons-png/disabled.png differ diff --git a/icons-png/disc.png b/icons-png/disc.png index 85a1482e..3e74a4b2 100644 Binary files a/icons-png/disc.png and b/icons-png/disc.png differ diff --git a/icons-png/edit.png b/icons-png/edit.png index 8e6d78cb..67f583df 100644 Binary files a/icons-png/edit.png and b/icons-png/edit.png differ diff --git a/icons-png/globe.png b/icons-png/globe.png new file mode 100644 index 00000000..1090c480 Binary files /dev/null and b/icons-png/globe.png differ diff --git a/icons-png/help.png b/icons-png/help.png new file mode 100644 index 00000000..ffd3cbd3 Binary files /dev/null and b/icons-png/help.png differ diff --git a/icons-png/home-2.png b/icons-png/home-2.png new file mode 100644 index 00000000..09c6eba6 Binary files /dev/null and b/icons-png/home-2.png differ diff --git a/icons-png/id.png b/icons-png/id.png new file mode 100644 index 00000000..4039fefd Binary files /dev/null and b/icons-png/id.png differ diff --git a/icons-png/layout-2.png b/icons-png/layout-2.png index 46699a8f..4ec5d3d2 100644 Binary files a/icons-png/layout-2.png and b/icons-png/layout-2.png differ diff --git a/icons-png/layout-bottombar.png b/icons-png/layout-bottombar.png new file mode 100644 index 00000000..46a02a81 Binary files /dev/null and b/icons-png/layout-bottombar.png differ diff --git a/icons-png/layout-columns.png b/icons-png/layout-columns.png index 8af948be..165b6767 100644 Binary files a/icons-png/layout-columns.png and b/icons-png/layout-columns.png differ diff --git a/icons-png/layout-navbar.png b/icons-png/layout-navbar.png index 9f112b04..b787d17c 100644 Binary files a/icons-png/layout-navbar.png and b/icons-png/layout-navbar.png differ diff --git a/icons-png/layout-rows.png b/icons-png/layout-rows.png index 5eb04d31..d3dc7531 100644 Binary files a/icons-png/layout-rows.png and b/icons-png/layout-rows.png differ diff --git a/icons-png/layout-sidebar-right.png b/icons-png/layout-sidebar-right.png index 52fcd015..770a0565 100644 Binary files a/icons-png/layout-sidebar-right.png and b/icons-png/layout-sidebar-right.png differ diff --git a/icons-png/layout-sidebar.png b/icons-png/layout-sidebar.png index 8972715c..4b2ae5c1 100644 Binary files a/icons-png/layout-sidebar.png and b/icons-png/layout-sidebar.png differ diff --git a/icons-png/layout.png b/icons-png/layout.png index 954e7d5c..4c0a6f8d 100644 Binary files a/icons-png/layout.png and b/icons-png/layout.png differ diff --git a/icons-png/live-photo.png b/icons-png/live-photo.png new file mode 100644 index 00000000..2009a3cb Binary files /dev/null and b/icons-png/live-photo.png differ diff --git a/icons-png/mug.png b/icons-png/mug.png new file mode 100644 index 00000000..e897a57c Binary files /dev/null and b/icons-png/mug.png differ diff --git a/icons-png/palette.png b/icons-png/palette.png new file mode 100644 index 00000000..2e5a13e7 Binary files /dev/null and b/icons-png/palette.png differ diff --git a/icons-png/pencil.png b/icons-png/pencil.png new file mode 100644 index 00000000..8d061e71 Binary files /dev/null and b/icons-png/pencil.png differ diff --git a/icons-png/record-mail.png b/icons-png/record-mail.png new file mode 100644 index 00000000..c909ceaf Binary files /dev/null and b/icons-png/record-mail.png differ diff --git a/icons-png/registered.png b/icons-png/registered.png index fd7b3da1..6a0ba150 100644 Binary files a/icons-png/registered.png and b/icons-png/registered.png differ diff --git a/icons-png/ruler.png b/icons-png/ruler.png new file mode 100644 index 00000000..79677ba0 Binary files /dev/null and b/icons-png/ruler.png differ diff --git a/icons-png/scissors.png b/icons-png/scissors.png new file mode 100644 index 00000000..482ffc14 Binary files /dev/null and b/icons-png/scissors.png differ diff --git a/icons-png/stack.png b/icons-png/stack.png new file mode 100644 index 00000000..5b16335a Binary files /dev/null and b/icons-png/stack.png differ diff --git a/icons-png/template.png b/icons-png/template.png new file mode 100644 index 00000000..a344ce02 Binary files /dev/null and b/icons-png/template.png differ diff --git a/icons/activity.svg b/icons/activity.svg index 14941fed..c829adc1 100644 --- a/icons/activity.svg +++ b/icons/activity.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/ad.svg b/icons/ad.svg index c88d477b..346fb413 100644 --- a/icons/ad.svg +++ b/icons/ad.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/adjustments.svg b/icons/adjustments.svg index 09900429..95872d61 100644 --- a/icons/adjustments.svg +++ b/icons/adjustments.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/alarm.svg b/icons/alarm.svg new file mode 100644 index 00000000..4cae4e41 --- /dev/null +++ b/icons/alarm.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/alert-circle.svg b/icons/alert-circle.svg index 168fdb82..767f63c4 100644 --- a/icons/alert-circle.svg +++ b/icons/alert-circle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/alert-triangle.svg b/icons/alert-triangle.svg index 3515002a..1aa56990 100644 --- a/icons/alert-triangle.svg +++ b/icons/alert-triangle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/align-center.svg b/icons/align-center.svg index d76b2062..c17d564b 100644 --- a/icons/align-center.svg +++ b/icons/align-center.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/align-justified.svg b/icons/align-justified.svg index cf584b49..80fe663e 100644 --- a/icons/align-justified.svg +++ b/icons/align-justified.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/align-left.svg b/icons/align-left.svg index 3708d3a5..ba91baff 100644 --- a/icons/align-left.svg +++ b/icons/align-left.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/align-right.svg b/icons/align-right.svg index ae716dc5..77183e92 100644 --- a/icons/align-right.svg +++ b/icons/align-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/archive.svg b/icons/archive.svg index d1ee2a0c..cd96cbea 100644 --- a/icons/archive.svg +++ b/icons/archive.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-back.svg b/icons/arrow-back.svg new file mode 100644 index 00000000..0f7c5f4e --- /dev/null +++ b/icons/arrow-back.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/arrow-bar-down.svg b/icons/arrow-bar-down.svg index b412e122..8ceab0ab 100644 --- a/icons/arrow-bar-down.svg +++ b/icons/arrow-bar-down.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-bar-left.svg b/icons/arrow-bar-left.svg index cfd41e79..79c074b8 100644 --- a/icons/arrow-bar-left.svg +++ b/icons/arrow-bar-left.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-bar-right.svg b/icons/arrow-bar-right.svg index b91786dc..3a4820f9 100644 --- a/icons/arrow-bar-right.svg +++ b/icons/arrow-bar-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-bar-up.svg b/icons/arrow-bar-up.svg index ee797838..3258c863 100644 --- a/icons/arrow-bar-up.svg +++ b/icons/arrow-bar-up.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-down-circle.svg b/icons/arrow-down-circle.svg index 6d3851c6..91a94c42 100644 --- a/icons/arrow-down-circle.svg +++ b/icons/arrow-down-circle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-down-left-circle.svg b/icons/arrow-down-left-circle.svg index 7e5b0afd..db8c7b30 100644 --- a/icons/arrow-down-left-circle.svg +++ b/icons/arrow-down-left-circle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-down-left.svg b/icons/arrow-down-left.svg index fe192dde..9ffacf57 100644 --- a/icons/arrow-down-left.svg +++ b/icons/arrow-down-left.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-down-right-circle.svg b/icons/arrow-down-right-circle.svg index 9c444b86..fc7e2520 100644 --- a/icons/arrow-down-right-circle.svg +++ b/icons/arrow-down-right-circle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-down-right.svg b/icons/arrow-down-right.svg index 3a366a95..ed8eefac 100644 --- a/icons/arrow-down-right.svg +++ b/icons/arrow-down-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-down.svg b/icons/arrow-down.svg index 707ff86c..bcb5ba07 100644 --- a/icons/arrow-down.svg +++ b/icons/arrow-down.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-forward.svg b/icons/arrow-forward.svg new file mode 100644 index 00000000..b7e964c2 --- /dev/null +++ b/icons/arrow-forward.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/arrow-left-circle.svg b/icons/arrow-left-circle.svg index 7d9459ef..8d48d312 100644 --- a/icons/arrow-left-circle.svg +++ b/icons/arrow-left-circle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-left.svg b/icons/arrow-left.svg index 6e0fd743..4f1bfc02 100644 --- a/icons/arrow-left.svg +++ b/icons/arrow-left.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-narrow-down.svg b/icons/arrow-narrow-down.svg index bde78ff9..c8b218ce 100644 --- a/icons/arrow-narrow-down.svg +++ b/icons/arrow-narrow-down.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-narrow-left.svg b/icons/arrow-narrow-left.svg index caafc35c..c28044a3 100644 --- a/icons/arrow-narrow-left.svg +++ b/icons/arrow-narrow-left.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-narrow-right.svg b/icons/arrow-narrow-right.svg index ce0df587..57a9b087 100644 --- a/icons/arrow-narrow-right.svg +++ b/icons/arrow-narrow-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-narrow-up.svg b/icons/arrow-narrow-up.svg index 6a92adde..144a4db2 100644 --- a/icons/arrow-narrow-up.svg +++ b/icons/arrow-narrow-up.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-right-circle.svg b/icons/arrow-right-circle.svg index 088ca6ca..e3e5db0f 100644 --- a/icons/arrow-right-circle.svg +++ b/icons/arrow-right-circle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-right.svg b/icons/arrow-right.svg index 3dbcd7de..6ca666c6 100644 --- a/icons/arrow-right.svg +++ b/icons/arrow-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-up-circle.svg b/icons/arrow-up-circle.svg index f133607e..46fee6db 100644 --- a/icons/arrow-up-circle.svg +++ b/icons/arrow-up-circle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-up-left-circle.svg b/icons/arrow-up-left-circle.svg index 0e6e91e4..1a24482c 100644 --- a/icons/arrow-up-left-circle.svg +++ b/icons/arrow-up-left-circle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-up-left.svg b/icons/arrow-up-left.svg index 5d7f404b..e797af2e 100644 --- a/icons/arrow-up-left.svg +++ b/icons/arrow-up-left.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-up-right-circle.svg b/icons/arrow-up-right-circle.svg index 0f8218a5..582f9046 100644 --- a/icons/arrow-up-right-circle.svg +++ b/icons/arrow-up-right-circle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-up-right.svg b/icons/arrow-up-right.svg index d6ab38a3..cf8ebd2e 100644 --- a/icons/arrow-up-right.svg +++ b/icons/arrow-up-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-up.svg b/icons/arrow-up.svg index 473bcc7b..534f2d9a 100644 --- a/icons/arrow-up.svg +++ b/icons/arrow-up.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrows-diagonal-2.svg b/icons/arrows-diagonal-2.svg index 2d5115c5..86e5d787 100644 --- a/icons/arrows-diagonal-2.svg +++ b/icons/arrows-diagonal-2.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrows-diagonal.svg b/icons/arrows-diagonal.svg index d3409f28..6a69e94c 100644 --- a/icons/arrows-diagonal.svg +++ b/icons/arrows-diagonal.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrows-maximize.svg b/icons/arrows-maximize.svg index 2fcdebab..e9ad78be 100644 --- a/icons/arrows-maximize.svg +++ b/icons/arrows-maximize.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrows-minimize.svg b/icons/arrows-minimize.svg index b7092003..a81bc442 100644 --- a/icons/arrows-minimize.svg +++ b/icons/arrows-minimize.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/artboard.svg b/icons/artboard.svg new file mode 100644 index 00000000..b9442f63 --- /dev/null +++ b/icons/artboard.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons/at.svg b/icons/at.svg index 1b504658..8584d19e 100644 --- a/icons/at.svg +++ b/icons/at.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/award.svg b/icons/award.svg new file mode 100644 index 00000000..2ef8cc3f --- /dev/null +++ b/icons/award.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/backspace.svg b/icons/backspace.svg index 8cfdb9e4..a5a4b92a 100644 --- a/icons/backspace.svg +++ b/icons/backspace.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/ban.svg b/icons/ban.svg index 209b77ef..7766abc9 100644 --- a/icons/ban.svg +++ b/icons/ban.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/battery-1.svg b/icons/battery-1.svg index bc77e6e6..f7389383 100644 --- a/icons/battery-1.svg +++ b/icons/battery-1.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/battery-2.svg b/icons/battery-2.svg index 0ce07b1a..fd15ace5 100644 --- a/icons/battery-2.svg +++ b/icons/battery-2.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/battery-3.svg b/icons/battery-3.svg index ee7b61bd..8aaa3a11 100644 --- a/icons/battery-3.svg +++ b/icons/battery-3.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/battery-4.svg b/icons/battery-4.svg index 149d30fc..0a9576b7 100644 --- a/icons/battery-4.svg +++ b/icons/battery-4.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/battery-charging.svg b/icons/battery-charging.svg index 100ea394..49df208c 100644 --- a/icons/battery-charging.svg +++ b/icons/battery-charging.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/battery.svg b/icons/battery.svg index 629cbe14..53eaa24a 100644 --- a/icons/battery.svg +++ b/icons/battery.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/bell.svg b/icons/bell.svg index 4212ffc6..49dde5d2 100644 --- a/icons/bell.svg +++ b/icons/bell.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/bike.svg b/icons/bike.svg index c1fda39b..2fe4b2b6 100644 --- a/icons/bike.svg +++ b/icons/bike.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/bluetooth.svg b/icons/bluetooth.svg index 70371b91..a5630265 100644 --- a/icons/bluetooth.svg +++ b/icons/bluetooth.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/bolt.svg b/icons/bolt.svg index 35c052b3..f8e34b95 100644 --- a/icons/bolt.svg +++ b/icons/bolt.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/book.svg b/icons/book.svg index fd96a5e6..92e7c2f4 100644 --- a/icons/book.svg +++ b/icons/book.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/bookmark.svg b/icons/bookmark.svg index df084ff2..8d3bda25 100644 --- a/icons/bookmark.svg +++ b/icons/bookmark.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/border-all.svg b/icons/border-all.svg index 5901e4f1..6969872f 100644 --- a/icons/border-all.svg +++ b/icons/border-all.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/border-bottom.svg b/icons/border-bottom.svg index 5d552b10..f9907e39 100644 --- a/icons/border-bottom.svg +++ b/icons/border-bottom.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/border-horizontal.svg b/icons/border-horizontal.svg index 62e40ae5..f3c9a582 100644 --- a/icons/border-horizontal.svg +++ b/icons/border-horizontal.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/border-inner.svg b/icons/border-inner.svg index 0baa18c6..87ced692 100644 --- a/icons/border-inner.svg +++ b/icons/border-inner.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/border-left.svg b/icons/border-left.svg index 6f362777..e82bba16 100644 --- a/icons/border-left.svg +++ b/icons/border-left.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/border-none.svg b/icons/border-none.svg index 5cf4c1d2..ec7b0b2b 100644 --- a/icons/border-none.svg +++ b/icons/border-none.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/border-outer.svg b/icons/border-outer.svg index 46ce1b30..da3ed483 100644 --- a/icons/border-outer.svg +++ b/icons/border-outer.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/border-right.svg b/icons/border-right.svg index 2132cf1b..261d36ce 100644 --- a/icons/border-right.svg +++ b/icons/border-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/border-top.svg b/icons/border-top.svg index e7bf72cb..4b889772 100644 --- a/icons/border-top.svg +++ b/icons/border-top.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/border-vertical.svg b/icons/border-vertical.svg index 9f116d5f..6b5d7934 100644 --- a/icons/border-vertical.svg +++ b/icons/border-vertical.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/box.svg b/icons/box.svg index 2738f565..a97bcd8c 100644 --- a/icons/box.svg +++ b/icons/box.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/briefcase.svg b/icons/briefcase.svg index 163829ad..491c242a 100644 --- a/icons/briefcase.svg +++ b/icons/briefcase.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/bucket.svg b/icons/bucket.svg index befb3209..66d8938c 100644 --- a/icons/bucket.svg +++ b/icons/bucket.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/bug.svg b/icons/bug.svg new file mode 100644 index 00000000..a653cee7 --- /dev/null +++ b/icons/bug.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons/building-arch.svg b/icons/building-arch.svg index d0c0ed93..5fdef60e 100644 --- a/icons/building-arch.svg +++ b/icons/building-arch.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/building-bridge-2.svg b/icons/building-bridge-2.svg index 6351d39b..c5e63b8a 100644 --- a/icons/building-bridge-2.svg +++ b/icons/building-bridge-2.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/building-bridge.svg b/icons/building-bridge.svg index dde9bf5a..7f128f44 100644 --- a/icons/building-bridge.svg +++ b/icons/building-bridge.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/building-church.svg b/icons/building-church.svg index f2c4386c..91d1a000 100644 --- a/icons/building-church.svg +++ b/icons/building-church.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/building-hospital.svg b/icons/building-hospital.svg index 2cd9be4e..a054f9e8 100644 --- a/icons/building-hospital.svg +++ b/icons/building-hospital.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/building-store.svg b/icons/building-store.svg index 269cb8dd..c2e9b1a7 100644 --- a/icons/building-store.svg +++ b/icons/building-store.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/building.svg b/icons/building.svg new file mode 100644 index 00000000..3b441446 --- /dev/null +++ b/icons/building.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons/bulb-off.svg b/icons/bulb-off.svg index 01397a8c..b68e8a02 100644 --- a/icons/bulb-off.svg +++ b/icons/bulb-off.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/bulb.svg b/icons/bulb.svg index 11774dbb..148f9be8 100644 --- a/icons/bulb.svg +++ b/icons/bulb.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/calendar-event.svg b/icons/calendar-event.svg new file mode 100644 index 00000000..94a3aead --- /dev/null +++ b/icons/calendar-event.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/calendar.svg b/icons/calendar.svg index 2ea5b6d0..51e8ce10 100644 --- a/icons/calendar.svg +++ b/icons/calendar.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/camera.svg b/icons/camera.svg index cd9a5291..c30590ff 100644 --- a/icons/camera.svg +++ b/icons/camera.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/cash.svg b/icons/cash.svg index f441c44e..e34cdd4d 100644 --- a/icons/cash.svg +++ b/icons/cash.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/cast.svg b/icons/cast.svg index 9b84d9ea..4f21c81d 100644 --- a/icons/cast.svg +++ b/icons/cast.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chart-area-line.svg b/icons/chart-area-line.svg index 5ac83acb..f4e289d2 100644 --- a/icons/chart-area-line.svg +++ b/icons/chart-area-line.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chart-area.svg b/icons/chart-area.svg index 182d21aa..22f0b1de 100644 --- a/icons/chart-area.svg +++ b/icons/chart-area.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chart-bar.svg b/icons/chart-bar.svg index 7ddfa878..ea482f08 100644 --- a/icons/chart-bar.svg +++ b/icons/chart-bar.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chart-candle.svg b/icons/chart-candle.svg index 86d4fc5e..77678196 100644 --- a/icons/chart-candle.svg +++ b/icons/chart-candle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chart-donut.svg b/icons/chart-donut.svg index 6766538e..d78a9697 100644 --- a/icons/chart-donut.svg +++ b/icons/chart-donut.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chart-line.svg b/icons/chart-line.svg index 2454de04..2e6bebc4 100644 --- a/icons/chart-line.svg +++ b/icons/chart-line.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chart-pie.svg b/icons/chart-pie.svg index d704d210..a3968d3c 100644 --- a/icons/chart-pie.svg +++ b/icons/chart-pie.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/check.svg b/icons/check.svg index 6acbe60c..17d49159 100644 --- a/icons/check.svg +++ b/icons/check.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chevron-down.svg b/icons/chevron-down.svg index 89b3be31..5bce4ce6 100644 --- a/icons/chevron-down.svg +++ b/icons/chevron-down.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chevron-left.svg b/icons/chevron-left.svg index fb79df76..ee52db4c 100644 --- a/icons/chevron-left.svg +++ b/icons/chevron-left.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chevron-right.svg b/icons/chevron-right.svg index a8d47d9c..ee80023d 100644 --- a/icons/chevron-right.svg +++ b/icons/chevron-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chevron-up.svg b/icons/chevron-up.svg index b437e81c..081ff5aa 100644 --- a/icons/chevron-up.svg +++ b/icons/chevron-up.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chevrons-down.svg b/icons/chevrons-down.svg index 99434eaa..bb83188b 100644 --- a/icons/chevrons-down.svg +++ b/icons/chevrons-down.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chevrons-left.svg b/icons/chevrons-left.svg index e4a8bfc3..494e3ceb 100644 --- a/icons/chevrons-left.svg +++ b/icons/chevrons-left.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chevrons-right.svg b/icons/chevrons-right.svg index 47b0e1e1..a54255b4 100644 --- a/icons/chevrons-right.svg +++ b/icons/chevrons-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chevrons-up.svg b/icons/chevrons-up.svg index cd183578..8b781ea4 100644 --- a/icons/chevrons-up.svg +++ b/icons/chevrons-up.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/circle-check.svg b/icons/circle-check.svg index 1757b2f2..1beaa6a6 100644 --- a/icons/circle-check.svg +++ b/icons/circle-check.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/circle-minus.svg b/icons/circle-minus.svg index 08083cd2..53c454c4 100644 --- a/icons/circle-minus.svg +++ b/icons/circle-minus.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/circle-plus.svg b/icons/circle-plus.svg index f83ecc84..3c1451ef 100644 --- a/icons/circle-plus.svg +++ b/icons/circle-plus.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/circle-x.svg b/icons/circle-x.svg index d9c4b52e..2e40313d 100644 --- a/icons/circle-x.svg +++ b/icons/circle-x.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/circle.svg b/icons/circle.svg index c9c6420b..f40422c3 100644 --- a/icons/circle.svg +++ b/icons/circle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/clipboard-check.svg b/icons/clipboard-check.svg index b4324783..88ef1c91 100644 --- a/icons/clipboard-check.svg +++ b/icons/clipboard-check.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/clipboard-list.svg b/icons/clipboard-list.svg index 807ab760..65ccc161 100644 --- a/icons/clipboard-list.svg +++ b/icons/clipboard-list.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/clipboard-x.svg b/icons/clipboard-x.svg index 5300e5bf..89293c93 100644 --- a/icons/clipboard-x.svg +++ b/icons/clipboard-x.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/clipboard.svg b/icons/clipboard.svg index 8607e2e0..5c245a32 100644 --- a/icons/clipboard.svg +++ b/icons/clipboard.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/clock.svg b/icons/clock.svg index 93fa64c9..96e7a56e 100644 --- a/icons/clock.svg +++ b/icons/clock.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/cloud-download.svg b/icons/cloud-download.svg index bbd94aea..a7cff6f1 100644 --- a/icons/cloud-download.svg +++ b/icons/cloud-download.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/cloud-rain.svg b/icons/cloud-rain.svg index fad1de10..e823a38d 100644 --- a/icons/cloud-rain.svg +++ b/icons/cloud-rain.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/cloud-snow.svg b/icons/cloud-snow.svg index 6b8071be..07d6fcdf 100644 --- a/icons/cloud-snow.svg +++ b/icons/cloud-snow.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/cloud-storm.svg b/icons/cloud-storm.svg index 2cdbbfc9..351f30b0 100644 --- a/icons/cloud-storm.svg +++ b/icons/cloud-storm.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/cloud-upload.svg b/icons/cloud-upload.svg index ed2392ab..06de3296 100644 --- a/icons/cloud-upload.svg +++ b/icons/cloud-upload.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/cloud.svg b/icons/cloud.svg index 14ebc786..495a5b6e 100644 --- a/icons/cloud.svg +++ b/icons/cloud.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/code.svg b/icons/code.svg index fda8d318..98f4409b 100644 --- a/icons/code.svg +++ b/icons/code.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/command.svg b/icons/command.svg index d93ed392..4c220861 100644 --- a/icons/command.svg +++ b/icons/command.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/compass.svg b/icons/compass.svg index abd85086..46a11d3a 100644 --- a/icons/compass.svg +++ b/icons/compass.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/copy.svg b/icons/copy.svg index c6e7dcab..e1d35291 100644 --- a/icons/copy.svg +++ b/icons/copy.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/copyright.svg b/icons/copyright.svg index c1c0df17..2ac45fff 100644 --- a/icons/copyright.svg +++ b/icons/copyright.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/corner-down-left.svg b/icons/corner-down-left.svg index b42b4e72..ad2f2173 100644 --- a/icons/corner-down-left.svg +++ b/icons/corner-down-left.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/corner-down-right.svg b/icons/corner-down-right.svg index d72d3765..4380e00b 100644 --- a/icons/corner-down-right.svg +++ b/icons/corner-down-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/corner-left-down.svg b/icons/corner-left-down.svg index 446c047d..c69c7bac 100644 --- a/icons/corner-left-down.svg +++ b/icons/corner-left-down.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/corner-left-up.svg b/icons/corner-left-up.svg index a677b7f4..e852ad4e 100644 --- a/icons/corner-left-up.svg +++ b/icons/corner-left-up.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/corner-right-down.svg b/icons/corner-right-down.svg index 6078ecbd..978e9c65 100644 --- a/icons/corner-right-down.svg +++ b/icons/corner-right-down.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/corner-right-up.svg b/icons/corner-right-up.svg index 7b2ab514..d4688026 100644 --- a/icons/corner-right-up.svg +++ b/icons/corner-right-up.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/corner-up-left.svg b/icons/corner-up-left.svg index d72fa598..2c10ab47 100644 --- a/icons/corner-up-left.svg +++ b/icons/corner-up-left.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/corner-up-right.svg b/icons/corner-up-right.svg index 426c15ab..3193746b 100644 --- a/icons/corner-up-right.svg +++ b/icons/corner-up-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/credit-card.svg b/icons/credit-card.svg index 8ab09925..9740ad96 100644 --- a/icons/credit-card.svg +++ b/icons/credit-card.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/crop.svg b/icons/crop.svg index 862432df..3811ddf9 100644 --- a/icons/crop.svg +++ b/icons/crop.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/cut.svg b/icons/cut.svg index 593ee6fc..7bbf8919 100644 --- a/icons/cut.svg +++ b/icons/cut.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/dashboard.svg b/icons/dashboard.svg index 2a6ad274..aed151fa 100644 --- a/icons/dashboard.svg +++ b/icons/dashboard.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/database.svg b/icons/database.svg index f47f9a9d..7702af51 100644 --- a/icons/database.svg +++ b/icons/database.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/device-desktop.svg b/icons/device-desktop.svg index e94bcc40..2ccbe93d 100644 --- a/icons/device-desktop.svg +++ b/icons/device-desktop.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/device-mobile.svg b/icons/device-mobile.svg index 3fff2d5b..d58020a1 100644 --- a/icons/device-mobile.svg +++ b/icons/device-mobile.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/device-speaker.svg b/icons/device-speaker.svg index 9c3b4819..ce622a27 100644 --- a/icons/device-speaker.svg +++ b/icons/device-speaker.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/device-tablet.svg b/icons/device-tablet.svg index 08aa5480..b4206808 100644 --- a/icons/device-tablet.svg +++ b/icons/device-tablet.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/device-tv.svg b/icons/device-tv.svg index 4ec7a4b2..3c5ab379 100644 --- a/icons/device-tv.svg +++ b/icons/device-tv.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/directions.svg b/icons/directions.svg index e5427580..f0cdda2c 100644 --- a/icons/directions.svg +++ b/icons/directions.svg @@ -1,7 +1,7 @@ - - - + + + diff --git a/icons/disabled.svg b/icons/disabled.svg index b64fed04..e2bb9b08 100644 --- a/icons/disabled.svg +++ b/icons/disabled.svg @@ -1,9 +1,9 @@ - + - + diff --git a/icons/disc.svg b/icons/disc.svg index 77b34d98..7997833f 100644 --- a/icons/disc.svg +++ b/icons/disc.svg @@ -1,7 +1,9 @@ - - + + + + diff --git a/icons/dots-circle-horizontal.svg b/icons/dots-circle-horizontal.svg index 28166de5..5ab45bf5 100644 --- a/icons/dots-circle-horizontal.svg +++ b/icons/dots-circle-horizontal.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/dots-diagonal-2.svg b/icons/dots-diagonal-2.svg index a55640be..5232ffc3 100644 --- a/icons/dots-diagonal-2.svg +++ b/icons/dots-diagonal-2.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/dots-diagonal.svg b/icons/dots-diagonal.svg index a7fb663a..8a727f46 100644 --- a/icons/dots-diagonal.svg +++ b/icons/dots-diagonal.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/dots-vertical.svg b/icons/dots-vertical.svg index aacb6c8d..3957ed23 100644 --- a/icons/dots-vertical.svg +++ b/icons/dots-vertical.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/dots.svg b/icons/dots.svg index 05fb4573..14ed0154 100644 --- a/icons/dots.svg +++ b/icons/dots.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/download.svg b/icons/download.svg index 71dc32bf..082cc98b 100644 --- a/icons/download.svg +++ b/icons/download.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/droplet.svg b/icons/droplet.svg index 6f45559d..b78f4542 100644 --- a/icons/droplet.svg +++ b/icons/droplet.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/edit.svg b/icons/edit.svg index 7c2b2874..a10a6832 100644 --- a/icons/edit.svg +++ b/icons/edit.svg @@ -1,7 +1,8 @@ - + + diff --git a/icons/external-link.svg b/icons/external-link.svg index f75cb448..2983d546 100644 --- a/icons/external-link.svg +++ b/icons/external-link.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/eye.svg b/icons/eye.svg index 912ecd0e..8d34f870 100644 --- a/icons/eye.svg +++ b/icons/eye.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/face-id.svg b/icons/face-id.svg index 14663e6d..d0212325 100644 --- a/icons/face-id.svg +++ b/icons/face-id.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/file-check.svg b/icons/file-check.svg index a9fb06e8..f0db44a9 100644 --- a/icons/file-check.svg +++ b/icons/file-check.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/file-download.svg b/icons/file-download.svg index 3567cc7e..18c30038 100644 --- a/icons/file-download.svg +++ b/icons/file-download.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/file-minus.svg b/icons/file-minus.svg index 25cbcdb9..1f529fb9 100644 --- a/icons/file-minus.svg +++ b/icons/file-minus.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/file-music.svg b/icons/file-music.svg index 1ada3a2a..3ecfdaed 100644 --- a/icons/file-music.svg +++ b/icons/file-music.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/file-plus.svg b/icons/file-plus.svg index 1d5af6c7..686cbd76 100644 --- a/icons/file-plus.svg +++ b/icons/file-plus.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/file-shredder.svg b/icons/file-shredder.svg index c6452ad0..65c0b0f1 100644 --- a/icons/file-shredder.svg +++ b/icons/file-shredder.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/file-text.svg b/icons/file-text.svg index 6542bf76..fbb78a52 100644 --- a/icons/file-text.svg +++ b/icons/file-text.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/file-x.svg b/icons/file-x.svg index 454054e0..b9e2883b 100644 --- a/icons/file-x.svg +++ b/icons/file-x.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/file.svg b/icons/file.svg index de403a61..f68a92a6 100644 --- a/icons/file.svg +++ b/icons/file.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/filter.svg b/icons/filter.svg index a33e6e1f..4b587cb5 100644 --- a/icons/filter.svg +++ b/icons/filter.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/flag.svg b/icons/flag.svg index 80adb6dd..6470546c 100644 --- a/icons/flag.svg +++ b/icons/flag.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/flip-horizontal.svg b/icons/flip-horizontal.svg index 7db98db4..b9a2221b 100644 --- a/icons/flip-horizontal.svg +++ b/icons/flip-horizontal.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/flip-vertical.svg b/icons/flip-vertical.svg index 5480528c..1b686484 100644 --- a/icons/flip-vertical.svg +++ b/icons/flip-vertical.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/floppy-disk.svg b/icons/floppy-disk.svg index ee2c37de..a3ae268a 100644 --- a/icons/floppy-disk.svg +++ b/icons/floppy-disk.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/folder-minus.svg b/icons/folder-minus.svg index b3cd3871..0f9da2dc 100644 --- a/icons/folder-minus.svg +++ b/icons/folder-minus.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/folder-plus.svg b/icons/folder-plus.svg index f059d554..9f71ec69 100644 --- a/icons/folder-plus.svg +++ b/icons/folder-plus.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/folder-x.svg b/icons/folder-x.svg index b9884414..b3099e95 100644 --- a/icons/folder-x.svg +++ b/icons/folder-x.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/folder.svg b/icons/folder.svg index 9f14ef12..1eac3a3c 100644 --- a/icons/folder.svg +++ b/icons/folder.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/folders.svg b/icons/folders.svg index 50f316fd..37e8681f 100644 --- a/icons/folders.svg +++ b/icons/folders.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/frame.svg b/icons/frame.svg index 60b6ae80..a2ad5089 100644 --- a/icons/frame.svg +++ b/icons/frame.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/friends.svg b/icons/friends.svg index f5dc5c67..e4e0e2df 100644 --- a/icons/friends.svg +++ b/icons/friends.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/gauge.svg b/icons/gauge.svg index 72b66500..83f480ec 100644 --- a/icons/gauge.svg +++ b/icons/gauge.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/git-branch.svg b/icons/git-branch.svg index 80a91fd1..7ce296b5 100644 --- a/icons/git-branch.svg +++ b/icons/git-branch.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/git-commit.svg b/icons/git-commit.svg index f90b1f0f..2e568a23 100644 --- a/icons/git-commit.svg +++ b/icons/git-commit.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/git-compare.svg b/icons/git-compare.svg index 63fdee04..2edffddd 100644 --- a/icons/git-compare.svg +++ b/icons/git-compare.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/git-merge.svg b/icons/git-merge.svg index d7f5553f..2cf84963 100644 --- a/icons/git-merge.svg +++ b/icons/git-merge.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/git-pull-request.svg b/icons/git-pull-request.svg index 9414d879..3e3d690d 100644 --- a/icons/git-pull-request.svg +++ b/icons/git-pull-request.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/glass-full.svg b/icons/glass-full.svg index 14a656fb..c5a58fbe 100644 --- a/icons/glass-full.svg +++ b/icons/glass-full.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/glass.svg b/icons/glass.svg index 27bf5c94..b1999aa6 100644 --- a/icons/glass.svg +++ b/icons/glass.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/globe.svg b/icons/globe.svg new file mode 100644 index 00000000..fa9b56fe --- /dev/null +++ b/icons/globe.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/grid-dots.svg b/icons/grid-dots.svg index 3db22a69..88fb1aaa 100644 --- a/icons/grid-dots.svg +++ b/icons/grid-dots.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/grid.svg b/icons/grid.svg index 09443041..fc76f856 100644 --- a/icons/grid.svg +++ b/icons/grid.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/hash.svg b/icons/hash.svg index 5e81974a..e00ab1d1 100644 --- a/icons/hash.svg +++ b/icons/hash.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/headphones.svg b/icons/headphones.svg index 1c9147e8..f1f2f57c 100644 --- a/icons/headphones.svg +++ b/icons/headphones.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/heart.svg b/icons/heart.svg index 0a1589df..dd177d15 100644 --- a/icons/heart.svg +++ b/icons/heart.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/help.svg b/icons/help.svg new file mode 100644 index 00000000..cf8c3157 --- /dev/null +++ b/icons/help.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/home-2.svg b/icons/home-2.svg index 28b31b06..3dafb62a 100644 --- a/icons/home-2.svg +++ b/icons/home-2.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/home.svg b/icons/home.svg index cb62d1f5..ed5fd53d 100644 --- a/icons/home.svg +++ b/icons/home.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/ice-cream.svg b/icons/ice-cream.svg index b50bbd16..622f3591 100644 --- a/icons/ice-cream.svg +++ b/icons/ice-cream.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/id.svg b/icons/id.svg index 514a5600..d309a0a6 100644 --- a/icons/id.svg +++ b/icons/id.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/inbox.svg b/icons/inbox.svg index 66b59e43..e8f4969a 100644 --- a/icons/inbox.svg +++ b/icons/inbox.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/info-circle.svg b/icons/info-circle.svg index f5bfb0a4..1ca2800f 100644 --- a/icons/info-circle.svg +++ b/icons/info-circle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/info-square.svg b/icons/info-square.svg index 35c0cf3c..096b420f 100644 --- a/icons/info-square.svg +++ b/icons/info-square.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/key.svg b/icons/key.svg index 7987ebba..9af6dd12 100644 --- a/icons/key.svg +++ b/icons/key.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layers-difference.svg b/icons/layers-difference.svg index 20187521..9f923683 100644 --- a/icons/layers-difference.svg +++ b/icons/layers-difference.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layers-intersect.svg b/icons/layers-intersect.svg index cf693ed0..85d6b221 100644 --- a/icons/layers-intersect.svg +++ b/icons/layers-intersect.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layers-subtract.svg b/icons/layers-subtract.svg index 2877cb32..05ae73b5 100644 --- a/icons/layers-subtract.svg +++ b/icons/layers-subtract.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layers-union.svg b/icons/layers-union.svg index c075b530..825bea2c 100644 --- a/icons/layers-union.svg +++ b/icons/layers-union.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-2.svg b/icons/layout-2.svg index 8387825c..e1a9f848 100644 --- a/icons/layout-2.svg +++ b/icons/layout-2.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-align-bottom.svg b/icons/layout-align-bottom.svg index 85932c34..414e190d 100644 --- a/icons/layout-align-bottom.svg +++ b/icons/layout-align-bottom.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-align-center.svg b/icons/layout-align-center.svg index d508e5b4..cee08653 100644 --- a/icons/layout-align-center.svg +++ b/icons/layout-align-center.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-align-left.svg b/icons/layout-align-left.svg index 340229c2..7b0fe52a 100644 --- a/icons/layout-align-left.svg +++ b/icons/layout-align-left.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-align-middle.svg b/icons/layout-align-middle.svg index 58b5d078..379ebb4f 100644 --- a/icons/layout-align-middle.svg +++ b/icons/layout-align-middle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-align-right.svg b/icons/layout-align-right.svg index 12689732..9c5feb87 100644 --- a/icons/layout-align-right.svg +++ b/icons/layout-align-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-align-top.svg b/icons/layout-align-top.svg index e3d65ee6..cf7c85f2 100644 --- a/icons/layout-align-top.svg +++ b/icons/layout-align-top.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-bottombar.svg b/icons/layout-bottombar.svg index a5b0c698..913be464 100644 --- a/icons/layout-bottombar.svg +++ b/icons/layout-bottombar.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-columns.svg b/icons/layout-columns.svg index 682f0f7b..b8423c37 100644 --- a/icons/layout-columns.svg +++ b/icons/layout-columns.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-distribute-horizontal.svg b/icons/layout-distribute-horizontal.svg index 1f02567e..b6b0f91b 100644 --- a/icons/layout-distribute-horizontal.svg +++ b/icons/layout-distribute-horizontal.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-distribute-vertical.svg b/icons/layout-distribute-vertical.svg index d5117a5c..e3c4ae20 100644 --- a/icons/layout-distribute-vertical.svg +++ b/icons/layout-distribute-vertical.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-navbar.svg b/icons/layout-navbar.svg index f6e005c4..5c6dd95c 100644 --- a/icons/layout-navbar.svg +++ b/icons/layout-navbar.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-rows.svg b/icons/layout-rows.svg index f8bd040a..936b67e7 100644 --- a/icons/layout-rows.svg +++ b/icons/layout-rows.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-sidebar-right.svg b/icons/layout-sidebar-right.svg index 8059c2b4..ef11f269 100644 --- a/icons/layout-sidebar-right.svg +++ b/icons/layout-sidebar-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-sidebar.svg b/icons/layout-sidebar.svg index 92a44445..ea4e9106 100644 --- a/icons/layout-sidebar.svg +++ b/icons/layout-sidebar.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout.svg b/icons/layout.svg index 62670d33..f10f2236 100644 --- a/icons/layout.svg +++ b/icons/layout.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/lego.svg b/icons/lego.svg index 7cca0617..e0024a29 100644 --- a/icons/lego.svg +++ b/icons/lego.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/lifebuoy.svg b/icons/lifebuoy.svg index bb66a03f..0ba4727e 100644 --- a/icons/lifebuoy.svg +++ b/icons/lifebuoy.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/link.svg b/icons/link.svg index 31ea6fb8..3c878039 100644 --- a/icons/link.svg +++ b/icons/link.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/live-photo.svg b/icons/live-photo.svg index 500ef3e3..dc1fe8d9 100644 --- a/icons/live-photo.svg +++ b/icons/live-photo.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/location.svg b/icons/location.svg index fbdda41e..e06cbad9 100644 --- a/icons/location.svg +++ b/icons/location.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/lock-open.svg b/icons/lock-open.svg index 2273a49e..df96766c 100644 --- a/icons/lock-open.svg +++ b/icons/lock-open.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/lock.svg b/icons/lock.svg index fa3e5b71..a613057e 100644 --- a/icons/lock.svg +++ b/icons/lock.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/magnet.svg b/icons/magnet.svg index 39100164..f31bcbd1 100644 --- a/icons/magnet.svg +++ b/icons/magnet.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/mail-opened.svg b/icons/mail-opened.svg index 0e276571..545324df 100644 --- a/icons/mail-opened.svg +++ b/icons/mail-opened.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/mail.svg b/icons/mail.svg index 63c9a2a6..2c12e551 100644 --- a/icons/mail.svg +++ b/icons/mail.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/man.svg b/icons/man.svg index 78434d79..c1fab079 100644 --- a/icons/man.svg +++ b/icons/man.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/map-2.svg b/icons/map-2.svg index 5cb35387..eb5e36c4 100644 --- a/icons/map-2.svg +++ b/icons/map-2.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/map-pin.svg b/icons/map-pin.svg index f2d4672d..97a3b3bd 100644 --- a/icons/map-pin.svg +++ b/icons/map-pin.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/map.svg b/icons/map.svg index 6c3e73bd..dc0319d0 100644 --- a/icons/map.svg +++ b/icons/map.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/maximize.svg b/icons/maximize.svg index 0d5cdf76..8d97babd 100644 --- a/icons/maximize.svg +++ b/icons/maximize.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/menu.svg b/icons/menu.svg index a73b775c..0b56006b 100644 --- a/icons/menu.svg +++ b/icons/menu.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/message-2.svg b/icons/message-2.svg index 2b503756..91173eb7 100644 --- a/icons/message-2.svg +++ b/icons/message-2.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/message-circle.svg b/icons/message-circle.svg index 7caa0d74..21c242b0 100644 --- a/icons/message-circle.svg +++ b/icons/message-circle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/message-dots.svg b/icons/message-dots.svg index f3bd7a05..8452a925 100644 --- a/icons/message-dots.svg +++ b/icons/message-dots.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/message.svg b/icons/message.svg index c520bd8f..283ad739 100644 --- a/icons/message.svg +++ b/icons/message.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/microphone.svg b/icons/microphone.svg index 28f65f73..d8a6b7cf 100644 --- a/icons/microphone.svg +++ b/icons/microphone.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/minimize.svg b/icons/minimize.svg index b589cfee..245e2012 100644 --- a/icons/minimize.svg +++ b/icons/minimize.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/minus.svg b/icons/minus.svg index c6a2873f..137cce28 100644 --- a/icons/minus.svg +++ b/icons/minus.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/mood-confuzed.svg b/icons/mood-confuzed.svg index 5f50095d..ad1f6e85 100644 --- a/icons/mood-confuzed.svg +++ b/icons/mood-confuzed.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/mood-happy.svg b/icons/mood-happy.svg index a84260ac..850ee3d6 100644 --- a/icons/mood-happy.svg +++ b/icons/mood-happy.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/mood-neutral.svg b/icons/mood-neutral.svg index d2134bbb..3bdccbbc 100644 --- a/icons/mood-neutral.svg +++ b/icons/mood-neutral.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/mood-sad.svg b/icons/mood-sad.svg index 74c5b017..a8f6c122 100644 --- a/icons/mood-sad.svg +++ b/icons/mood-sad.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/mood-smile.svg b/icons/mood-smile.svg index 2b145700..899ffd25 100644 --- a/icons/mood-smile.svg +++ b/icons/mood-smile.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/moon.svg b/icons/moon.svg index 7692e65c..2aea02b0 100644 --- a/icons/moon.svg +++ b/icons/moon.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/mouse.svg b/icons/mouse.svg index 645e8853..770a6e8f 100644 --- a/icons/mouse.svg +++ b/icons/mouse.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/movie.svg b/icons/movie.svg index f68963fa..528e440a 100644 --- a/icons/movie.svg +++ b/icons/movie.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/mug.svg b/icons/mug.svg new file mode 100644 index 00000000..108143af --- /dev/null +++ b/icons/mug.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/music.svg b/icons/music.svg index 0d0577c9..29cca2f6 100644 --- a/icons/music.svg +++ b/icons/music.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/news.svg b/icons/news.svg index ee41a395..02c5f9fa 100644 --- a/icons/news.svg +++ b/icons/news.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/notification.svg b/icons/notification.svg index 9bca8fcf..118443fb 100644 --- a/icons/notification.svg +++ b/icons/notification.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/package.svg b/icons/package.svg index 730673b8..38edae2c 100644 --- a/icons/package.svg +++ b/icons/package.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/paint.svg b/icons/paint.svg index ef0542cf..53a52501 100644 --- a/icons/paint.svg +++ b/icons/paint.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/palette.svg b/icons/palette.svg new file mode 100644 index 00000000..d5bcc66c --- /dev/null +++ b/icons/palette.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/paperclip.svg b/icons/paperclip.svg index b995ac28..2d0c10a0 100644 --- a/icons/paperclip.svg +++ b/icons/paperclip.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/parking.svg b/icons/parking.svg index e3bf27b6..fb10f61b 100644 --- a/icons/parking.svg +++ b/icons/parking.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/pencil.svg b/icons/pencil.svg new file mode 100644 index 00000000..e7149730 --- /dev/null +++ b/icons/pencil.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/phone-call.svg b/icons/phone-call.svg index 8924b602..8add59c3 100644 --- a/icons/phone-call.svg +++ b/icons/phone-call.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/phone-incoming.svg b/icons/phone-incoming.svg index c26f1bea..82480b94 100644 --- a/icons/phone-incoming.svg +++ b/icons/phone-incoming.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/phone-outgoing.svg b/icons/phone-outgoing.svg index 40095d4d..078e7080 100644 --- a/icons/phone-outgoing.svg +++ b/icons/phone-outgoing.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/phone-pause.svg b/icons/phone-pause.svg index 02426faa..c3de0f63 100644 --- a/icons/phone-pause.svg +++ b/icons/phone-pause.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/phone.svg b/icons/phone.svg index c0aff957..65ed9b0c 100644 --- a/icons/phone.svg +++ b/icons/phone.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/photo.svg b/icons/photo.svg index 4fd71a17..1bc21c5a 100644 --- a/icons/photo.svg +++ b/icons/photo.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/plus.svg b/icons/plus.svg index a04c43d2..ccd07cd7 100644 --- a/icons/plus.svg +++ b/icons/plus.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/point.svg b/icons/point.svg index a7c45aac..fce2a56b 100644 --- a/icons/point.svg +++ b/icons/point.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/power.svg b/icons/power.svg index 138764ad..e2476a13 100644 --- a/icons/power.svg +++ b/icons/power.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/printer.svg b/icons/printer.svg index 67027392..7c79c942 100644 --- a/icons/printer.svg +++ b/icons/printer.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/prompt.svg b/icons/prompt.svg index 55b63f17..a3b3ff13 100644 --- a/icons/prompt.svg +++ b/icons/prompt.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/puzzle.svg b/icons/puzzle.svg index 58d1275d..1dc4cdce 100644 --- a/icons/puzzle.svg +++ b/icons/puzzle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/qrcode.svg b/icons/qrcode.svg index 46a5adfe..2371174e 100644 --- a/icons/qrcode.svg +++ b/icons/qrcode.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/record-mail.svg b/icons/record-mail.svg new file mode 100644 index 00000000..cf93a4a3 --- /dev/null +++ b/icons/record-mail.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/refresh.svg b/icons/refresh.svg index 28ad85be..2e583b25 100644 --- a/icons/refresh.svg +++ b/icons/refresh.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/registered.svg b/icons/registered.svg index 537a77d9..03ecaeb7 100644 --- a/icons/registered.svg +++ b/icons/registered.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/rotate-clockwise.svg b/icons/rotate-clockwise.svg index 14429476..f95c2cbf 100644 --- a/icons/rotate-clockwise.svg +++ b/icons/rotate-clockwise.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/rotate.svg b/icons/rotate.svg index 9e6cc028..b806a991 100644 --- a/icons/rotate.svg +++ b/icons/rotate.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/route.svg b/icons/route.svg index 60f3634e..229447d3 100644 --- a/icons/route.svg +++ b/icons/route.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/router.svg b/icons/router.svg index dda92807..9eb9c794 100644 --- a/icons/router.svg +++ b/icons/router.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/rss.svg b/icons/rss.svg index 6801e722..b92ea8f5 100644 --- a/icons/rss.svg +++ b/icons/rss.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/ruler.svg b/icons/ruler.svg new file mode 100644 index 00000000..3365c781 --- /dev/null +++ b/icons/ruler.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons/scissors.svg b/icons/scissors.svg new file mode 100644 index 00000000..7fcb0a8c --- /dev/null +++ b/icons/scissors.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/search.svg b/icons/search.svg index c504fa4b..a0b0ddc6 100644 --- a/icons/search.svg +++ b/icons/search.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/selector.svg b/icons/selector.svg index 989514cf..c31651f4 100644 --- a/icons/selector.svg +++ b/icons/selector.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/send.svg b/icons/send.svg index 3666b9fd..0a313fa3 100644 --- a/icons/send.svg +++ b/icons/send.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/server.svg b/icons/server.svg index 3885325e..683ebc5b 100644 --- a/icons/server.svg +++ b/icons/server.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/settings.svg b/icons/settings.svg index 518097c3..d3ed7d20 100644 --- a/icons/settings.svg +++ b/icons/settings.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/share.svg b/icons/share.svg index e48f3b27..ed92cf80 100644 --- a/icons/share.svg +++ b/icons/share.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/shield-check.svg b/icons/shield-check.svg index d2f6f6e7..dd119a7f 100644 --- a/icons/shield-check.svg +++ b/icons/shield-check.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/shield-x.svg b/icons/shield-x.svg index dd29d14f..6aa32b85 100644 --- a/icons/shield-x.svg +++ b/icons/shield-x.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/shield.svg b/icons/shield.svg index faf44269..068ad5e1 100644 --- a/icons/shield.svg +++ b/icons/shield.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/shopping-cart.svg b/icons/shopping-cart.svg index c4621134..1c22eb0f 100644 --- a/icons/shopping-cart.svg +++ b/icons/shopping-cart.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/sort-ascending.svg b/icons/sort-ascending.svg index 9954e7d7..c17b26e3 100644 --- a/icons/sort-ascending.svg +++ b/icons/sort-ascending.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/sort-descending.svg b/icons/sort-descending.svg index 8edc3403..d6652081 100644 --- a/icons/sort-descending.svg +++ b/icons/sort-descending.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/square-check.svg b/icons/square-check.svg index 764ce0f8..9542ac89 100644 --- a/icons/square-check.svg +++ b/icons/square-check.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/square-minus.svg b/icons/square-minus.svg index b36dff7d..d5c1aff2 100644 --- a/icons/square-minus.svg +++ b/icons/square-minus.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/square-plus.svg b/icons/square-plus.svg index b197213c..e23234ca 100644 --- a/icons/square-plus.svg +++ b/icons/square-plus.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/square-x.svg b/icons/square-x.svg index 4c3b3da7..cb6a394b 100644 --- a/icons/square-x.svg +++ b/icons/square-x.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/square.svg b/icons/square.svg index 3ad3e795..698c564c 100644 --- a/icons/square.svg +++ b/icons/square.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/stack.svg b/icons/stack.svg new file mode 100644 index 00000000..11fc9130 --- /dev/null +++ b/icons/stack.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/star.svg b/icons/star.svg index 940843be..fe0f1483 100644 --- a/icons/star.svg +++ b/icons/star.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/sticker.svg b/icons/sticker.svg index 888d3497..d6dd8f1e 100644 --- a/icons/sticker.svg +++ b/icons/sticker.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/sun.svg b/icons/sun.svg index 5c59dd9f..8c332253 100644 --- a/icons/sun.svg +++ b/icons/sun.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/switch-horizontal.svg b/icons/switch-horizontal.svg index ff5be40d..b3a37854 100644 --- a/icons/switch-horizontal.svg +++ b/icons/switch-horizontal.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/switch-vertical.svg b/icons/switch-vertical.svg index 480ecb1d..edd039ca 100644 --- a/icons/switch-vertical.svg +++ b/icons/switch-vertical.svg @@ -1,11 +1,9 @@ - - + - diff --git a/icons/switch.svg b/icons/switch.svg index a88a6454..751bb693 100644 --- a/icons/switch.svg +++ b/icons/switch.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/tag.svg b/icons/tag.svg index eb642210..ef7a63d6 100644 --- a/icons/tag.svg +++ b/icons/tag.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/target.svg b/icons/target.svg index 11d2a7ee..597e49a4 100644 --- a/icons/target.svg +++ b/icons/target.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/temperature-celsius.svg b/icons/temperature-celsius.svg index d20093ee..2e33e166 100644 --- a/icons/temperature-celsius.svg +++ b/icons/temperature-celsius.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/temperature-fahrenheit.svg b/icons/temperature-fahrenheit.svg index 1842f8fd..4d047efe 100644 --- a/icons/temperature-fahrenheit.svg +++ b/icons/temperature-fahrenheit.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/temperature.svg b/icons/temperature.svg index 35ad86a7..a9a7bc9b 100644 --- a/icons/temperature.svg +++ b/icons/temperature.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/template.svg b/icons/template.svg index d2261cda..85002e8c 100644 --- a/icons/template.svg +++ b/icons/template.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/test-pipe.svg b/icons/test-pipe.svg index d0d763f4..fdc2834f 100644 --- a/icons/test-pipe.svg +++ b/icons/test-pipe.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/thumb-down.svg b/icons/thumb-down.svg index 306f2bef..761220c0 100644 --- a/icons/thumb-down.svg +++ b/icons/thumb-down.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/thumb-up.svg b/icons/thumb-up.svg index c1f050a6..8c66637c 100644 --- a/icons/thumb-up.svg +++ b/icons/thumb-up.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/ticket.svg b/icons/ticket.svg index 08f7cab9..3c1b4d91 100644 --- a/icons/ticket.svg +++ b/icons/ticket.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/toggle-left.svg b/icons/toggle-left.svg index 26f40b44..c3048d42 100644 --- a/icons/toggle-left.svg +++ b/icons/toggle-left.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/toggle-right.svg b/icons/toggle-right.svg index b54fd0bb..d3edd633 100644 --- a/icons/toggle-right.svg +++ b/icons/toggle-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/tool.svg b/icons/tool.svg index df9dfa0f..34ffa6d6 100644 --- a/icons/tool.svg +++ b/icons/tool.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/trash.svg b/icons/trash.svg index 658d6195..16ed6a6b 100644 --- a/icons/trash.svg +++ b/icons/trash.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/trending-down.svg b/icons/trending-down.svg index f3d33453..ef252f80 100644 --- a/icons/trending-down.svg +++ b/icons/trending-down.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/trending-up.svg b/icons/trending-up.svg index 931d32e0..aa7c8635 100644 --- a/icons/trending-up.svg +++ b/icons/trending-up.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/triangle.svg b/icons/triangle.svg index 9b9b7e33..26713347 100644 --- a/icons/triangle.svg +++ b/icons/triangle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/trophy.svg b/icons/trophy.svg index 458747e9..c7faaa64 100644 --- a/icons/trophy.svg +++ b/icons/trophy.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/unlink.svg b/icons/unlink.svg index 25cc6f0a..63d8857e 100644 --- a/icons/unlink.svg +++ b/icons/unlink.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/upload.svg b/icons/upload.svg index bfea0cb6..603d2750 100644 --- a/icons/upload.svg +++ b/icons/upload.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/urgent.svg b/icons/urgent.svg index 9c7acdd4..c3c96494 100644 --- a/icons/urgent.svg +++ b/icons/urgent.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/user-check.svg b/icons/user-check.svg index 99eb85db..67752a0c 100644 --- a/icons/user-check.svg +++ b/icons/user-check.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/user-minus.svg b/icons/user-minus.svg index 5787c4c9..0461dd45 100644 --- a/icons/user-minus.svg +++ b/icons/user-minus.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/user-plus.svg b/icons/user-plus.svg index d525d7e1..07a9fe1f 100644 --- a/icons/user-plus.svg +++ b/icons/user-plus.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/user-x.svg b/icons/user-x.svg index ddd31393..4252d79e 100644 --- a/icons/user-x.svg +++ b/icons/user-x.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/user.svg b/icons/user.svg index e8e2ce66..b5f7ca68 100644 --- a/icons/user.svg +++ b/icons/user.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/viewfinder.svg b/icons/viewfinder.svg index a3b8ca0f..3fddeced 100644 --- a/icons/viewfinder.svg +++ b/icons/viewfinder.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/volume-2.svg b/icons/volume-2.svg index c236c91c..b6af3b4e 100644 --- a/icons/volume-2.svg +++ b/icons/volume-2.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/volume-3.svg b/icons/volume-3.svg index 5e07f031..3292afa3 100644 --- a/icons/volume-3.svg +++ b/icons/volume-3.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/volume.svg b/icons/volume.svg index d500f856..b2397949 100644 --- a/icons/volume.svg +++ b/icons/volume.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/wifi.svg b/icons/wifi.svg index 69050b1b..d8475972 100644 --- a/icons/wifi.svg +++ b/icons/wifi.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/woman.svg b/icons/woman.svg index a2cc950a..bb14e062 100644 --- a/icons/woman.svg +++ b/icons/woman.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/world.svg b/icons/world.svg index a7e0ed9a..c3429886 100644 --- a/icons/world.svg +++ b/icons/world.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/x.svg b/icons/x.svg index cc768014..ff7f0170 100644 --- a/icons/x.svg +++ b/icons/x.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/zoom-in.svg b/icons/zoom-in.svg index 227cfd67..deae9fa6 100644 --- a/icons/zoom-in.svg +++ b/icons/zoom-in.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/zoom-out.svg b/icons/zoom-out.svg index 9c05ac9a..a5e702c9 100644 --- a/icons/zoom-out.svg +++ b/icons/zoom-out.svg @@ -1,5 +1,5 @@ - + diff --git a/src/_icons/alarm.svg b/src/_icons/alarm.svg new file mode 100644 index 00000000..4b7996bd --- /dev/null +++ b/src/_icons/alarm.svg @@ -0,0 +1,9 @@ +--- +tags: [time, watch, clock] +--- + + + + + + diff --git a/src/_icons/arrow-back.svg b/src/_icons/arrow-back.svg new file mode 100644 index 00000000..dab9f279 --- /dev/null +++ b/src/_icons/arrow-back.svg @@ -0,0 +1,6 @@ +--- +tags: [] +--- + + + diff --git a/src/_icons/arrow-forward.svg b/src/_icons/arrow-forward.svg new file mode 100644 index 00000000..34c5e1df --- /dev/null +++ b/src/_icons/arrow-forward.svg @@ -0,0 +1,6 @@ +--- +tags: [] +--- + + + diff --git a/src/_icons/artboard.svg b/src/_icons/artboard.svg new file mode 100644 index 00000000..ebf7104d --- /dev/null +++ b/src/_icons/artboard.svg @@ -0,0 +1,13 @@ +--- +--- + + + + + + + + + + + diff --git a/src/_icons/award.svg b/src/_icons/award.svg new file mode 100644 index 00000000..3f488f3f --- /dev/null +++ b/src/_icons/award.svg @@ -0,0 +1,6 @@ +--- +--- + + + + diff --git a/src/_icons/bug.svg b/src/_icons/bug.svg new file mode 100644 index 00000000..9bf0b4fe --- /dev/null +++ b/src/_icons/bug.svg @@ -0,0 +1,13 @@ +--- +--- + + + + + + + + + + + diff --git a/src/_icons/calendar-event.svg b/src/_icons/calendar-event.svg new file mode 100644 index 00000000..4aa8cee7 --- /dev/null +++ b/src/_icons/calendar-event.svg @@ -0,0 +1,10 @@ +--- +tags: [date, day, plan, schedule, agenda] +--- + + + + + + + diff --git a/src/_icons/directions.svg b/src/_icons/directions.svg index 4021d8b4..9cb450d3 100644 --- a/src/_icons/directions.svg +++ b/src/_icons/directions.svg @@ -2,8 +2,8 @@ tags: [travel, navigation, discover] --- - - + + diff --git a/src/_icons/disabled.svg b/src/_icons/disabled.svg index fd9c72a0..157aa3ea 100644 --- a/src/_icons/disabled.svg +++ b/src/_icons/disabled.svg @@ -5,5 +5,5 @@ tags: [wheelchair] - + diff --git a/src/_icons/disc.svg b/src/_icons/disc.svg index a87332b4..f09c7b0b 100644 --- a/src/_icons/disc.svg +++ b/src/_icons/disc.svg @@ -2,6 +2,8 @@ tags: [cd, music, album] --- - + + + diff --git a/src/_icons/edit.svg b/src/_icons/edit.svg index 1bc8b10c..caf30237 100644 --- a/src/_icons/edit.svg +++ b/src/_icons/edit.svg @@ -4,4 +4,5 @@ tags: [pencil, change] + diff --git a/src/_icons/globe.svg b/src/_icons/globe.svg new file mode 100644 index 00000000..49ab5769 --- /dev/null +++ b/src/_icons/globe.svg @@ -0,0 +1,8 @@ +--- +--- + + + + + + diff --git a/src/_icons/help.svg b/src/_icons/help.svg new file mode 100644 index 00000000..2a1cb0ab --- /dev/null +++ b/src/_icons/help.svg @@ -0,0 +1,7 @@ +--- +--- + + + + + diff --git a/src/_icons/mug.svg b/src/_icons/mug.svg new file mode 100644 index 00000000..1525619e --- /dev/null +++ b/src/_icons/mug.svg @@ -0,0 +1,6 @@ +--- +--- + + + + diff --git a/src/_icons/palette.svg b/src/_icons/palette.svg new file mode 100644 index 00000000..14f09d03 --- /dev/null +++ b/src/_icons/palette.svg @@ -0,0 +1,8 @@ +--- +--- + + + + + + diff --git a/src/_icons/pencil.svg b/src/_icons/pencil.svg new file mode 100644 index 00000000..9ace3776 --- /dev/null +++ b/src/_icons/pencil.svg @@ -0,0 +1,6 @@ +--- +--- + + + + diff --git a/src/_icons/record-mail.svg b/src/_icons/record-mail.svg new file mode 100644 index 00000000..8ee5886b --- /dev/null +++ b/src/_icons/record-mail.svg @@ -0,0 +1,7 @@ +--- +--- + + + + + diff --git a/src/_icons/ruler.svg b/src/_icons/ruler.svg new file mode 100644 index 00000000..847a84f9 --- /dev/null +++ b/src/_icons/ruler.svg @@ -0,0 +1,11 @@ +--- +--- + + + + + + + + + diff --git a/src/_icons/scissors.svg b/src/_icons/scissors.svg new file mode 100644 index 00000000..583197c9 --- /dev/null +++ b/src/_icons/scissors.svg @@ -0,0 +1,8 @@ +--- +--- + + + + + + diff --git a/src/_icons/stack.svg b/src/_icons/stack.svg new file mode 100644 index 00000000..554507e8 --- /dev/null +++ b/src/_icons/stack.svg @@ -0,0 +1,7 @@ +--- +--- + + + + + diff --git a/src/_icons/switch-vertical.svg b/src/_icons/switch-vertical.svg index 165cd549..1c4b7a40 100644 --- a/src/_icons/switch-vertical.svg +++ b/src/_icons/switch-vertical.svg @@ -2,10 +2,8 @@ tags: [toggle, up, down, arrows] --- - - diff --git a/src/_includes/icon.html b/src/_includes/icon.html index 25ec600d..39b96aaa 100644 --- a/src/_includes/icon.html +++ b/src/_includes/icon.html @@ -1,2 +1,2 @@ {% assign stroke = include.stroke | default: 2 %}{% assign width = 24 %}{% assign name = include.name %}{% assign icon = site.icons | where: "slug", name | first %}{% capture replace-to %} - {% endcapture %}{% assign content = icon.content | replace: '', replace-to %}{{ content }} + {% endcapture %}{% assign content = icon.content | replace: '', replace-to %}{{ content }} -- cgit v1.2.1 From 92e5bd3b957b3accfe4d3656f6fed1e65412192b Mon Sep 17 00:00:00 2001 From: codecalm Date: Sat, 21 Mar 2020 22:14:34 +0100 Subject: diff changelog --- gulpfile.js | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 66 insertions(+), 7 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 5210a8d2..4e01a033 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -201,7 +201,7 @@ gulp.task('optimize', function (cb) { }); }); -gulp.task('prepare-changelog', function(cb) { +gulp.task('changelog-commit', function(cb) { cp.exec('git status', function(err, ret) { let newIcons = [], modifiedIcons = [], renamedIcons = []; @@ -234,6 +234,7 @@ gulp.task('prepare-changelog', function(cb) { }); console.log(str); + console.log(''); } if(modifiedIcons.length > 0) { @@ -249,27 +250,85 @@ gulp.task('prepare-changelog', function(cb) { }); console.log(str); + console.log(''); } if(renamedIcons.length > 0) { - let str = ''; - str += `**Renamed icons: `; + console.log(`**Renamed icons: `); renamedIcons.forEach(function(icon, i){ - str += `\`${icon[0]}\` renamed to \`${icon[1]}\``; + console.log(`- \`${icon[0]}\` renamed to \`${icon[1]}\``); + }); + } + + cb(); + }); +}); + +gulp.task('changelog-diff', function(cb) { + const version = p.version; + cp.exec(`git diff v${version} HEAD --name-status`, function(err, ret) { + + let newIcons = [], modifiedIcons = [], renamedIcons = []; + + ret.replace(/A\s+src\/_icons\/([a-z1-9-]+)\.svg/g, function (m, fileName) { + newIcons.push(fileName); + }); + + ret.replace(/M\s+src\/_icons\/([a-z1-9-]+)\.svg/g, function (m, fileName) { + modifiedIcons.push(fileName); + }); + + ret.replace(/R[0-9]+\s+src\/_icons\/([a-z1-9-]+)\.svg\s+src\/_icons\/([a-z1-9-]+).svg/g, function (m, fileNameBefore, fileNameAfter) { + renamedIcons.push([fileNameBefore, fileNameAfter]); + }); + + modifiedIcons = modifiedIcons.filter( function( el ) { + return newIcons.indexOf( el ) < 0; + }); + + if(newIcons.length > 0) { + let str = ''; + str += `${newIcons.length} new icons: `; - if((i + 1) <= renamedIcons.length - 1) { + newIcons.forEach(function(icon, i){ + str += `\`${icon}\``; + + if((i + 1) <= newIcons.length - 1) { str += ', ' } }); console.log(str); + console.log(''); } - cb(); - }); + 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]}\``); + }); + } + + cb(); + }); }); gulp.task('build-zip', function() { -- cgit v1.2.1