diff --git a/.svglintrc.js b/.svglintrc.js index a03cb653..6e82fe13 100644 --- a/.svglintrc.js +++ b/.svglintrc.js @@ -6,7 +6,6 @@ const svgpath = require("svgpath"); const { svgPathBbox } = require("svg-path-bbox"); const parsePath = require("svg-path-segments"); -const titleRegexp = /(.+) icon$/; const svgRegexp = /^.*<\/title><path d=".*"\/><\/svg>\r?\n?$/; const negativeZerosRegexp = /-0(?=[^\.]|[\s\d\w]|$)/g; @@ -95,7 +94,7 @@ function ignoreIcon(linterName, path, $) { iconIgnored[linterName] = {}; } - const title = $.find("title").text().replace(/(.*) icon/, '$1'); + const title = $.find("title").text(); const iconName = htmlFriendlyToTitle(title); iconIgnored[linterName][path] = iconName; @@ -132,17 +131,10 @@ module.exports = { reporter.name = "icon-title"; const iconTitleText = $.find("title").text(); - if (!titleRegexp.test(iconTitleText)) { - reporter.error("<title> should follow the format \"[ICON_NAME] icon\""); - } else { - const titleMatch = iconTitleText.match(titleRegexp); - // titleMatch = [ "[ICON_NAME] icon", "[ICON_NAME]" ] - const rawIconName = titleMatch[1]; - const iconName = htmlFriendlyToTitle(rawIconName); - const icon = data.icons.find(icon => icon.title === iconName); - if (icon === undefined) { - reporter.error(`No icon with title "${iconName}" found in simple-icons.json`); - } + const iconName = htmlFriendlyToTitle(iconTitleText); + const iconExists = data.icons.some(icon => icon.title === iconName); + if (!iconExists) { + reporter.error(`No icon with title "${iconName}" found in simple-icons.json`); } }, function(reporter, $, ast) { diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d68004b5..21bea066 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -153,13 +153,13 @@ Each icon in Simple Icons has been annotated with a number of attributes and ele * `viewBox="0 0 24 24"` * The svg namespace. * `xmlns="http://www.w3.org/2000/svg"` -* A title element (Note the format). - * `<title>Adobe Photoshop icon` +* A title element containing the brand name. + * `Adobe Photoshop` Here is _part of_ the svg for the Adobe Photoshop icon as an example: ```svg -Adobe Photoshop icon... +Adobe Photoshop... ``` ### 5. Check the Icon @@ -182,7 +182,7 @@ The final icon should: Here is the svg for the Adobe Photoshop icon as an example: ```svg -Adobe Photoshop icon +Adobe Photoshop ``` ### 6. Name the Icon diff --git a/icons/1001tracklists.svg b/icons/1001tracklists.svg index 415de12c..3a937f53 100644 --- a/icons/1001tracklists.svg +++ b/icons/1001tracklists.svg @@ -1 +1 @@ -1001Tracklists icon \ No newline at end of file +1001Tracklists \ No newline at end of file diff --git a/icons/1password.svg b/icons/1password.svg index f5f53a43..2021fc9d 100644 --- a/icons/1password.svg +++ b/icons/1password.svg @@ -1 +1 @@ -1Password icon \ No newline at end of file +1Password \ No newline at end of file diff --git a/icons/3m.svg b/icons/3m.svg index d2f13f97..c064f956 100644 --- a/icons/3m.svg +++ b/icons/3m.svg @@ -1 +1 @@ -3M icon \ No newline at end of file +3M \ No newline at end of file diff --git a/icons/42.svg b/icons/42.svg index 923747de..6a096681 100644 --- a/icons/42.svg +++ b/icons/42.svg @@ -1 +1 @@ -42 icon +42 \ No newline at end of file diff --git a/icons/4d.svg b/icons/4d.svg index a7b2e822..e581dabb 100644 --- a/icons/4d.svg +++ b/icons/4d.svg @@ -1 +1 @@ -4D icon \ No newline at end of file +4D \ No newline at end of file diff --git a/icons/500px.svg b/icons/500px.svg index 429a4c0f..2d901139 100644 --- a/icons/500px.svg +++ b/icons/500px.svg @@ -1 +1 @@ -500px icon \ No newline at end of file +500px \ No newline at end of file diff --git a/icons/a-frame.svg b/icons/a-frame.svg index 3d980992..803aa1e7 100644 --- a/icons/a-frame.svg +++ b/icons/a-frame.svg @@ -1 +1 @@ -A-Frame icon \ No newline at end of file +A-Frame \ No newline at end of file diff --git a/icons/abbrobotstudio.svg b/icons/abbrobotstudio.svg index 523e06fa..36b94a44 100644 --- a/icons/abbrobotstudio.svg +++ b/icons/abbrobotstudio.svg @@ -1 +1 @@ -ABB RobotStudio icon \ No newline at end of file +ABB RobotStudio \ No newline at end of file diff --git a/icons/abbvie.svg b/icons/abbvie.svg index dbced9d9..8292ff30 100644 --- a/icons/abbvie.svg +++ b/icons/abbvie.svg @@ -1 +1 @@ -Abbvie icon \ No newline at end of file +Abbvie \ No newline at end of file diff --git a/icons/abletonlive.svg b/icons/abletonlive.svg index 6c45af58..a5bad8cd 100644 --- a/icons/abletonlive.svg +++ b/icons/abletonlive.svg @@ -1 +1 @@ -Ableton Live icon \ No newline at end of file +Ableton Live \ No newline at end of file diff --git a/icons/about-dot-me.svg b/icons/about-dot-me.svg index c102ed77..78b50279 100644 --- a/icons/about-dot-me.svg +++ b/icons/about-dot-me.svg @@ -1 +1 @@ -About.me icon \ No newline at end of file +About.me \ No newline at end of file diff --git a/icons/abstract.svg b/icons/abstract.svg index 210530d6..c425e6b6 100644 --- a/icons/abstract.svg +++ b/icons/abstract.svg @@ -1 +1 @@ -Abstract icon \ No newline at end of file +Abstract \ No newline at end of file diff --git a/icons/academia.svg b/icons/academia.svg index a7703511..456bf069 100644 --- a/icons/academia.svg +++ b/icons/academia.svg @@ -1 +1 @@ -Academia icon \ No newline at end of file +Academia \ No newline at end of file diff --git a/icons/accenture.svg b/icons/accenture.svg index 9632917d..2ac6434e 100644 --- a/icons/accenture.svg +++ b/icons/accenture.svg @@ -1 +1 @@ -Accenture icon \ No newline at end of file +Accenture \ No newline at end of file diff --git a/icons/acclaim.svg b/icons/acclaim.svg index b186a14d..e536c595 100644 --- a/icons/acclaim.svg +++ b/icons/acclaim.svg @@ -1 +1 @@ -Acclaim icon \ No newline at end of file +Acclaim \ No newline at end of file diff --git a/icons/accusoft.svg b/icons/accusoft.svg index 2dff8563..88662c65 100644 --- a/icons/accusoft.svg +++ b/icons/accusoft.svg @@ -1 +1 @@ -Accusoft icon \ No newline at end of file +Accusoft \ No newline at end of file diff --git a/icons/acer.svg b/icons/acer.svg index 79ae44f3..ca9b2bbf 100644 --- a/icons/acer.svg +++ b/icons/acer.svg @@ -1 +1 @@ -Acer icon \ No newline at end of file +Acer \ No newline at end of file diff --git a/icons/acm.svg b/icons/acm.svg index 1fecb3b5..5e7990a8 100644 --- a/icons/acm.svg +++ b/icons/acm.svg @@ -1 +1 @@ -ACM icon \ No newline at end of file +ACM \ No newline at end of file diff --git a/icons/actigraph.svg b/icons/actigraph.svg index e3e3b5c9..35aa0923 100644 --- a/icons/actigraph.svg +++ b/icons/actigraph.svg @@ -1 +1 @@ -ActiGraph icon \ No newline at end of file +ActiGraph \ No newline at end of file diff --git a/icons/activision.svg b/icons/activision.svg index 851c0928..8059cf7d 100644 --- a/icons/activision.svg +++ b/icons/activision.svg @@ -1 +1 @@ -Activision icon \ No newline at end of file +Activision \ No newline at end of file diff --git a/icons/adafruit.svg b/icons/adafruit.svg index 58d6e086..7e922955 100644 --- a/icons/adafruit.svg +++ b/icons/adafruit.svg @@ -1 +1 @@ -Adafruit icon \ No newline at end of file +Adafruit \ No newline at end of file diff --git a/icons/adblock.svg b/icons/adblock.svg index 7e8ffcd2..73a924d3 100644 --- a/icons/adblock.svg +++ b/icons/adblock.svg @@ -1 +1 @@ -AdBlock icon \ No newline at end of file +AdBlock \ No newline at end of file diff --git a/icons/adblockplus.svg b/icons/adblockplus.svg index 9ad96072..c0c0e65b 100644 --- a/icons/adblockplus.svg +++ b/icons/adblockplus.svg @@ -1 +1 @@ -Adblock Plus icon +Adblock Plus \ No newline at end of file diff --git a/icons/addthis.svg b/icons/addthis.svg index ff1c92b2..bc7ff3c0 100644 --- a/icons/addthis.svg +++ b/icons/addthis.svg @@ -1 +1 @@ -AddThis icon \ No newline at end of file +AddThis \ No newline at end of file diff --git a/icons/adguard.svg b/icons/adguard.svg index 53d18dce..0c4d811b 100644 --- a/icons/adguard.svg +++ b/icons/adguard.svg @@ -1 +1 @@ -AdGuard icon \ No newline at end of file +AdGuard \ No newline at end of file diff --git a/icons/adobe.svg b/icons/adobe.svg index fe233b5a..c2fc4355 100644 --- a/icons/adobe.svg +++ b/icons/adobe.svg @@ -1 +1 @@ -Adobe icon \ No newline at end of file +Adobe \ No newline at end of file diff --git a/icons/adobeacrobatreader.svg b/icons/adobeacrobatreader.svg index 86dfb50a..2b0b1138 100644 --- a/icons/adobeacrobatreader.svg +++ b/icons/adobeacrobatreader.svg @@ -1 +1 @@ -Adobe Acrobat Reader icon \ No newline at end of file +Adobe Acrobat Reader \ No newline at end of file diff --git a/icons/adobeaftereffects.svg b/icons/adobeaftereffects.svg index 5a927722..381da211 100644 --- a/icons/adobeaftereffects.svg +++ b/icons/adobeaftereffects.svg @@ -1 +1 @@ -Adobe After Effects icon \ No newline at end of file +Adobe After Effects \ No newline at end of file diff --git a/icons/adobeaudition.svg b/icons/adobeaudition.svg index 2a7f17b0..a6daf2df 100644 --- a/icons/adobeaudition.svg +++ b/icons/adobeaudition.svg @@ -1 +1 @@ -Adobe Audition icon \ No newline at end of file +Adobe Audition \ No newline at end of file diff --git a/icons/adobecreativecloud.svg b/icons/adobecreativecloud.svg index cbeebe42..99b17bdc 100644 --- a/icons/adobecreativecloud.svg +++ b/icons/adobecreativecloud.svg @@ -1 +1 @@ -Adobe Creative Cloud icon \ No newline at end of file +Adobe Creative Cloud \ No newline at end of file diff --git a/icons/adobedreamweaver.svg b/icons/adobedreamweaver.svg index 559c586a..3d329a92 100644 --- a/icons/adobedreamweaver.svg +++ b/icons/adobedreamweaver.svg @@ -1 +1 @@ -Adobe Dreamweaver icon \ No newline at end of file +Adobe Dreamweaver \ No newline at end of file diff --git a/icons/adobefonts.svg b/icons/adobefonts.svg index 262823f2..bbd1da89 100644 --- a/icons/adobefonts.svg +++ b/icons/adobefonts.svg @@ -1 +1 @@ -Adobe Fonts icon \ No newline at end of file +Adobe Fonts \ No newline at end of file diff --git a/icons/adobeillustrator.svg b/icons/adobeillustrator.svg index 86733cd2..ff824630 100644 --- a/icons/adobeillustrator.svg +++ b/icons/adobeillustrator.svg @@ -1 +1 @@ -Adobe Illustrator icon \ No newline at end of file +Adobe Illustrator \ No newline at end of file diff --git a/icons/adobeindesign.svg b/icons/adobeindesign.svg index 1d2e247d..848571f6 100644 --- a/icons/adobeindesign.svg +++ b/icons/adobeindesign.svg @@ -1 +1 @@ -Adobe InDesign icon \ No newline at end of file +Adobe InDesign \ No newline at end of file diff --git a/icons/adobelightroom.svg b/icons/adobelightroom.svg index cd6e44a4..ecc79272 100644 --- a/icons/adobelightroom.svg +++ b/icons/adobelightroom.svg @@ -1 +1 @@ -Adobe Lightroom icon \ No newline at end of file +Adobe Lightroom \ No newline at end of file diff --git a/icons/adobelightroomclassic.svg b/icons/adobelightroomclassic.svg index 05d16030..66765c5d 100644 --- a/icons/adobelightroomclassic.svg +++ b/icons/adobelightroomclassic.svg @@ -1 +1 @@ -Adobe Lightroom Classic icon \ No newline at end of file +Adobe Lightroom Classic \ No newline at end of file diff --git a/icons/adobephotoshop.svg b/icons/adobephotoshop.svg index 25f63826..25874237 100644 --- a/icons/adobephotoshop.svg +++ b/icons/adobephotoshop.svg @@ -1 +1 @@ -Adobe Photoshop icon \ No newline at end of file +Adobe Photoshop \ No newline at end of file diff --git a/icons/adobepremierepro.svg b/icons/adobepremierepro.svg index 32b1b791..c3440c12 100644 --- a/icons/adobepremierepro.svg +++ b/icons/adobepremierepro.svg @@ -1 +1 @@ -Adobe Premiere Pro icon \ No newline at end of file +Adobe Premiere Pro \ No newline at end of file diff --git a/icons/adobexd.svg b/icons/adobexd.svg index 41a8bacb..70d39b85 100644 --- a/icons/adobexd.svg +++ b/icons/adobexd.svg @@ -1 +1 @@ -Adobe XD icon \ No newline at end of file +Adobe XD \ No newline at end of file diff --git a/icons/adonisjs.svg b/icons/adonisjs.svg index be9858a5..e019c1a6 100644 --- a/icons/adonisjs.svg +++ b/icons/adonisjs.svg @@ -1 +1 @@ -AdonisJS icon +AdonisJS \ No newline at end of file diff --git a/icons/aerlingus.svg b/icons/aerlingus.svg index 8eb5c3f4..6c937c56 100644 --- a/icons/aerlingus.svg +++ b/icons/aerlingus.svg @@ -1 +1 @@ -Aer Lingus icon +Aer Lingus \ No newline at end of file diff --git a/icons/aeroflot.svg b/icons/aeroflot.svg index 7721ccec..817da18a 100644 --- a/icons/aeroflot.svg +++ b/icons/aeroflot.svg @@ -1 +1 @@ -Aeroflot icon \ No newline at end of file +Aeroflot \ No newline at end of file diff --git a/icons/aeromexico.svg b/icons/aeromexico.svg index 51efeaf7..f7d77e3e 100644 --- a/icons/aeromexico.svg +++ b/icons/aeromexico.svg @@ -1 +1 @@ -Aeroméxico icon \ No newline at end of file +Aeroméxico \ No newline at end of file diff --git a/icons/aerospike.svg b/icons/aerospike.svg index 5e95790c..34cad226 100644 --- a/icons/aerospike.svg +++ b/icons/aerospike.svg @@ -1 +1 @@ -Aerospike icon \ No newline at end of file +Aerospike \ No newline at end of file diff --git a/icons/affinity.svg b/icons/affinity.svg index fd038b82..21a2c6bb 100644 --- a/icons/affinity.svg +++ b/icons/affinity.svg @@ -1 +1 @@ -Affinity icon +Affinity \ No newline at end of file diff --git a/icons/affinitydesigner.svg b/icons/affinitydesigner.svg index 79426dd2..d4db5bae 100644 --- a/icons/affinitydesigner.svg +++ b/icons/affinitydesigner.svg @@ -1 +1 @@ -Affinity Designer icon +Affinity Designer \ No newline at end of file diff --git a/icons/affinityphoto.svg b/icons/affinityphoto.svg index 3ee0276b..fa17bf2b 100644 --- a/icons/affinityphoto.svg +++ b/icons/affinityphoto.svg @@ -1 +1 @@ -Affinity Photo icon +Affinity Photo \ No newline at end of file diff --git a/icons/affinitypublisher.svg b/icons/affinitypublisher.svg index f8250579..84b15ad5 100644 --- a/icons/affinitypublisher.svg +++ b/icons/affinitypublisher.svg @@ -1 +1 @@ -Affinity Publisher icon +Affinity Publisher \ No newline at end of file diff --git a/icons/aidungeon.svg b/icons/aidungeon.svg index cb12247f..ec42733e 100644 --- a/icons/aidungeon.svg +++ b/icons/aidungeon.svg @@ -1 +1 @@ -AI Dungeon icon \ No newline at end of file +AI Dungeon \ No newline at end of file diff --git a/icons/aiohttp.svg b/icons/aiohttp.svg index 72fef9b1..9ffb644b 100644 --- a/icons/aiohttp.svg +++ b/icons/aiohttp.svg @@ -1 +1 @@ -AIOHTTP icon \ No newline at end of file +AIOHTTP \ No newline at end of file diff --git a/icons/aiqfome.svg b/icons/aiqfome.svg index 0659b7e2..af056372 100644 --- a/icons/aiqfome.svg +++ b/icons/aiqfome.svg @@ -1 +1 @@ -Aiqfome icon +Aiqfome \ No newline at end of file diff --git a/icons/airasia.svg b/icons/airasia.svg index 278e79a1..b9791ccc 100644 --- a/icons/airasia.svg +++ b/icons/airasia.svg @@ -1 +1 @@ -AirAsia icon \ No newline at end of file +AirAsia \ No newline at end of file diff --git a/icons/airbnb.svg b/icons/airbnb.svg index 99816963..4677c707 100644 --- a/icons/airbnb.svg +++ b/icons/airbnb.svg @@ -1 +1 @@ -Airbnb icon \ No newline at end of file +Airbnb \ No newline at end of file diff --git a/icons/airbus.svg b/icons/airbus.svg index 0700ace0..e39bfd2b 100644 --- a/icons/airbus.svg +++ b/icons/airbus.svg @@ -1 +1 @@ -Airbus icon \ No newline at end of file +Airbus \ No newline at end of file diff --git a/icons/aircall.svg b/icons/aircall.svg index a6ad30bd..f5911dbe 100644 --- a/icons/aircall.svg +++ b/icons/aircall.svg @@ -1 +1 @@ -Aircall icon \ No newline at end of file +Aircall \ No newline at end of file diff --git a/icons/aircanada.svg b/icons/aircanada.svg index 6a546934..a4f3ba2a 100644 --- a/icons/aircanada.svg +++ b/icons/aircanada.svg @@ -1 +1 @@ -Air Canada icon \ No newline at end of file +Air Canada \ No newline at end of file diff --git a/icons/airchina.svg b/icons/airchina.svg index d1680d78..b96b1954 100644 --- a/icons/airchina.svg +++ b/icons/airchina.svg @@ -1 +1 @@ -Air China icon \ No newline at end of file +Air China \ No newline at end of file diff --git a/icons/airfrance.svg b/icons/airfrance.svg index 392e6e05..7d39a649 100644 --- a/icons/airfrance.svg +++ b/icons/airfrance.svg @@ -1 +1 @@ -Air France icon \ No newline at end of file +Air France \ No newline at end of file diff --git a/icons/airplayaudio.svg b/icons/airplayaudio.svg index 6d9f9b65..fb6350c4 100644 --- a/icons/airplayaudio.svg +++ b/icons/airplayaudio.svg @@ -1 +1 @@ -AirPlay Audio icon \ No newline at end of file +AirPlay Audio \ No newline at end of file diff --git a/icons/airplayvideo.svg b/icons/airplayvideo.svg index 89da5b98..1bd4b787 100644 --- a/icons/airplayvideo.svg +++ b/icons/airplayvideo.svg @@ -1 +1 @@ -AirPlay Video icon +AirPlay Video \ No newline at end of file diff --git a/icons/airtable.svg b/icons/airtable.svg index 3461a7ea..df8575e5 100644 --- a/icons/airtable.svg +++ b/icons/airtable.svg @@ -1 +1 @@ -Airtable icon \ No newline at end of file +Airtable \ No newline at end of file diff --git a/icons/alacritty.svg b/icons/alacritty.svg index 008c88f8..95d82251 100644 --- a/icons/alacritty.svg +++ b/icons/alacritty.svg @@ -1 +1 @@ -Alacritty icon +Alacritty \ No newline at end of file diff --git a/icons/alfaromeo.svg b/icons/alfaromeo.svg index 9bd6d72e..365b4715 100644 --- a/icons/alfaromeo.svg +++ b/icons/alfaromeo.svg @@ -1 +1 @@ -Alfa Romeo icon \ No newline at end of file +Alfa Romeo \ No newline at end of file diff --git a/icons/algolia.svg b/icons/algolia.svg index 3fb52ebc..20f11ef9 100644 --- a/icons/algolia.svg +++ b/icons/algolia.svg @@ -1 +1 @@ -Algolia icon +Algolia \ No newline at end of file diff --git a/icons/alibaba-dot-com.svg b/icons/alibaba-dot-com.svg index 86a03fed..47d96503 100644 --- a/icons/alibaba-dot-com.svg +++ b/icons/alibaba-dot-com.svg @@ -1 +1 @@ -Alibaba.com icon \ No newline at end of file +Alibaba.com \ No newline at end of file diff --git a/icons/alibabacloud.svg b/icons/alibabacloud.svg index 9a629931..e0a1e9d1 100644 --- a/icons/alibabacloud.svg +++ b/icons/alibabacloud.svg @@ -1 +1 @@ -Alibaba Cloud icon \ No newline at end of file +Alibaba Cloud \ No newline at end of file diff --git a/icons/aliexpress.svg b/icons/aliexpress.svg index 9089f88c..4b65608e 100644 --- a/icons/aliexpress.svg +++ b/icons/aliexpress.svg @@ -1 +1 @@ -AliExpress icon \ No newline at end of file +AliExpress \ No newline at end of file diff --git a/icons/alipay.svg b/icons/alipay.svg index 8672e45b..ba363d8a 100644 --- a/icons/alipay.svg +++ b/icons/alipay.svg @@ -1 +1 @@ -Alipay icon \ No newline at end of file +Alipay \ No newline at end of file diff --git a/icons/alitalia.svg b/icons/alitalia.svg index a6f9c23e..2c226636 100644 --- a/icons/alitalia.svg +++ b/icons/alitalia.svg @@ -1 +1 @@ -Alitalia icon \ No newline at end of file +Alitalia \ No newline at end of file diff --git a/icons/alliedmodders.svg b/icons/alliedmodders.svg index 554b76a5..0c6ed86b 100644 --- a/icons/alliedmodders.svg +++ b/icons/alliedmodders.svg @@ -1 +1 @@ -AlliedModders icon \ No newline at end of file +AlliedModders \ No newline at end of file diff --git a/icons/allocine.svg b/icons/allocine.svg index 274f1f09..4a53441c 100644 --- a/icons/allocine.svg +++ b/icons/allocine.svg @@ -1 +1 @@ -AlloCiné icon \ No newline at end of file +AlloCiné \ No newline at end of file diff --git a/icons/alltrails.svg b/icons/alltrails.svg index 04be3b5f..f95aefd5 100644 --- a/icons/alltrails.svg +++ b/icons/alltrails.svg @@ -1 +1 @@ -AllTrails icon \ No newline at end of file +AllTrails \ No newline at end of file diff --git a/icons/alpinedotjs.svg b/icons/alpinedotjs.svg index b60d2a3f..06cb42e9 100644 --- a/icons/alpinedotjs.svg +++ b/icons/alpinedotjs.svg @@ -1 +1 @@ -Alpine.js icon \ No newline at end of file +Alpine.js \ No newline at end of file diff --git a/icons/alpinelinux.svg b/icons/alpinelinux.svg index 349dd6e7..c554fb8a 100644 --- a/icons/alpinelinux.svg +++ b/icons/alpinelinux.svg @@ -1 +1 @@ -Alpine Linux icon +Alpine Linux \ No newline at end of file diff --git a/icons/altiumdesigner.svg b/icons/altiumdesigner.svg index 695f245c..6cd23579 100644 --- a/icons/altiumdesigner.svg +++ b/icons/altiumdesigner.svg @@ -1 +1 @@ -Altium Designer icon \ No newline at end of file +Altium Designer \ No newline at end of file diff --git a/icons/amazon.svg b/icons/amazon.svg index d0a25168..70316bab 100644 --- a/icons/amazon.svg +++ b/icons/amazon.svg @@ -1 +1 @@ -Amazon icon +Amazon \ No newline at end of file diff --git a/icons/amazonalexa.svg b/icons/amazonalexa.svg index 550eda03..60fd6dfc 100644 --- a/icons/amazonalexa.svg +++ b/icons/amazonalexa.svg @@ -1 +1 @@ -Amazon Alexa icon +Amazon Alexa \ No newline at end of file diff --git a/icons/amazonaws.svg b/icons/amazonaws.svg index a4357c77..9fd688c4 100644 --- a/icons/amazonaws.svg +++ b/icons/amazonaws.svg @@ -1 +1 @@ -Amazon AWS icon \ No newline at end of file +Amazon AWS \ No newline at end of file diff --git a/icons/amazondynamodb.svg b/icons/amazondynamodb.svg index 36c1287e..3d010ed1 100644 --- a/icons/amazondynamodb.svg +++ b/icons/amazondynamodb.svg @@ -1 +1 @@ -Amazon DynamoDB icon \ No newline at end of file +Amazon DynamoDB \ No newline at end of file diff --git a/icons/amazonfiretv.svg b/icons/amazonfiretv.svg index a93bee76..31b54ad3 100644 --- a/icons/amazonfiretv.svg +++ b/icons/amazonfiretv.svg @@ -1 +1 @@ -Amazon Fire TV icon \ No newline at end of file +Amazon Fire TV \ No newline at end of file diff --git a/icons/amazonlumberyard.svg b/icons/amazonlumberyard.svg index 5e9129e7..4020e567 100644 --- a/icons/amazonlumberyard.svg +++ b/icons/amazonlumberyard.svg @@ -1 +1 @@ -Amazon Lumberyard icon \ No newline at end of file +Amazon Lumberyard \ No newline at end of file diff --git a/icons/amazonpay.svg b/icons/amazonpay.svg index eac96bc3..3524fb17 100644 --- a/icons/amazonpay.svg +++ b/icons/amazonpay.svg @@ -1 +1 @@ -Amazon Pay icon \ No newline at end of file +Amazon Pay \ No newline at end of file diff --git a/icons/amazonprime.svg b/icons/amazonprime.svg index ba17a051..5b3fac16 100644 --- a/icons/amazonprime.svg +++ b/icons/amazonprime.svg @@ -1 +1 @@ -Amazon Prime icon \ No newline at end of file +Amazon Prime \ No newline at end of file diff --git a/icons/amazons3.svg b/icons/amazons3.svg index ff6fe4bc..e43f9ebe 100644 --- a/icons/amazons3.svg +++ b/icons/amazons3.svg @@ -1 +1 @@ -Amazon S3 icon \ No newline at end of file +Amazon S3 \ No newline at end of file diff --git a/icons/amd.svg b/icons/amd.svg index 1fd97db2..df7ec3f9 100644 --- a/icons/amd.svg +++ b/icons/amd.svg @@ -1 +1 @@ -AMD icon \ No newline at end of file +AMD \ No newline at end of file diff --git a/icons/americanairlines.svg b/icons/americanairlines.svg index 079b389e..bbbe22d1 100644 --- a/icons/americanairlines.svg +++ b/icons/americanairlines.svg @@ -1 +1 @@ -American Airlines icon \ No newline at end of file +American Airlines \ No newline at end of file diff --git a/icons/americanexpress.svg b/icons/americanexpress.svg index e4453a41..1caba4e9 100644 --- a/icons/americanexpress.svg +++ b/icons/americanexpress.svg @@ -1 +1 @@ -American Express icon \ No newline at end of file +American Express \ No newline at end of file diff --git a/icons/amp.svg b/icons/amp.svg index c56736a4..a9ed842c 100644 --- a/icons/amp.svg +++ b/icons/amp.svg @@ -1 +1 @@ -AMP icon \ No newline at end of file +AMP \ No newline at end of file diff --git a/icons/amul.svg b/icons/amul.svg index 827333c4..bc7c4024 100644 --- a/icons/amul.svg +++ b/icons/amul.svg @@ -1 +1 @@ -Amul icon \ No newline at end of file +Amul \ No newline at end of file diff --git a/icons/ana.svg b/icons/ana.svg index 520ccf14..22f2c414 100644 --- a/icons/ana.svg +++ b/icons/ana.svg @@ -1 +1 @@ -ANA icon \ No newline at end of file +ANA \ No newline at end of file diff --git a/icons/anaconda.svg b/icons/anaconda.svg index 76f9d010..b916d1b9 100644 --- a/icons/anaconda.svg +++ b/icons/anaconda.svg @@ -1 +1 @@ -Anaconda icon \ No newline at end of file +Anaconda \ No newline at end of file diff --git a/icons/analogue.svg b/icons/analogue.svg index b3e56dcb..d7c89448 100644 --- a/icons/analogue.svg +++ b/icons/analogue.svg @@ -1 +1 @@ -Analogue icon \ No newline at end of file +Analogue \ No newline at end of file diff --git a/icons/anchor.svg b/icons/anchor.svg index 150f1cba..ac75cb00 100644 --- a/icons/anchor.svg +++ b/icons/anchor.svg @@ -1 +1 @@ -Anchor icon \ No newline at end of file +Anchor \ No newline at end of file diff --git a/icons/andela.svg b/icons/andela.svg index 9a4249d2..c34c9893 100644 --- a/icons/andela.svg +++ b/icons/andela.svg @@ -1 +1 @@ -Andela icon \ No newline at end of file +Andela \ No newline at end of file diff --git a/icons/android.svg b/icons/android.svg index c6305f13..a7702d38 100644 --- a/icons/android.svg +++ b/icons/android.svg @@ -1 +1 @@ -Android icon \ No newline at end of file +Android \ No newline at end of file diff --git a/icons/androidauto.svg b/icons/androidauto.svg index 9ce0e5f9..8c253827 100644 --- a/icons/androidauto.svg +++ b/icons/androidauto.svg @@ -1 +1 @@ -Android Auto icon +Android Auto \ No newline at end of file diff --git a/icons/androidstudio.svg b/icons/androidstudio.svg index a05c7248..7ef146e5 100644 --- a/icons/androidstudio.svg +++ b/icons/androidstudio.svg @@ -1 +1 @@ -Android Studio icon \ No newline at end of file +Android Studio \ No newline at end of file diff --git a/icons/angellist.svg b/icons/angellist.svg index 84a125c2..7cce2596 100644 --- a/icons/angellist.svg +++ b/icons/angellist.svg @@ -1 +1 @@ -AngelList icon \ No newline at end of file +AngelList \ No newline at end of file diff --git a/icons/angular.svg b/icons/angular.svg index c7304808..6189bd2b 100644 --- a/icons/angular.svg +++ b/icons/angular.svg @@ -1 +1 @@ -Angular icon \ No newline at end of file +Angular \ No newline at end of file diff --git a/icons/angularjs.svg b/icons/angularjs.svg index cfefd759..c995b354 100644 --- a/icons/angularjs.svg +++ b/icons/angularjs.svg @@ -1 +1 @@ -AngularJS icon +AngularJS \ No newline at end of file diff --git a/icons/angularuniversal.svg b/icons/angularuniversal.svg index 55bce85a..dd6630fe 100644 --- a/icons/angularuniversal.svg +++ b/icons/angularuniversal.svg @@ -1 +1 @@ -Angular Universal icon \ No newline at end of file +Angular Universal \ No newline at end of file diff --git a/icons/anilist.svg b/icons/anilist.svg index 70bca6f1..bb191166 100644 --- a/icons/anilist.svg +++ b/icons/anilist.svg @@ -1 +1 @@ -AniList icon \ No newline at end of file +AniList \ No newline at end of file diff --git a/icons/ansible.svg b/icons/ansible.svg index 21847331..e7367ce6 100644 --- a/icons/ansible.svg +++ b/icons/ansible.svg @@ -1 +1 @@ -Ansible icon \ No newline at end of file +Ansible \ No newline at end of file diff --git a/icons/ansys.svg b/icons/ansys.svg index d3cfaf07..b4b14fc6 100644 --- a/icons/ansys.svg +++ b/icons/ansys.svg @@ -1 +1 @@ -Ansys icon \ No newline at end of file +Ansys \ No newline at end of file diff --git a/icons/antdesign.svg b/icons/antdesign.svg index 14e54ba5..db507a65 100644 --- a/icons/antdesign.svg +++ b/icons/antdesign.svg @@ -1 +1 @@ -Ant Design icon \ No newline at end of file +Ant Design \ No newline at end of file diff --git a/icons/antena3.svg b/icons/antena3.svg index 8d94a560..fca23a40 100644 --- a/icons/antena3.svg +++ b/icons/antena3.svg @@ -1 +1 @@ -Antena 3 icon \ No newline at end of file +Antena 3 \ No newline at end of file diff --git a/icons/anydesk.svg b/icons/anydesk.svg index 4156272f..5fbdea8b 100644 --- a/icons/anydesk.svg +++ b/icons/anydesk.svg @@ -1 +1 @@ -AnyDesk icon \ No newline at end of file +AnyDesk \ No newline at end of file diff --git a/icons/aol.svg b/icons/aol.svg index cfd9ccda..76f3180a 100644 --- a/icons/aol.svg +++ b/icons/aol.svg @@ -1 +1 @@ -AOL icon \ No newline at end of file +AOL \ No newline at end of file diff --git a/icons/apache.svg b/icons/apache.svg index 3a5899c9..1b3f05fa 100644 --- a/icons/apache.svg +++ b/icons/apache.svg @@ -1 +1 @@ -Apache icon \ No newline at end of file +Apache \ No newline at end of file diff --git a/icons/apacheairflow.svg b/icons/apacheairflow.svg index 161eb50b..8cc4ad0c 100644 --- a/icons/apacheairflow.svg +++ b/icons/apacheairflow.svg @@ -1 +1 @@ -Apache Airflow icon \ No newline at end of file +Apache Airflow \ No newline at end of file diff --git a/icons/apacheant.svg b/icons/apacheant.svg index 6c5e3308..e7ecb5f0 100644 --- a/icons/apacheant.svg +++ b/icons/apacheant.svg @@ -1 +1 @@ -Apache Ant icon \ No newline at end of file +Apache Ant \ No newline at end of file diff --git a/icons/apachecassandra.svg b/icons/apachecassandra.svg index 30eee56c..221b7e4d 100644 --- a/icons/apachecassandra.svg +++ b/icons/apachecassandra.svg @@ -1 +1 @@ -Apache Cassandra icon \ No newline at end of file +Apache Cassandra \ No newline at end of file diff --git a/icons/apachecloudstack.svg b/icons/apachecloudstack.svg index a3cac0ee..3d6cb78a 100644 --- a/icons/apachecloudstack.svg +++ b/icons/apachecloudstack.svg @@ -1 +1 @@ -Apache CloudStack icon \ No newline at end of file +Apache CloudStack \ No newline at end of file diff --git a/icons/apachecordova.svg b/icons/apachecordova.svg index 5f64a591..6cd2b8c6 100644 --- a/icons/apachecordova.svg +++ b/icons/apachecordova.svg @@ -1 +1 @@ -Apache Cordova icon \ No newline at end of file +Apache Cordova \ No newline at end of file diff --git a/icons/apachedruid.svg b/icons/apachedruid.svg index 54e41eae..7b016ec6 100644 --- a/icons/apachedruid.svg +++ b/icons/apachedruid.svg @@ -1 +1 @@ -Apache Druid icon \ No newline at end of file +Apache Druid \ No newline at end of file diff --git a/icons/apacheecharts.svg b/icons/apacheecharts.svg index cb95c219..a2621739 100644 --- a/icons/apacheecharts.svg +++ b/icons/apacheecharts.svg @@ -1 +1 @@ -Apache ECharts icon \ No newline at end of file +Apache ECharts \ No newline at end of file diff --git a/icons/apacheflink.svg b/icons/apacheflink.svg index 61e7aa0c..17b35fb6 100644 --- a/icons/apacheflink.svg +++ b/icons/apacheflink.svg @@ -1 +1 @@ -Apache Flink icon \ No newline at end of file +Apache Flink \ No newline at end of file diff --git a/icons/apachegroovy.svg b/icons/apachegroovy.svg index 39a52360..651e36e0 100644 --- a/icons/apachegroovy.svg +++ b/icons/apachegroovy.svg @@ -1 +1 @@ -Apache Groovy icon \ No newline at end of file +Apache Groovy \ No newline at end of file diff --git a/icons/apachehive.svg b/icons/apachehive.svg index df05e5c9..ae828a29 100644 --- a/icons/apachehive.svg +++ b/icons/apachehive.svg @@ -1 +1 @@ -Apache Hive icon \ No newline at end of file +Apache Hive \ No newline at end of file diff --git a/icons/apachejmeter.svg b/icons/apachejmeter.svg index da747a47..d38d5066 100644 --- a/icons/apachejmeter.svg +++ b/icons/apachejmeter.svg @@ -1 +1 @@ -Apache JMeter icon \ No newline at end of file +Apache JMeter \ No newline at end of file diff --git a/icons/apachekafka.svg b/icons/apachekafka.svg index ce75d08e..a4445579 100644 --- a/icons/apachekafka.svg +++ b/icons/apachekafka.svg @@ -1 +1 @@ -Apache Kafka icon \ No newline at end of file +Apache Kafka \ No newline at end of file diff --git a/icons/apachekylin.svg b/icons/apachekylin.svg index da92b5de..4aa03eed 100644 --- a/icons/apachekylin.svg +++ b/icons/apachekylin.svg @@ -1 +1 @@ -Apache Kylin icon \ No newline at end of file +Apache Kylin \ No newline at end of file diff --git a/icons/apachemaven.svg b/icons/apachemaven.svg index 1ca8ca5a..80f09ad7 100644 --- a/icons/apachemaven.svg +++ b/icons/apachemaven.svg @@ -1 +1 @@ -Apache Maven icon \ No newline at end of file +Apache Maven \ No newline at end of file diff --git a/icons/apachenetbeanside.svg b/icons/apachenetbeanside.svg index 4e70abb0..59fdf12e 100644 --- a/icons/apachenetbeanside.svg +++ b/icons/apachenetbeanside.svg @@ -1 +1 @@ -Apache NetBeans IDE icon \ No newline at end of file +Apache NetBeans IDE \ No newline at end of file diff --git a/icons/apacheopenoffice.svg b/icons/apacheopenoffice.svg index 796e0411..14097016 100644 --- a/icons/apacheopenoffice.svg +++ b/icons/apacheopenoffice.svg @@ -1 +1 @@ -Apache OpenOffice icon \ No newline at end of file +Apache OpenOffice \ No newline at end of file diff --git a/icons/apachepulsar.svg b/icons/apachepulsar.svg index 5e2eb7c6..ac4c9418 100644 --- a/icons/apachepulsar.svg +++ b/icons/apachepulsar.svg @@ -1 +1 @@ -Apache Pulsar icon \ No newline at end of file +Apache Pulsar \ No newline at end of file diff --git a/icons/apacherocketmq.svg b/icons/apacherocketmq.svg index 9f415026..d25ef238 100644 --- a/icons/apacherocketmq.svg +++ b/icons/apacherocketmq.svg @@ -1 +1 @@ -Apache RocketMQ icon \ No newline at end of file +Apache RocketMQ \ No newline at end of file diff --git a/icons/apachesolr.svg b/icons/apachesolr.svg index f4b24167..4c45c5c9 100644 --- a/icons/apachesolr.svg +++ b/icons/apachesolr.svg @@ -1 +1 @@ -Apache Solr icon \ No newline at end of file +Apache Solr \ No newline at end of file diff --git a/icons/apachespark.svg b/icons/apachespark.svg index 5c438b1b..d7c62df8 100644 --- a/icons/apachespark.svg +++ b/icons/apachespark.svg @@ -1 +1 @@ -Apache Spark icon \ No newline at end of file +Apache Spark \ No newline at end of file diff --git a/icons/apachetomcat.svg b/icons/apachetomcat.svg index 1126489c..9739f07d 100644 --- a/icons/apachetomcat.svg +++ b/icons/apachetomcat.svg @@ -1 +1 @@ -Apache Tomcat icon \ No newline at end of file +Apache Tomcat \ No newline at end of file diff --git a/icons/aparat.svg b/icons/aparat.svg index 4bcf56d4..0bd15581 100644 --- a/icons/aparat.svg +++ b/icons/aparat.svg @@ -1 +1 @@ -Aparat icon \ No newline at end of file +Aparat \ No newline at end of file diff --git a/icons/apollographql.svg b/icons/apollographql.svg index f441720d..fb6c1f34 100644 --- a/icons/apollographql.svg +++ b/icons/apollographql.svg @@ -1 +1 @@ -Apollo GraphQL icon +Apollo GraphQL \ No newline at end of file diff --git a/icons/apostrophe.svg b/icons/apostrophe.svg index 99d4970f..8db7001d 100644 --- a/icons/apostrophe.svg +++ b/icons/apostrophe.svg @@ -1 +1 @@ -Apostrophe icon \ No newline at end of file +Apostrophe \ No newline at end of file diff --git a/icons/apple.svg b/icons/apple.svg index 2fdce622..de4b0d17 100644 --- a/icons/apple.svg +++ b/icons/apple.svg @@ -1 +1 @@ -Apple icon \ No newline at end of file +Apple \ No newline at end of file diff --git a/icons/applearcade.svg b/icons/applearcade.svg index a50d8720..ee091db6 100644 --- a/icons/applearcade.svg +++ b/icons/applearcade.svg @@ -1 +1 @@ -Apple Arcade icon \ No newline at end of file +Apple Arcade \ No newline at end of file diff --git a/icons/applemusic.svg b/icons/applemusic.svg index 87bb722e..186414ba 100644 --- a/icons/applemusic.svg +++ b/icons/applemusic.svg @@ -1 +1 @@ -Apple Music icon \ No newline at end of file +Apple Music \ No newline at end of file diff --git a/icons/applepay.svg b/icons/applepay.svg index e7084caf..908afdc7 100644 --- a/icons/applepay.svg +++ b/icons/applepay.svg @@ -1 +1 @@ -Apple Pay icon \ No newline at end of file +Apple Pay \ No newline at end of file diff --git a/icons/applepodcasts.svg b/icons/applepodcasts.svg index d52fe035..a5586f1b 100644 --- a/icons/applepodcasts.svg +++ b/icons/applepodcasts.svg @@ -1 +1 @@ -Apple Podcasts icon +Apple Podcasts \ No newline at end of file diff --git a/icons/appletv.svg b/icons/appletv.svg index 5c9c3e0e..216184d0 100644 --- a/icons/appletv.svg +++ b/icons/appletv.svg @@ -1 +1 @@ -Apple TV icon \ No newline at end of file +Apple TV \ No newline at end of file diff --git a/icons/appsignal.svg b/icons/appsignal.svg index c106a55b..0da260ae 100644 --- a/icons/appsignal.svg +++ b/icons/appsignal.svg @@ -1 +1 @@ -AppSignal icon \ No newline at end of file +AppSignal \ No newline at end of file diff --git a/icons/appstore.svg b/icons/appstore.svg index 06290752..d70f33dd 100644 --- a/icons/appstore.svg +++ b/icons/appstore.svg @@ -1 +1 @@ -App Store icon \ No newline at end of file +App Store \ No newline at end of file diff --git a/icons/appveyor.svg b/icons/appveyor.svg index f8acfe34..1bbf8cdb 100644 --- a/icons/appveyor.svg +++ b/icons/appveyor.svg @@ -1 +1 @@ -AppVeyor icon \ No newline at end of file +AppVeyor \ No newline at end of file diff --git a/icons/aral.svg b/icons/aral.svg index 9b8c400a..7673f660 100644 --- a/icons/aral.svg +++ b/icons/aral.svg @@ -1 +1 @@ -ARAL icon \ No newline at end of file +ARAL \ No newline at end of file diff --git a/icons/arangodb.svg b/icons/arangodb.svg index 0a88541f..9c8de9ae 100644 --- a/icons/arangodb.svg +++ b/icons/arangodb.svg @@ -1 +1 @@ -ArangoDB icon \ No newline at end of file +ArangoDB \ No newline at end of file diff --git a/icons/archicad.svg b/icons/archicad.svg index 80d4cc3e..17f839c9 100644 --- a/icons/archicad.svg +++ b/icons/archicad.svg @@ -1 +1 @@ -Archicad icon \ No newline at end of file +Archicad \ No newline at end of file diff --git a/icons/archiveofourown.svg b/icons/archiveofourown.svg index 768e5ca0..0b1e2e47 100644 --- a/icons/archiveofourown.svg +++ b/icons/archiveofourown.svg @@ -1 +1 @@ -Archive of Our Own icon \ No newline at end of file +Archive of Our Own \ No newline at end of file diff --git a/icons/archlinux.svg b/icons/archlinux.svg index f77b4f57..ec9b3853 100644 --- a/icons/archlinux.svg +++ b/icons/archlinux.svg @@ -1 +1 @@ -Arch Linux icon \ No newline at end of file +Arch Linux \ No newline at end of file diff --git a/icons/ardour.svg b/icons/ardour.svg index 5995b1af..0cd3ec62 100644 --- a/icons/ardour.svg +++ b/icons/ardour.svg @@ -1 +1 @@ -Ardour icon \ No newline at end of file +Ardour \ No newline at end of file diff --git a/icons/arduino.svg b/icons/arduino.svg index f277633d..2d4d2ac4 100644 --- a/icons/arduino.svg +++ b/icons/arduino.svg @@ -1 +1 @@ -Arduino icon \ No newline at end of file +Arduino \ No newline at end of file diff --git a/icons/arkecosystem.svg b/icons/arkecosystem.svg index ccfe63f1..0e61050a 100644 --- a/icons/arkecosystem.svg +++ b/icons/arkecosystem.svg @@ -1 +1 @@ -ARK Ecosystem icon \ No newline at end of file +ARK Ecosystem \ No newline at end of file diff --git a/icons/arlo.svg b/icons/arlo.svg index e3228cf3..ae2e066b 100644 --- a/icons/arlo.svg +++ b/icons/arlo.svg @@ -1 +1 @@ -Arlo icon \ No newline at end of file +Arlo \ No newline at end of file diff --git a/icons/artixlinux.svg b/icons/artixlinux.svg index f126b95b..4b653ddf 100644 --- a/icons/artixlinux.svg +++ b/icons/artixlinux.svg @@ -1 +1 @@ -Artix Linux icon \ No newline at end of file +Artix Linux \ No newline at end of file diff --git a/icons/artstation.svg b/icons/artstation.svg index a1bebf9c..0d3ccee2 100644 --- a/icons/artstation.svg +++ b/icons/artstation.svg @@ -1 +1 @@ -ArtStation icon \ No newline at end of file +ArtStation \ No newline at end of file diff --git a/icons/arxiv.svg b/icons/arxiv.svg index 45bdf4d7..aad27621 100644 --- a/icons/arxiv.svg +++ b/icons/arxiv.svg @@ -1 +1 @@ -arXiv icon \ No newline at end of file +arXiv \ No newline at end of file diff --git a/icons/asana.svg b/icons/asana.svg index 012aacc9..eebccc8c 100644 --- a/icons/asana.svg +++ b/icons/asana.svg @@ -1 +1 @@ -Asana icon \ No newline at end of file +Asana \ No newline at end of file diff --git a/icons/asciidoctor.svg b/icons/asciidoctor.svg index 6141a920..67500292 100644 --- a/icons/asciidoctor.svg +++ b/icons/asciidoctor.svg @@ -1 +1 @@ -Asciidoctor icon \ No newline at end of file +Asciidoctor \ No newline at end of file diff --git a/icons/asciinema.svg b/icons/asciinema.svg index 3adc56b2..c426ef70 100644 --- a/icons/asciinema.svg +++ b/icons/asciinema.svg @@ -1 +1 @@ -asciinema icon +asciinema \ No newline at end of file diff --git a/icons/aseprite.svg b/icons/aseprite.svg index 6c358f4a..944dcbcf 100644 --- a/icons/aseprite.svg +++ b/icons/aseprite.svg @@ -1 +1 @@ -Aseprite icon \ No newline at end of file +Aseprite \ No newline at end of file diff --git a/icons/askfm.svg b/icons/askfm.svg index bb44605e..feeef75d 100644 --- a/icons/askfm.svg +++ b/icons/askfm.svg @@ -1 +1 @@ -ASKfm icon \ No newline at end of file +ASKfm \ No newline at end of file diff --git a/icons/askubuntu.svg b/icons/askubuntu.svg index 0512f0cc..3b0e516a 100644 --- a/icons/askubuntu.svg +++ b/icons/askubuntu.svg @@ -1 +1 @@ -Ask Ubuntu icon \ No newline at end of file +Ask Ubuntu \ No newline at end of file diff --git a/icons/assemblyscript.svg b/icons/assemblyscript.svg index 468cd8b6..4d34c007 100644 --- a/icons/assemblyscript.svg +++ b/icons/assemblyscript.svg @@ -1 +1 @@ -AssemblyScript icon \ No newline at end of file +AssemblyScript \ No newline at end of file diff --git a/icons/asus.svg b/icons/asus.svg index 7227c2dd..18ef199d 100644 --- a/icons/asus.svg +++ b/icons/asus.svg @@ -1 +1 @@ -ASUS icon \ No newline at end of file +ASUS \ No newline at end of file diff --git a/icons/at-and-t.svg b/icons/at-and-t.svg index e6230b8a..166ca392 100644 --- a/icons/at-and-t.svg +++ b/icons/at-and-t.svg @@ -1 +1 @@ -AT&T icon \ No newline at end of file +AT&T \ No newline at end of file diff --git a/icons/atari.svg b/icons/atari.svg index 8f83f91f..9be7227d 100644 --- a/icons/atari.svg +++ b/icons/atari.svg @@ -1 +1 @@ -Atari icon \ No newline at end of file +Atari \ No newline at end of file diff --git a/icons/atlassian.svg b/icons/atlassian.svg index e0768ae7..87521386 100644 --- a/icons/atlassian.svg +++ b/icons/atlassian.svg @@ -1 +1 @@ -Atlassian icon \ No newline at end of file +Atlassian \ No newline at end of file diff --git a/icons/atom.svg b/icons/atom.svg index 5564ba1c..5ba7e82f 100644 --- a/icons/atom.svg +++ b/icons/atom.svg @@ -1 +1 @@ -Atom icon \ No newline at end of file +Atom \ No newline at end of file diff --git a/icons/audacity.svg b/icons/audacity.svg index 641ed5a4..c8d99573 100644 --- a/icons/audacity.svg +++ b/icons/audacity.svg @@ -1 +1 @@ -Audacity icon \ No newline at end of file +Audacity \ No newline at end of file diff --git a/icons/audi.svg b/icons/audi.svg index 3c37409f..36252b4e 100644 --- a/icons/audi.svg +++ b/icons/audi.svg @@ -1 +1 @@ -Audi icon \ No newline at end of file +Audi \ No newline at end of file diff --git a/icons/audible.svg b/icons/audible.svg index 0c59b03c..c80a10f3 100644 --- a/icons/audible.svg +++ b/icons/audible.svg @@ -1 +1 @@ -Audible icon \ No newline at end of file +Audible \ No newline at end of file diff --git a/icons/audio-technica.svg b/icons/audio-technica.svg index 2501dcad..63364119 100644 --- a/icons/audio-technica.svg +++ b/icons/audio-technica.svg @@ -1 +1 @@ -Audio-Technica icon \ No newline at end of file +Audio-Technica \ No newline at end of file diff --git a/icons/audioboom.svg b/icons/audioboom.svg index 1d3da499..559d82a8 100644 --- a/icons/audioboom.svg +++ b/icons/audioboom.svg @@ -1 +1 @@ -Audioboom icon \ No newline at end of file +Audioboom \ No newline at end of file diff --git a/icons/audiomack.svg b/icons/audiomack.svg index 0cf3a1e5..807cfb3a 100644 --- a/icons/audiomack.svg +++ b/icons/audiomack.svg @@ -1 +1 @@ -Audiomack icon \ No newline at end of file +Audiomack \ No newline at end of file diff --git a/icons/aurelia.svg b/icons/aurelia.svg index eb092a43..242c7e8e 100644 --- a/icons/aurelia.svg +++ b/icons/aurelia.svg @@ -1 +1 @@ -Aurelia icon \ No newline at end of file +Aurelia \ No newline at end of file diff --git a/icons/auth0.svg b/icons/auth0.svg index 82576cbf..6b7b2705 100644 --- a/icons/auth0.svg +++ b/icons/auth0.svg @@ -1 +1 @@ -Auth0 icon \ No newline at end of file +Auth0 \ No newline at end of file diff --git a/icons/authy.svg b/icons/authy.svg index e5381463..07ba6e35 100644 --- a/icons/authy.svg +++ b/icons/authy.svg @@ -1 +1 @@ -Authy icon \ No newline at end of file +Authy \ No newline at end of file diff --git a/icons/autodesk.svg b/icons/autodesk.svg index d8e54714..db43f09d 100644 --- a/icons/autodesk.svg +++ b/icons/autodesk.svg @@ -1 +1 @@ -Autodesk icon \ No newline at end of file +Autodesk \ No newline at end of file diff --git a/icons/autohotkey.svg b/icons/autohotkey.svg index 49d2be27..669855aa 100644 --- a/icons/autohotkey.svg +++ b/icons/autohotkey.svg @@ -1 +1 @@ -AutoHotkey icon \ No newline at end of file +AutoHotkey \ No newline at end of file diff --git a/icons/automattic.svg b/icons/automattic.svg index 6944537a..32bd0853 100644 --- a/icons/automattic.svg +++ b/icons/automattic.svg @@ -1 +1 @@ -Automattic icon \ No newline at end of file +Automattic \ No newline at end of file diff --git a/icons/awesomelists.svg b/icons/awesomelists.svg index 4660b7cf..7b81a703 100644 --- a/icons/awesomelists.svg +++ b/icons/awesomelists.svg @@ -1 +1 @@ -Awesome Lists icon \ No newline at end of file +Awesome Lists \ No newline at end of file diff --git a/icons/awesomewm.svg b/icons/awesomewm.svg index 9a922ec6..992b6b61 100644 --- a/icons/awesomewm.svg +++ b/icons/awesomewm.svg @@ -1 +1 @@ -awesomeWM icon +awesomeWM \ No newline at end of file diff --git a/icons/awsamplify.svg b/icons/awsamplify.svg index c6f2878d..7c57ae46 100644 --- a/icons/awsamplify.svg +++ b/icons/awsamplify.svg @@ -1 +1 @@ -AWS Amplify icon \ No newline at end of file +AWS Amplify \ No newline at end of file diff --git a/icons/azureartifacts.svg b/icons/azureartifacts.svg index 5a50ec20..c8a16259 100644 --- a/icons/azureartifacts.svg +++ b/icons/azureartifacts.svg @@ -1 +1 @@ -Azure Artifacts icon \ No newline at end of file +Azure Artifacts \ No newline at end of file diff --git a/icons/azuredataexplorer.svg b/icons/azuredataexplorer.svg index fb9346fb..c8409d0b 100644 --- a/icons/azuredataexplorer.svg +++ b/icons/azuredataexplorer.svg @@ -1 +1 @@ -Azure Data Explorer icon \ No newline at end of file +Azure Data Explorer \ No newline at end of file diff --git a/icons/azuredevops.svg b/icons/azuredevops.svg index 028edf86..de40f7c3 100644 --- a/icons/azuredevops.svg +++ b/icons/azuredevops.svg @@ -1 +1 @@ -Azure DevOps icon \ No newline at end of file +Azure DevOps \ No newline at end of file diff --git a/icons/azurefunctions.svg b/icons/azurefunctions.svg index 0cad434b..89fbffe7 100644 --- a/icons/azurefunctions.svg +++ b/icons/azurefunctions.svg @@ -1 +1 @@ -Azure Functions icon \ No newline at end of file +Azure Functions \ No newline at end of file diff --git a/icons/azurepipelines.svg b/icons/azurepipelines.svg index 2cb75aca..d4e81af2 100644 --- a/icons/azurepipelines.svg +++ b/icons/azurepipelines.svg @@ -1 +1 @@ -Azure Pipelines icon \ No newline at end of file +Azure Pipelines \ No newline at end of file diff --git a/icons/b-and-rautomation.svg b/icons/b-and-rautomation.svg index fb308ac0..74296d14 100644 --- a/icons/b-and-rautomation.svg +++ b/icons/b-and-rautomation.svg @@ -1 +1 @@ -B&R Automation icon \ No newline at end of file +B&R Automation \ No newline at end of file diff --git a/icons/babel.svg b/icons/babel.svg index dcf133a9..796c2bb0 100644 --- a/icons/babel.svg +++ b/icons/babel.svg @@ -1 +1 @@ -Babel icon +Babel \ No newline at end of file diff --git a/icons/badgr.svg b/icons/badgr.svg index 7fb69d42..35b9ee03 100644 --- a/icons/badgr.svg +++ b/icons/badgr.svg @@ -1 +1 @@ -Badgr icon \ No newline at end of file +Badgr \ No newline at end of file diff --git a/icons/badoo.svg b/icons/badoo.svg index 8be30ce9..840d6f00 100644 --- a/icons/badoo.svg +++ b/icons/badoo.svg @@ -1 +1 @@ -Badoo icon \ No newline at end of file +Badoo \ No newline at end of file diff --git a/icons/baidu.svg b/icons/baidu.svg index 5a22e95d..d3e65969 100644 --- a/icons/baidu.svg +++ b/icons/baidu.svg @@ -1 +1 @@ -Baidu icon \ No newline at end of file +Baidu \ No newline at end of file diff --git a/icons/bamboo.svg b/icons/bamboo.svg index bfd3ef46..43508c97 100644 --- a/icons/bamboo.svg +++ b/icons/bamboo.svg @@ -1 +1 @@ -Bamboo icon \ No newline at end of file +Bamboo \ No newline at end of file diff --git a/icons/bandcamp.svg b/icons/bandcamp.svg index 74312662..3ccf0cf5 100644 --- a/icons/bandcamp.svg +++ b/icons/bandcamp.svg @@ -1 +1 @@ -Bandcamp icon \ No newline at end of file +Bandcamp \ No newline at end of file diff --git a/icons/bandlab.svg b/icons/bandlab.svg index aae4f9a7..9c8896a8 100644 --- a/icons/bandlab.svg +++ b/icons/bandlab.svg @@ -1 +1 @@ -BandLab icon \ No newline at end of file +BandLab \ No newline at end of file diff --git a/icons/bandsintown.svg b/icons/bandsintown.svg index 25f5deef..6b57a48d 100644 --- a/icons/bandsintown.svg +++ b/icons/bandsintown.svg @@ -1 +1 @@ -Bandsintown icon +Bandsintown \ No newline at end of file diff --git a/icons/bankofamerica.svg b/icons/bankofamerica.svg index c6783a5b..5cf143d8 100644 --- a/icons/bankofamerica.svg +++ b/icons/bankofamerica.svg @@ -1 +1 @@ -Bank of America icon \ No newline at end of file +Bank of America \ No newline at end of file diff --git a/icons/barclays.svg b/icons/barclays.svg index 8e18f88c..643f3603 100644 --- a/icons/barclays.svg +++ b/icons/barclays.svg @@ -1 +1 @@ -Barclays icon +Barclays \ No newline at end of file diff --git a/icons/baremetrics.svg b/icons/baremetrics.svg index 9f6908cb..3096f145 100644 --- a/icons/baremetrics.svg +++ b/icons/baremetrics.svg @@ -1 +1 @@ -Baremetrics icon \ No newline at end of file +Baremetrics \ No newline at end of file diff --git a/icons/basecamp.svg b/icons/basecamp.svg index 36d95838..c47222e4 100644 --- a/icons/basecamp.svg +++ b/icons/basecamp.svg @@ -1 +1 @@ -Basecamp icon \ No newline at end of file +Basecamp \ No newline at end of file diff --git a/icons/bata.svg b/icons/bata.svg index b7cb0a20..f5171768 100644 --- a/icons/bata.svg +++ b/icons/bata.svg @@ -1 +1 @@ -Bata icon \ No newline at end of file +Bata \ No newline at end of file diff --git a/icons/bathasu.svg b/icons/bathasu.svg index 12fdebd1..c77475a1 100644 --- a/icons/bathasu.svg +++ b/icons/bathasu.svg @@ -1 +1 @@ -Bath ASU icon \ No newline at end of file +Bath ASU \ No newline at end of file diff --git a/icons/battle-dot-net.svg b/icons/battle-dot-net.svg index a89d414d..93f9eb37 100644 --- a/icons/battle-dot-net.svg +++ b/icons/battle-dot-net.svg @@ -1 +1 @@ -Battle.net icon +Battle.net \ No newline at end of file diff --git a/icons/bbc.svg b/icons/bbc.svg index 920c87f2..f8255e09 100644 --- a/icons/bbc.svg +++ b/icons/bbc.svg @@ -1 +1 @@ -BBC icon \ No newline at end of file +BBC \ No newline at end of file diff --git a/icons/bbciplayer.svg b/icons/bbciplayer.svg index 738fc790..85609335 100644 --- a/icons/bbciplayer.svg +++ b/icons/bbciplayer.svg @@ -1 +1 @@ -BBC iPlayer icon \ No newline at end of file +BBC iPlayer \ No newline at end of file diff --git a/icons/beatport.svg b/icons/beatport.svg index 6d31bb63..69a12083 100644 --- a/icons/beatport.svg +++ b/icons/beatport.svg @@ -1 +1 @@ -Beatport icon \ No newline at end of file +Beatport \ No newline at end of file diff --git a/icons/beats.svg b/icons/beats.svg index 945245e0..b6e2d8f8 100644 --- a/icons/beats.svg +++ b/icons/beats.svg @@ -1 +1 @@ -Beats icon +Beats \ No newline at end of file diff --git a/icons/beatsbydre.svg b/icons/beatsbydre.svg index 8187e43f..9d5584cc 100644 --- a/icons/beatsbydre.svg +++ b/icons/beatsbydre.svg @@ -1 +1 @@ -Beats by Dre icon \ No newline at end of file +Beats by Dre \ No newline at end of file diff --git a/icons/behance.svg b/icons/behance.svg index a07dbc7b..458e8d01 100644 --- a/icons/behance.svg +++ b/icons/behance.svg @@ -1 +1 @@ -Behance icon \ No newline at end of file +Behance \ No newline at end of file diff --git a/icons/beijingsubway.svg b/icons/beijingsubway.svg index 02cdb87b..1a2b30ab 100644 --- a/icons/beijingsubway.svg +++ b/icons/beijingsubway.svg @@ -1 +1 @@ -Beijing Subway icon \ No newline at end of file +Beijing Subway \ No newline at end of file diff --git a/icons/bentley.svg b/icons/bentley.svg index cbbe29b1..713da37b 100644 --- a/icons/bentley.svg +++ b/icons/bentley.svg @@ -1 +1 @@ -Bentley icon \ No newline at end of file +Bentley \ No newline at end of file diff --git a/icons/betfair.svg b/icons/betfair.svg index 80760b99..87b4d9bb 100644 --- a/icons/betfair.svg +++ b/icons/betfair.svg @@ -1 +1 @@ -Betfair icon \ No newline at end of file +Betfair \ No newline at end of file diff --git a/icons/bigbasket.svg b/icons/bigbasket.svg index 7c250e88..28ce65f3 100644 --- a/icons/bigbasket.svg +++ b/icons/bigbasket.svg @@ -1 +1 @@ -bigbasket icon \ No newline at end of file +bigbasket \ No newline at end of file diff --git a/icons/bigcartel.svg b/icons/bigcartel.svg index 12abeb97..41ac68b5 100644 --- a/icons/bigcartel.svg +++ b/icons/bigcartel.svg @@ -1 +1 @@ -Big Cartel icon \ No newline at end of file +Big Cartel \ No newline at end of file diff --git a/icons/bigcommerce.svg b/icons/bigcommerce.svg index 226a6585..204d908f 100644 --- a/icons/bigcommerce.svg +++ b/icons/bigcommerce.svg @@ -1 +1 @@ -BigCommerce icon \ No newline at end of file +BigCommerce \ No newline at end of file diff --git a/icons/bilibili.svg b/icons/bilibili.svg index 457c7b01..6c114c71 100644 --- a/icons/bilibili.svg +++ b/icons/bilibili.svg @@ -1 +1 @@ -Bilibili icon \ No newline at end of file +Bilibili \ No newline at end of file diff --git a/icons/bit.svg b/icons/bit.svg index c06dfc65..70b09cf7 100644 --- a/icons/bit.svg +++ b/icons/bit.svg @@ -1 +1 @@ -Bit icon \ No newline at end of file +Bit \ No newline at end of file diff --git a/icons/bitbucket.svg b/icons/bitbucket.svg index fe423b7e..6a977907 100644 --- a/icons/bitbucket.svg +++ b/icons/bitbucket.svg @@ -1 +1 @@ -Bitbucket icon \ No newline at end of file +Bitbucket \ No newline at end of file diff --git a/icons/bitcoin.svg b/icons/bitcoin.svg index 91e76a97..c44ddcc9 100644 --- a/icons/bitcoin.svg +++ b/icons/bitcoin.svg @@ -1 +1 @@ -Bitcoin icon \ No newline at end of file +Bitcoin \ No newline at end of file diff --git a/icons/bitcoincash.svg b/icons/bitcoincash.svg index 47c15f21..709560a9 100644 --- a/icons/bitcoincash.svg +++ b/icons/bitcoincash.svg @@ -1 +1 @@ -Bitcoin Cash icon \ No newline at end of file +Bitcoin Cash \ No newline at end of file diff --git a/icons/bitcoinsv.svg b/icons/bitcoinsv.svg index 33f03d4c..41d2c742 100644 --- a/icons/bitcoinsv.svg +++ b/icons/bitcoinsv.svg @@ -1 +1 @@ -Bitcoin SV icon \ No newline at end of file +Bitcoin SV \ No newline at end of file diff --git a/icons/bitdefender.svg b/icons/bitdefender.svg index b0b42007..bfae48cb 100644 --- a/icons/bitdefender.svg +++ b/icons/bitdefender.svg @@ -1 +1 @@ -Bitdefender icon \ No newline at end of file +Bitdefender \ No newline at end of file diff --git a/icons/bitly.svg b/icons/bitly.svg index 3f5c8550..021041e7 100644 --- a/icons/bitly.svg +++ b/icons/bitly.svg @@ -1 +1 @@ -Bitly icon \ No newline at end of file +Bitly \ No newline at end of file diff --git a/icons/bitrise.svg b/icons/bitrise.svg index d2f3d120..0a2abd78 100644 --- a/icons/bitrise.svg +++ b/icons/bitrise.svg @@ -1 +1 @@ -Bitrise icon \ No newline at end of file +Bitrise \ No newline at end of file diff --git a/icons/bitwarden.svg b/icons/bitwarden.svg index 9e26f262..fbf154e5 100644 --- a/icons/bitwarden.svg +++ b/icons/bitwarden.svg @@ -1 +1 @@ -Bitwarden icon \ No newline at end of file +Bitwarden \ No newline at end of file diff --git a/icons/bitwig.svg b/icons/bitwig.svg index 50d9adf7..775ad1d4 100644 --- a/icons/bitwig.svg +++ b/icons/bitwig.svg @@ -1 +1 @@ -Bitwig icon \ No newline at end of file +Bitwig \ No newline at end of file diff --git a/icons/blackberry.svg b/icons/blackberry.svg index 0106e431..b0c55837 100644 --- a/icons/blackberry.svg +++ b/icons/blackberry.svg @@ -1 +1 @@ -Blackberry icon +Blackberry \ No newline at end of file diff --git a/icons/blazemeter.svg b/icons/blazemeter.svg index 8ae66a96..9aaca593 100644 --- a/icons/blazemeter.svg +++ b/icons/blazemeter.svg @@ -1 +1 @@ -Blazemeter icon \ No newline at end of file +Blazemeter \ No newline at end of file diff --git a/icons/blazor.svg b/icons/blazor.svg index cd42293a..507d893c 100644 --- a/icons/blazor.svg +++ b/icons/blazor.svg @@ -1 +1 @@ -Blazor icon \ No newline at end of file +Blazor \ No newline at end of file diff --git a/icons/blender.svg b/icons/blender.svg index 09c2ffe6..511377f4 100644 --- a/icons/blender.svg +++ b/icons/blender.svg @@ -1 +1 @@ -Blender icon \ No newline at end of file +Blender \ No newline at end of file diff --git a/icons/blockchain-dot-com.svg b/icons/blockchain-dot-com.svg index c76b4d15..221a2633 100644 --- a/icons/blockchain-dot-com.svg +++ b/icons/blockchain-dot-com.svg @@ -1 +1 @@ -Blockchain.com icon \ No newline at end of file +Blockchain.com \ No newline at end of file diff --git a/icons/blogger.svg b/icons/blogger.svg index 12d7a7d8..1215fec0 100644 --- a/icons/blogger.svg +++ b/icons/blogger.svg @@ -1 +1 @@ -Blogger icon \ No newline at end of file +Blogger \ No newline at end of file diff --git a/icons/bloglovin.svg b/icons/bloglovin.svg index c99d05db..abe53d86 100644 --- a/icons/bloglovin.svg +++ b/icons/bloglovin.svg @@ -1 +1 @@ -Bloglovin icon \ No newline at end of file +Bloglovin \ No newline at end of file diff --git a/icons/blueprint.svg b/icons/blueprint.svg index 4f6c054a..70de72ff 100644 --- a/icons/blueprint.svg +++ b/icons/blueprint.svg @@ -1 +1 @@ -Blueprint icon \ No newline at end of file +Blueprint \ No newline at end of file diff --git a/icons/bluetooth.svg b/icons/bluetooth.svg index 3978e9a8..96c61933 100644 --- a/icons/bluetooth.svg +++ b/icons/bluetooth.svg @@ -1 +1 @@ -Bluetooth icon +Bluetooth \ No newline at end of file diff --git a/icons/bmcsoftware.svg b/icons/bmcsoftware.svg index 03ce567e..e99a73d7 100644 --- a/icons/bmcsoftware.svg +++ b/icons/bmcsoftware.svg @@ -1 +1 @@ -BMC Software icon \ No newline at end of file +BMC Software \ No newline at end of file diff --git a/icons/bmw.svg b/icons/bmw.svg index 9c4deae3..d5795256 100644 --- a/icons/bmw.svg +++ b/icons/bmw.svg @@ -1 +1 @@ -BMW icon \ No newline at end of file +BMW \ No newline at end of file diff --git a/icons/boeing.svg b/icons/boeing.svg index 3c37c35b..d8d8e280 100644 --- a/icons/boeing.svg +++ b/icons/boeing.svg @@ -1 +1 @@ -Boeing icon \ No newline at end of file +Boeing \ No newline at end of file diff --git a/icons/bookbub.svg b/icons/bookbub.svg index c3d2dd82..53d012fd 100644 --- a/icons/bookbub.svg +++ b/icons/bookbub.svg @@ -1 +1 @@ -BookBub icon \ No newline at end of file +BookBub \ No newline at end of file diff --git a/icons/bookmeter.svg b/icons/bookmeter.svg index 70b73aa8..3751818f 100644 --- a/icons/bookmeter.svg +++ b/icons/bookmeter.svg @@ -1 +1 @@ -Bookmeter icon \ No newline at end of file +Bookmeter \ No newline at end of file diff --git a/icons/bookstack.svg b/icons/bookstack.svg index 45355e49..8b782905 100644 --- a/icons/bookstack.svg +++ b/icons/bookstack.svg @@ -1 +1 @@ -BookStack icon \ No newline at end of file +BookStack \ No newline at end of file diff --git a/icons/boost.svg b/icons/boost.svg index e22adb50..11e51eb0 100644 --- a/icons/boost.svg +++ b/icons/boost.svg @@ -1 +1 @@ -Boost icon \ No newline at end of file +Boost \ No newline at end of file diff --git a/icons/bootstrap.svg b/icons/bootstrap.svg index 83455536..984e1f2d 100644 --- a/icons/bootstrap.svg +++ b/icons/bootstrap.svg @@ -1 +1 @@ -Bootstrap icon \ No newline at end of file +Bootstrap \ No newline at end of file diff --git a/icons/bosch.svg b/icons/bosch.svg index 23cc122c..4642efd7 100644 --- a/icons/bosch.svg +++ b/icons/bosch.svg @@ -1 +1 @@ -Bosch icon \ No newline at end of file +Bosch \ No newline at end of file diff --git a/icons/bose.svg b/icons/bose.svg index 6e6a23d7..b4ac891b 100644 --- a/icons/bose.svg +++ b/icons/bose.svg @@ -1 +1 @@ -Bose icon +Bose \ No newline at end of file diff --git a/icons/bower.svg b/icons/bower.svg index ac77628a..5a18151d 100644 --- a/icons/bower.svg +++ b/icons/bower.svg @@ -1 +1 @@ -Bower icon \ No newline at end of file +Bower \ No newline at end of file diff --git a/icons/box.svg b/icons/box.svg index a0bba61d..aa885e67 100644 --- a/icons/box.svg +++ b/icons/box.svg @@ -1 +1 @@ -Box icon +Box \ No newline at end of file diff --git a/icons/brandfolder.svg b/icons/brandfolder.svg index 2a115ac2..84218919 100644 --- a/icons/brandfolder.svg +++ b/icons/brandfolder.svg @@ -1 +1 @@ -Brandfolder icon \ No newline at end of file +Brandfolder \ No newline at end of file diff --git a/icons/brave.svg b/icons/brave.svg index f65e4c3d..fa798a45 100644 --- a/icons/brave.svg +++ b/icons/brave.svg @@ -1 +1 @@ -Brave icon +Brave \ No newline at end of file diff --git a/icons/breaker.svg b/icons/breaker.svg index 15892995..a205a6bc 100644 --- a/icons/breaker.svg +++ b/icons/breaker.svg @@ -1 +1 @@ -Breaker icon \ No newline at end of file +Breaker \ No newline at end of file diff --git a/icons/britishairways.svg b/icons/britishairways.svg index 8cba723b..ad710c50 100644 --- a/icons/britishairways.svg +++ b/icons/britishairways.svg @@ -1 +1 @@ -British Airways icon \ No newline at end of file +British Airways \ No newline at end of file diff --git a/icons/broadcom.svg b/icons/broadcom.svg index 4ef2a6b5..3877dcb6 100644 --- a/icons/broadcom.svg +++ b/icons/broadcom.svg @@ -1 +1 @@ -Broadcom icon +Broadcom \ No newline at end of file diff --git a/icons/bt.svg b/icons/bt.svg index c94a6e46..f2cce7ae 100644 --- a/icons/bt.svg +++ b/icons/bt.svg @@ -1 +1 @@ -BT icon \ No newline at end of file +BT \ No newline at end of file diff --git a/icons/buddy.svg b/icons/buddy.svg index d556dc38..f489c51d 100644 --- a/icons/buddy.svg +++ b/icons/buddy.svg @@ -1 +1 @@ -Buddy icon \ No newline at end of file +Buddy \ No newline at end of file diff --git a/icons/buefy.svg b/icons/buefy.svg index da34664a..6a850b8f 100644 --- a/icons/buefy.svg +++ b/icons/buefy.svg @@ -1 +1 @@ -Buefy icon +Buefy \ No newline at end of file diff --git a/icons/buffer.svg b/icons/buffer.svg index 76e61b3c..1d32104d 100644 --- a/icons/buffer.svg +++ b/icons/buffer.svg @@ -1 +1 @@ -Buffer icon \ No newline at end of file +Buffer \ No newline at end of file diff --git a/icons/bugatti.svg b/icons/bugatti.svg index 84727bef..dff5e40c 100644 --- a/icons/bugatti.svg +++ b/icons/bugatti.svg @@ -1 +1 @@ -Bugatti icon \ No newline at end of file +Bugatti \ No newline at end of file diff --git a/icons/bugcrowd.svg b/icons/bugcrowd.svg index 21692854..2f6e6206 100644 --- a/icons/bugcrowd.svg +++ b/icons/bugcrowd.svg @@ -1 +1 @@ -Bugcrowd icon \ No newline at end of file +Bugcrowd \ No newline at end of file diff --git a/icons/bugsnag.svg b/icons/bugsnag.svg index 3f2242b5..a95c55c3 100644 --- a/icons/bugsnag.svg +++ b/icons/bugsnag.svg @@ -1 +1 @@ -Bugsnag icon +Bugsnag \ No newline at end of file diff --git a/icons/buildkite.svg b/icons/buildkite.svg index d535c873..3330f4a8 100644 --- a/icons/buildkite.svg +++ b/icons/buildkite.svg @@ -1 +1 @@ -Buildkite icon \ No newline at end of file +Buildkite \ No newline at end of file diff --git a/icons/bulma.svg b/icons/bulma.svg index 66f0ebe6..2ba99cfa 100644 --- a/icons/bulma.svg +++ b/icons/bulma.svg @@ -1 +1 @@ -Bulma icon +Bulma \ No newline at end of file diff --git a/icons/bunq.svg b/icons/bunq.svg index 096b4e2f..b62a839b 100644 --- a/icons/bunq.svg +++ b/icons/bunq.svg @@ -1 +1 @@ -bunq icon \ No newline at end of file +bunq \ No newline at end of file diff --git a/icons/buymeacoffee.svg b/icons/buymeacoffee.svg index 6d1e64ba..51878868 100644 --- a/icons/buymeacoffee.svg +++ b/icons/buymeacoffee.svg @@ -1 +1 @@ -Buy Me A Coffee icon \ No newline at end of file +Buy Me A Coffee \ No newline at end of file diff --git a/icons/buzzfeed.svg b/icons/buzzfeed.svg index d9364c3f..2dddb4d6 100644 --- a/icons/buzzfeed.svg +++ b/icons/buzzfeed.svg @@ -1 +1 @@ -BuzzFeed icon \ No newline at end of file +BuzzFeed \ No newline at end of file diff --git a/icons/byte.svg b/icons/byte.svg index c8905195..d705d77f 100644 --- a/icons/byte.svg +++ b/icons/byte.svg @@ -1 +1 @@ -byte icon \ No newline at end of file +byte \ No newline at end of file diff --git a/icons/c.svg b/icons/c.svg index 4a858ca6..fc75a625 100644 --- a/icons/c.svg +++ b/icons/c.svg @@ -1 +1 @@ -C icon \ No newline at end of file +C \ No newline at end of file diff --git a/icons/cachet.svg b/icons/cachet.svg index 5b4e08d0..b863df93 100644 --- a/icons/cachet.svg +++ b/icons/cachet.svg @@ -1 +1 @@ -Cachet icon \ No newline at end of file +Cachet \ No newline at end of file diff --git a/icons/cairometro.svg b/icons/cairometro.svg index bc8edcb5..e72dc786 100644 --- a/icons/cairometro.svg +++ b/icons/cairometro.svg @@ -1 +1 @@ -Cairo Metro icon \ No newline at end of file +Cairo Metro \ No newline at end of file diff --git a/icons/cakephp.svg b/icons/cakephp.svg index 388f1381..34b3a13f 100644 --- a/icons/cakephp.svg +++ b/icons/cakephp.svg @@ -1 +1 @@ -CakePHP icon \ No newline at end of file +CakePHP \ No newline at end of file diff --git a/icons/campaignmonitor.svg b/icons/campaignmonitor.svg index 1d2d8af6..5907816d 100644 --- a/icons/campaignmonitor.svg +++ b/icons/campaignmonitor.svg @@ -1 +1 @@ -Campaign Monitor icon \ No newline at end of file +Campaign Monitor \ No newline at end of file diff --git a/icons/canonical.svg b/icons/canonical.svg index 9bd10389..ea77c7e0 100644 --- a/icons/canonical.svg +++ b/icons/canonical.svg @@ -1 +1 @@ -Canonical icon \ No newline at end of file +Canonical \ No newline at end of file diff --git a/icons/canva.svg b/icons/canva.svg index 4972a5cb..f3d793d0 100644 --- a/icons/canva.svg +++ b/icons/canva.svg @@ -1 +1 @@ -Canva icon \ No newline at end of file +Canva \ No newline at end of file diff --git a/icons/capacitor.svg b/icons/capacitor.svg index 560cd3a2..33ea9bea 100644 --- a/icons/capacitor.svg +++ b/icons/capacitor.svg @@ -1 +1 @@ -Capacitor icon \ No newline at end of file +Capacitor \ No newline at end of file diff --git a/icons/carthrottle.svg b/icons/carthrottle.svg index 1f0b3ffa..c101e051 100644 --- a/icons/carthrottle.svg +++ b/icons/carthrottle.svg @@ -1 +1 @@ -Car Throttle icon \ No newline at end of file +Car Throttle \ No newline at end of file diff --git a/icons/carto.svg b/icons/carto.svg index c6997ce8..ba5111b9 100644 --- a/icons/carto.svg +++ b/icons/carto.svg @@ -1 +1 @@ -Carto icon \ No newline at end of file +Carto \ No newline at end of file diff --git a/icons/cashapp.svg b/icons/cashapp.svg index 76123d4d..59afc91b 100644 --- a/icons/cashapp.svg +++ b/icons/cashapp.svg @@ -1 +1 @@ -Cash App icon \ No newline at end of file +Cash App \ No newline at end of file diff --git a/icons/castbox.svg b/icons/castbox.svg index 878b10ac..134fffd9 100644 --- a/icons/castbox.svg +++ b/icons/castbox.svg @@ -1 +1 @@ -Castbox icon \ No newline at end of file +Castbox \ No newline at end of file diff --git a/icons/castorama.svg b/icons/castorama.svg index 39d3c6d2..fa0d6c73 100644 --- a/icons/castorama.svg +++ b/icons/castorama.svg @@ -1 +1 @@ -Castorama icon \ No newline at end of file +Castorama \ No newline at end of file diff --git a/icons/castro.svg b/icons/castro.svg index 5a921184..6bd03d13 100644 --- a/icons/castro.svg +++ b/icons/castro.svg @@ -1 +1 @@ -Castro icon \ No newline at end of file +Castro \ No newline at end of file diff --git a/icons/caterpillar.svg b/icons/caterpillar.svg index 9c60539d..40e838d7 100644 --- a/icons/caterpillar.svg +++ b/icons/caterpillar.svg @@ -1 +1 @@ -Caterpillar icon \ No newline at end of file +Caterpillar \ No newline at end of file diff --git a/icons/cbs.svg b/icons/cbs.svg index 8980c580..bcc04b2b 100644 --- a/icons/cbs.svg +++ b/icons/cbs.svg @@ -1 +1 @@ -CBS icon \ No newline at end of file +CBS \ No newline at end of file diff --git a/icons/cdprojekt.svg b/icons/cdprojekt.svg index 6e07830d..a37e6fd8 100644 --- a/icons/cdprojekt.svg +++ b/icons/cdprojekt.svg @@ -1 +1 @@ -CD Projekt icon \ No newline at end of file +CD Projekt \ No newline at end of file diff --git a/icons/celery.svg b/icons/celery.svg index 82e41fa7..172d031e 100644 --- a/icons/celery.svg +++ b/icons/celery.svg @@ -1 +1 @@ -Celery icon +Celery \ No newline at end of file diff --git a/icons/centos.svg b/icons/centos.svg index 4d994268..3f16a9e0 100644 --- a/icons/centos.svg +++ b/icons/centos.svg @@ -1 +1 @@ -CentOS icon \ No newline at end of file +CentOS \ No newline at end of file diff --git a/icons/ceph.svg b/icons/ceph.svg index d4aeb83e..f7956664 100644 --- a/icons/ceph.svg +++ b/icons/ceph.svg @@ -1 +1 @@ -Ceph icon \ No newline at end of file +Ceph \ No newline at end of file diff --git a/icons/cesium.svg b/icons/cesium.svg index 42746c48..32d3ced7 100644 --- a/icons/cesium.svg +++ b/icons/cesium.svg @@ -1 +1 @@ -Cesium icon \ No newline at end of file +Cesium \ No newline at end of file diff --git a/icons/chai.svg b/icons/chai.svg index 737e7315..4a5a310d 100644 --- a/icons/chai.svg +++ b/icons/chai.svg @@ -1 +1 @@ -Chai icon \ No newline at end of file +Chai \ No newline at end of file diff --git a/icons/chainlink.svg b/icons/chainlink.svg index fa50fd77..547a2258 100644 --- a/icons/chainlink.svg +++ b/icons/chainlink.svg @@ -1 +1 @@ -Chainlink icon \ No newline at end of file +Chainlink \ No newline at end of file diff --git a/icons/chakraui.svg b/icons/chakraui.svg index 0ac9fce1..ec6e7982 100644 --- a/icons/chakraui.svg +++ b/icons/chakraui.svg @@ -1 +1 @@ -Chakra UI icon \ No newline at end of file +Chakra UI \ No newline at end of file diff --git a/icons/chart-dot-js.svg b/icons/chart-dot-js.svg index f49cc5b4..ff83e7f4 100644 --- a/icons/chart-dot-js.svg +++ b/icons/chart-dot-js.svg @@ -1 +1 @@ -Chart.js icon \ No newline at end of file +Chart.js \ No newline at end of file diff --git a/icons/chartmogul.svg b/icons/chartmogul.svg index a270b9ae..744dc66f 100644 --- a/icons/chartmogul.svg +++ b/icons/chartmogul.svg @@ -1 +1 @@ -ChartMogul icon +ChartMogul \ No newline at end of file diff --git a/icons/chase.svg b/icons/chase.svg index 0ba212fa..57538afc 100644 --- a/icons/chase.svg +++ b/icons/chase.svg @@ -1 +1 @@ -Chase icon \ No newline at end of file +Chase \ No newline at end of file diff --git a/icons/chatbot.svg b/icons/chatbot.svg index cd2cccd5..03a3f11b 100644 --- a/icons/chatbot.svg +++ b/icons/chatbot.svg @@ -1 +1 @@ -ChatBot icon \ No newline at end of file +ChatBot \ No newline at end of file diff --git a/icons/checkio.svg b/icons/checkio.svg index e88aa7f4..e290150b 100644 --- a/icons/checkio.svg +++ b/icons/checkio.svg @@ -1 +1 @@ -CheckiO icon \ No newline at end of file +CheckiO \ No newline at end of file diff --git a/icons/checkmarx.svg b/icons/checkmarx.svg index 48df0fdd..d1185622 100644 --- a/icons/checkmarx.svg +++ b/icons/checkmarx.svg @@ -1 +1 @@ -Checkmarx icon \ No newline at end of file +Checkmarx \ No newline at end of file diff --git a/icons/chef.svg b/icons/chef.svg index e94c9cbc..87080f09 100644 --- a/icons/chef.svg +++ b/icons/chef.svg @@ -1 +1 @@ -Chef icon \ No newline at end of file +Chef \ No newline at end of file diff --git a/icons/chevrolet.svg b/icons/chevrolet.svg index 0827013a..ce88b6cf 100644 --- a/icons/chevrolet.svg +++ b/icons/chevrolet.svg @@ -1 +1 @@ -Chevrolet icon \ No newline at end of file +Chevrolet \ No newline at end of file diff --git a/icons/chinaeasternairlines.svg b/icons/chinaeasternairlines.svg index cce2ee8a..18d3938b 100644 --- a/icons/chinaeasternairlines.svg +++ b/icons/chinaeasternairlines.svg @@ -1 +1 @@ -China Eastern Airlines icon \ No newline at end of file +China Eastern Airlines \ No newline at end of file diff --git a/icons/chinasouthernairlines.svg b/icons/chinasouthernairlines.svg index 45964bdc..c3ef3b15 100644 --- a/icons/chinasouthernairlines.svg +++ b/icons/chinasouthernairlines.svg @@ -1 +1 @@ -China Southern Airlines icon \ No newline at end of file +China Southern Airlines \ No newline at end of file diff --git a/icons/chocolatey.svg b/icons/chocolatey.svg index d143ebe1..3cc55e06 100644 --- a/icons/chocolatey.svg +++ b/icons/chocolatey.svg @@ -1 +1 @@ -Chocolatey icon \ No newline at end of file +Chocolatey \ No newline at end of file diff --git a/icons/chrysler.svg b/icons/chrysler.svg index 879b0cf0..658b2574 100644 --- a/icons/chrysler.svg +++ b/icons/chrysler.svg @@ -1 +1 @@ -Chrysler icon \ No newline at end of file +Chrysler \ No newline at end of file diff --git a/icons/chupachups.svg b/icons/chupachups.svg index ba6e3468..e27a82e9 100644 --- a/icons/chupachups.svg +++ b/icons/chupachups.svg @@ -1 +1 @@ -Chupa Chups icon \ No newline at end of file +Chupa Chups \ No newline at end of file diff --git a/icons/cinema4d.svg b/icons/cinema4d.svg index 7fc51a64..6eae510c 100644 --- a/icons/cinema4d.svg +++ b/icons/cinema4d.svg @@ -1 +1 @@ -Cinema 4D icon \ No newline at end of file +Cinema 4D \ No newline at end of file diff --git a/icons/circle.svg b/icons/circle.svg index b9586b08..d3f2f25c 100644 --- a/icons/circle.svg +++ b/icons/circle.svg @@ -1 +1 @@ -Circle icon \ No newline at end of file +Circle \ No newline at end of file diff --git a/icons/circleci.svg b/icons/circleci.svg index 6e894e8f..9be9cab8 100644 --- a/icons/circleci.svg +++ b/icons/circleci.svg @@ -1 +1 @@ -CircleCI icon \ No newline at end of file +CircleCI \ No newline at end of file diff --git a/icons/cirrusci.svg b/icons/cirrusci.svg index 1da034d9..8f0e4e14 100644 --- a/icons/cirrusci.svg +++ b/icons/cirrusci.svg @@ -1 +1 @@ -Cirrus CI icon \ No newline at end of file +Cirrus CI \ No newline at end of file diff --git a/icons/cisco.svg b/icons/cisco.svg index 17358f1e..bb41aaf5 100644 --- a/icons/cisco.svg +++ b/icons/cisco.svg @@ -1 +1 @@ -Cisco icon \ No newline at end of file +Cisco \ No newline at end of file diff --git a/icons/citrix.svg b/icons/citrix.svg index 8b725cbb..c7d3dda7 100644 --- a/icons/citrix.svg +++ b/icons/citrix.svg @@ -1 +1 @@ -Citrix icon \ No newline at end of file +Citrix \ No newline at end of file diff --git a/icons/citroen.svg b/icons/citroen.svg index 51ba6d4f..9794fcc5 100644 --- a/icons/citroen.svg +++ b/icons/citroen.svg @@ -1 +1 @@ -Citroën icon \ No newline at end of file +Citroën \ No newline at end of file diff --git a/icons/civicrm.svg b/icons/civicrm.svg index f6fdc477..737c3a1b 100644 --- a/icons/civicrm.svg +++ b/icons/civicrm.svg @@ -1 +1 @@ -CiviCRM icon \ No newline at end of file +CiviCRM \ No newline at end of file diff --git a/icons/ckeditor4.svg b/icons/ckeditor4.svg index 876301d6..94659482 100644 --- a/icons/ckeditor4.svg +++ b/icons/ckeditor4.svg @@ -1 +1 @@ -CKEditor 4 icon \ No newline at end of file +CKEditor 4 \ No newline at end of file diff --git a/icons/claris.svg b/icons/claris.svg index b7311244..c151f1be 100644 --- a/icons/claris.svg +++ b/icons/claris.svg @@ -1 +1 @@ -Claris icon +Claris \ No newline at end of file diff --git a/icons/clickup.svg b/icons/clickup.svg index e1abd713..4bf99cfd 100644 --- a/icons/clickup.svg +++ b/icons/clickup.svg @@ -1 +1 @@ -ClickUp icon \ No newline at end of file +ClickUp \ No newline at end of file diff --git a/icons/clion.svg b/icons/clion.svg index 6c236321..2194f93e 100644 --- a/icons/clion.svg +++ b/icons/clion.svg @@ -1 +1 @@ -CLion icon \ No newline at end of file +CLion \ No newline at end of file diff --git a/icons/cliqz.svg b/icons/cliqz.svg index f219b2c6..7ed25af1 100644 --- a/icons/cliqz.svg +++ b/icons/cliqz.svg @@ -1 +1 @@ -Cliqz icon \ No newline at end of file +Cliqz \ No newline at end of file diff --git a/icons/clockify.svg b/icons/clockify.svg index 7d4b07d8..3a0162e7 100644 --- a/icons/clockify.svg +++ b/icons/clockify.svg @@ -1 +1 @@ -Clockify icon \ No newline at end of file +Clockify \ No newline at end of file diff --git a/icons/clojure.svg b/icons/clojure.svg index 3c077364..4513b0a5 100644 --- a/icons/clojure.svg +++ b/icons/clojure.svg @@ -1 +1 @@ -Clojure icon \ No newline at end of file +Clojure \ No newline at end of file diff --git a/icons/cloud66.svg b/icons/cloud66.svg index bfa17de6..23a86a32 100644 --- a/icons/cloud66.svg +++ b/icons/cloud66.svg @@ -1 +1 @@ -Cloud 66 icon \ No newline at end of file +Cloud 66 \ No newline at end of file diff --git a/icons/cloudbees.svg b/icons/cloudbees.svg index de26d32a..2bd0a4ca 100644 --- a/icons/cloudbees.svg +++ b/icons/cloudbees.svg @@ -1 +1 @@ -CloudBees icon \ No newline at end of file +CloudBees \ No newline at end of file diff --git a/icons/cloudcannon.svg b/icons/cloudcannon.svg index d5c033d6..823abccd 100644 --- a/icons/cloudcannon.svg +++ b/icons/cloudcannon.svg @@ -1 +1 @@ -CloudCannon icon \ No newline at end of file +CloudCannon \ No newline at end of file diff --git a/icons/cloudera.svg b/icons/cloudera.svg index 05057f2d..d561a713 100644 --- a/icons/cloudera.svg +++ b/icons/cloudera.svg @@ -1 +1 @@ -Cloudera icon \ No newline at end of file +Cloudera \ No newline at end of file diff --git a/icons/cloudflare.svg b/icons/cloudflare.svg index 49011800..a1cf2d6d 100644 --- a/icons/cloudflare.svg +++ b/icons/cloudflare.svg @@ -1 +1 @@ -Cloudflare icon \ No newline at end of file +Cloudflare \ No newline at end of file diff --git a/icons/cloudsmith.svg b/icons/cloudsmith.svg index 7f23b16b..220591c5 100644 --- a/icons/cloudsmith.svg +++ b/icons/cloudsmith.svg @@ -1 +1 @@ -Cloudsmith icon +Cloudsmith \ No newline at end of file diff --git a/icons/cloudways.svg b/icons/cloudways.svg index 43d1e43e..af0d75fa 100644 --- a/icons/cloudways.svg +++ b/icons/cloudways.svg @@ -1 +1 @@ -Cloudways icon \ No newline at end of file +Cloudways \ No newline at end of file diff --git a/icons/clubhouse.svg b/icons/clubhouse.svg index 73aaf2f0..430a9693 100644 --- a/icons/clubhouse.svg +++ b/icons/clubhouse.svg @@ -1 +1 @@ -Clubhouse icon \ No newline at end of file +Clubhouse \ No newline at end of file diff --git a/icons/clyp.svg b/icons/clyp.svg index 0c8868b6..c5a5cd3a 100644 --- a/icons/clyp.svg +++ b/icons/clyp.svg @@ -1 +1 @@ -Clyp icon \ No newline at end of file +Clyp \ No newline at end of file diff --git a/icons/cmake.svg b/icons/cmake.svg index f55f1c70..3ccdced2 100644 --- a/icons/cmake.svg +++ b/icons/cmake.svg @@ -1 +1 @@ -CMake icon \ No newline at end of file +CMake \ No newline at end of file diff --git a/icons/cnn.svg b/icons/cnn.svg index 5eccff4b..dda05aa0 100644 --- a/icons/cnn.svg +++ b/icons/cnn.svg @@ -1 +1 @@ -CNN icon \ No newline at end of file +CNN \ No newline at end of file diff --git a/icons/co-op.svg b/icons/co-op.svg index 3e32d71f..e3636e45 100644 --- a/icons/co-op.svg +++ b/icons/co-op.svg @@ -1 +1 @@ -Co-op icon \ No newline at end of file +Co-op \ No newline at end of file diff --git a/icons/cockroachlabs.svg b/icons/cockroachlabs.svg index 82175056..df09a0f9 100644 --- a/icons/cockroachlabs.svg +++ b/icons/cockroachlabs.svg @@ -1 +1 @@ -Cockroach Labs icon \ No newline at end of file +Cockroach Labs \ No newline at end of file diff --git a/icons/cocoapods.svg b/icons/cocoapods.svg index 56f0a0cd..48ff39db 100644 --- a/icons/cocoapods.svg +++ b/icons/cocoapods.svg @@ -1 +1 @@ -CocoaPods icon +CocoaPods \ No newline at end of file diff --git a/icons/cocos.svg b/icons/cocos.svg index b7dc9cef..9662c939 100644 --- a/icons/cocos.svg +++ b/icons/cocos.svg @@ -1 +1 @@ -Cocos icon \ No newline at end of file +Cocos \ No newline at end of file diff --git a/icons/coda.svg b/icons/coda.svg index ff916e60..5d061565 100644 --- a/icons/coda.svg +++ b/icons/coda.svg @@ -1 +1 @@ -Coda icon \ No newline at end of file +Coda \ No newline at end of file diff --git a/icons/codacy.svg b/icons/codacy.svg index 6791c456..f2a939b2 100644 --- a/icons/codacy.svg +++ b/icons/codacy.svg @@ -1 +1 @@ -Codacy icon \ No newline at end of file +Codacy \ No newline at end of file diff --git a/icons/codeberg.svg b/icons/codeberg.svg index 3334b58f..c5605798 100644 --- a/icons/codeberg.svg +++ b/icons/codeberg.svg @@ -1 +1 @@ -Codeberg icon \ No newline at end of file +Codeberg \ No newline at end of file diff --git a/icons/codecademy.svg b/icons/codecademy.svg index ac630d48..3d845b77 100644 --- a/icons/codecademy.svg +++ b/icons/codecademy.svg @@ -1 +1 @@ -Codecademy icon \ No newline at end of file +Codecademy \ No newline at end of file diff --git a/icons/codeceptjs.svg b/icons/codeceptjs.svg index f4e1b677..b4832329 100644 --- a/icons/codeceptjs.svg +++ b/icons/codeceptjs.svg @@ -1 +1 @@ -CodeceptJS icon \ No newline at end of file +CodeceptJS \ No newline at end of file diff --git a/icons/codechef.svg b/icons/codechef.svg index 95f1b8ed..80b79122 100644 --- a/icons/codechef.svg +++ b/icons/codechef.svg @@ -1 +1 @@ -CodeChef icon \ No newline at end of file +CodeChef \ No newline at end of file diff --git a/icons/codeclimate.svg b/icons/codeclimate.svg index edfe8b51..9a38cd69 100644 --- a/icons/codeclimate.svg +++ b/icons/codeclimate.svg @@ -1 +1 @@ -Code Climate icon \ No newline at end of file +Code Climate \ No newline at end of file diff --git a/icons/codecov.svg b/icons/codecov.svg index 2a9b8135..bbf7b7ee 100644 --- a/icons/codecov.svg +++ b/icons/codecov.svg @@ -1 +1 @@ -Codecov icon \ No newline at end of file +Codecov \ No newline at end of file diff --git a/icons/codefactor.svg b/icons/codefactor.svg index ca1f8c54..c221566c 100644 --- a/icons/codefactor.svg +++ b/icons/codefactor.svg @@ -1 +1 @@ -CodeFactor icon \ No newline at end of file +CodeFactor \ No newline at end of file diff --git a/icons/codeforces.svg b/icons/codeforces.svg index 08038bf4..8e66761c 100644 --- a/icons/codeforces.svg +++ b/icons/codeforces.svg @@ -1 +1 @@ -Codeforces icon \ No newline at end of file +Codeforces \ No newline at end of file diff --git a/icons/codeigniter.svg b/icons/codeigniter.svg index 51a0e34e..8ab9c67e 100644 --- a/icons/codeigniter.svg +++ b/icons/codeigniter.svg @@ -1 +1 @@ -CodeIgniter icon \ No newline at end of file +CodeIgniter \ No newline at end of file diff --git a/icons/codemagic.svg b/icons/codemagic.svg index 48eb50e3..ecd2edd4 100644 --- a/icons/codemagic.svg +++ b/icons/codemagic.svg @@ -1 +1 @@ -Codemagic icon \ No newline at end of file +Codemagic \ No newline at end of file diff --git a/icons/codemirror.svg b/icons/codemirror.svg index eddddd01..0b71c8f4 100644 --- a/icons/codemirror.svg +++ b/icons/codemirror.svg @@ -1 +1 @@ -CodeMirror icon \ No newline at end of file +CodeMirror \ No newline at end of file diff --git a/icons/codenewbie.svg b/icons/codenewbie.svg index b6d36b2d..65db2b07 100644 --- a/icons/codenewbie.svg +++ b/icons/codenewbie.svg @@ -1 +1 @@ -CodeNewbie icon \ No newline at end of file +CodeNewbie \ No newline at end of file diff --git a/icons/codepen.svg b/icons/codepen.svg index 4822430e..fe0a22e6 100644 --- a/icons/codepen.svg +++ b/icons/codepen.svg @@ -1 +1 @@ -CodePen icon +CodePen \ No newline at end of file diff --git a/icons/codeproject.svg b/icons/codeproject.svg index 3cbc0e9c..463c98ea 100644 --- a/icons/codeproject.svg +++ b/icons/codeproject.svg @@ -1 +1 @@ -CodeProject icon \ No newline at end of file +CodeProject \ No newline at end of file diff --git a/icons/codersrank.svg b/icons/codersrank.svg index 6eb493ad..8824f37d 100644 --- a/icons/codersrank.svg +++ b/icons/codersrank.svg @@ -1 +1 @@ -CodersRank icon \ No newline at end of file +CodersRank \ No newline at end of file diff --git a/icons/coderwall.svg b/icons/coderwall.svg index 1976a818..5cb88445 100644 --- a/icons/coderwall.svg +++ b/icons/coderwall.svg @@ -1 +1 @@ -Coderwall icon \ No newline at end of file +Coderwall \ No newline at end of file diff --git a/icons/codesandbox.svg b/icons/codesandbox.svg index 7549ff1d..97040881 100644 --- a/icons/codesandbox.svg +++ b/icons/codesandbox.svg @@ -1 +1 @@ -CodeSandbox icon \ No newline at end of file +CodeSandbox \ No newline at end of file diff --git a/icons/codeship.svg b/icons/codeship.svg index a41a50a0..30df1e00 100644 --- a/icons/codeship.svg +++ b/icons/codeship.svg @@ -1 +1 @@ -Codeship icon \ No newline at end of file +Codeship \ No newline at end of file diff --git a/icons/codewars.svg b/icons/codewars.svg index da906477..26133027 100644 --- a/icons/codewars.svg +++ b/icons/codewars.svg @@ -1 +1 @@ -Codewars icon \ No newline at end of file +Codewars \ No newline at end of file diff --git a/icons/codingame.svg b/icons/codingame.svg index 8c32b2b6..4ec557cc 100644 --- a/icons/codingame.svg +++ b/icons/codingame.svg @@ -1 +1 @@ -CodinGame icon \ No newline at end of file +CodinGame \ No newline at end of file diff --git a/icons/codingninjas.svg b/icons/codingninjas.svg index d9502707..e795c95c 100644 --- a/icons/codingninjas.svg +++ b/icons/codingninjas.svg @@ -1 +1 @@ -Coding Ninjas icon \ No newline at end of file +Coding Ninjas \ No newline at end of file diff --git a/icons/codio.svg b/icons/codio.svg index 76102f9d..6d86eefc 100644 --- a/icons/codio.svg +++ b/icons/codio.svg @@ -1 +1 @@ -Codio icon \ No newline at end of file +Codio \ No newline at end of file diff --git a/icons/coffeescript.svg b/icons/coffeescript.svg index 67cac871..3ed39af0 100644 --- a/icons/coffeescript.svg +++ b/icons/coffeescript.svg @@ -1 +1 @@ -CoffeeScript icon \ No newline at end of file +CoffeeScript \ No newline at end of file diff --git a/icons/cognizant.svg b/icons/cognizant.svg index 98ebe69a..466e5689 100644 --- a/icons/cognizant.svg +++ b/icons/cognizant.svg @@ -1 +1 @@ -Cognizant icon \ No newline at end of file +Cognizant \ No newline at end of file diff --git a/icons/coinbase.svg b/icons/coinbase.svg index f0ab1814..c3ed947a 100644 --- a/icons/coinbase.svg +++ b/icons/coinbase.svg @@ -1 +1 @@ -Coinbase icon \ No newline at end of file +Coinbase \ No newline at end of file diff --git a/icons/commerzbank.svg b/icons/commerzbank.svg index bad71146..e4737753 100644 --- a/icons/commerzbank.svg +++ b/icons/commerzbank.svg @@ -1 +1 @@ -Commerzbank icon \ No newline at end of file +Commerzbank \ No newline at end of file diff --git a/icons/commonworkflowlanguage.svg b/icons/commonworkflowlanguage.svg index 8bf8375a..3a672c1c 100644 --- a/icons/commonworkflowlanguage.svg +++ b/icons/commonworkflowlanguage.svg @@ -1 +1 @@ -Common Workflow Language icon \ No newline at end of file +Common Workflow Language \ No newline at end of file diff --git a/icons/composer.svg b/icons/composer.svg index d104aa5f..37d98a70 100644 --- a/icons/composer.svg +++ b/icons/composer.svg @@ -1 +1 @@ -Composer icon \ No newline at end of file +Composer \ No newline at end of file diff --git a/icons/concourse.svg b/icons/concourse.svg index 0bcef4d6..b9debfa3 100644 --- a/icons/concourse.svg +++ b/icons/concourse.svg @@ -1 +1 @@ -Concourse icon +Concourse \ No newline at end of file diff --git a/icons/conda-forge.svg b/icons/conda-forge.svg index f058664c..ec64ca58 100644 --- a/icons/conda-forge.svg +++ b/icons/conda-forge.svg @@ -1 +1 @@ -Conda-Forge icon \ No newline at end of file +Conda-Forge \ No newline at end of file diff --git a/icons/conekta.svg b/icons/conekta.svg index 6c51a92a..87507e69 100644 --- a/icons/conekta.svg +++ b/icons/conekta.svg @@ -1 +1 @@ -Conekta icon \ No newline at end of file +Conekta \ No newline at end of file diff --git a/icons/confluence.svg b/icons/confluence.svg index c5dcde6b..2ac98a7d 100644 --- a/icons/confluence.svg +++ b/icons/confluence.svg @@ -1 +1 @@ -Confluence icon \ No newline at end of file +Confluence \ No newline at end of file diff --git a/icons/consul.svg b/icons/consul.svg index b4a99c3e..ffbc5800 100644 --- a/icons/consul.svg +++ b/icons/consul.svg @@ -1 +1 @@ -Consul icon \ No newline at end of file +Consul \ No newline at end of file diff --git a/icons/contactlesspayment.svg b/icons/contactlesspayment.svg index 17cc15d1..46d53f13 100644 --- a/icons/contactlesspayment.svg +++ b/icons/contactlesspayment.svg @@ -1 +1 @@ -Contactless Payment icon \ No newline at end of file +Contactless Payment \ No newline at end of file diff --git a/icons/contentful.svg b/icons/contentful.svg index b33720e9..0d506be5 100644 --- a/icons/contentful.svg +++ b/icons/contentful.svg @@ -1 +1 @@ -Contentful icon \ No newline at end of file +Contentful \ No newline at end of file diff --git a/icons/convertio.svg b/icons/convertio.svg index 36394fef..d7573188 100644 --- a/icons/convertio.svg +++ b/icons/convertio.svg @@ -1 +1 @@ -Convertio icon +Convertio \ No newline at end of file diff --git a/icons/cookiecutter.svg b/icons/cookiecutter.svg index 2f77ff8e..2aeab884 100644 --- a/icons/cookiecutter.svg +++ b/icons/cookiecutter.svg @@ -1 +1 @@ -Cookiecutter icon \ No newline at end of file +Cookiecutter \ No newline at end of file diff --git a/icons/coronaengine.svg b/icons/coronaengine.svg index a771080a..ca69ef20 100644 --- a/icons/coronaengine.svg +++ b/icons/coronaengine.svg @@ -1 +1 @@ -Corona Engine icon \ No newline at end of file +Corona Engine \ No newline at end of file diff --git a/icons/coronarenderer.svg b/icons/coronarenderer.svg index bcb86725..ec56ac71 100644 --- a/icons/coronarenderer.svg +++ b/icons/coronarenderer.svg @@ -1 +1 @@ -Corona Renderer icon \ No newline at end of file +Corona Renderer \ No newline at end of file diff --git a/icons/corsair.svg b/icons/corsair.svg index 1932d5e8..0af8d45e 100644 --- a/icons/corsair.svg +++ b/icons/corsair.svg @@ -1 +1 @@ -Corsair icon \ No newline at end of file +Corsair \ No newline at end of file diff --git a/icons/couchbase.svg b/icons/couchbase.svg index 4d26f3ab..a33597e4 100644 --- a/icons/couchbase.svg +++ b/icons/couchbase.svg @@ -1 +1 @@ -Couchbase icon \ No newline at end of file +Couchbase \ No newline at end of file diff --git a/icons/counter-strike.svg b/icons/counter-strike.svg index 8d755a38..eed35f12 100644 --- a/icons/counter-strike.svg +++ b/icons/counter-strike.svg @@ -1 +1 @@ -Counter-Strike icon \ No newline at end of file +Counter-Strike \ No newline at end of file diff --git a/icons/countingworkspro.svg b/icons/countingworkspro.svg index f092030d..86498fa5 100644 --- a/icons/countingworkspro.svg +++ b/icons/countingworkspro.svg @@ -1 +1 @@ -CountingWorks PRO icon \ No newline at end of file +CountingWorks PRO \ No newline at end of file diff --git a/icons/coursera.svg b/icons/coursera.svg index a52b3c81..fe9674b2 100644 --- a/icons/coursera.svg +++ b/icons/coursera.svg @@ -1 +1 @@ -Coursera icon \ No newline at end of file +Coursera \ No newline at end of file diff --git a/icons/coveralls.svg b/icons/coveralls.svg index c030f30b..28e1c27d 100644 --- a/icons/coveralls.svg +++ b/icons/coveralls.svg @@ -1 +1 @@ -Coveralls icon \ No newline at end of file +Coveralls \ No newline at end of file diff --git a/icons/cpanel.svg b/icons/cpanel.svg index cc92f1d1..7024ab6d 100644 --- a/icons/cpanel.svg +++ b/icons/cpanel.svg @@ -1 +1 @@ -cPanel icon +cPanel \ No newline at end of file diff --git a/icons/cplusplus.svg b/icons/cplusplus.svg index ead57793..fe2f58d6 100644 --- a/icons/cplusplus.svg +++ b/icons/cplusplus.svg @@ -1 +1 @@ -C++ icon \ No newline at end of file +C++ \ No newline at end of file diff --git a/icons/craftcms.svg b/icons/craftcms.svg index 9abad3ae..aca75721 100644 --- a/icons/craftcms.svg +++ b/icons/craftcms.svg @@ -1 +1 @@ -Craft CMS icon \ No newline at end of file +Craft CMS \ No newline at end of file diff --git a/icons/creativecommons.svg b/icons/creativecommons.svg index c9cc3e95..2fde5e74 100644 --- a/icons/creativecommons.svg +++ b/icons/creativecommons.svg @@ -1 +1 @@ -Creative Commons icon \ No newline at end of file +Creative Commons \ No newline at end of file diff --git a/icons/crehana.svg b/icons/crehana.svg index c4fad6e9..d44da96c 100644 --- a/icons/crehana.svg +++ b/icons/crehana.svg @@ -1 +1 @@ -Crehana icon \ No newline at end of file +Crehana \ No newline at end of file diff --git a/icons/crowdin.svg b/icons/crowdin.svg index 48d0688a..174c67f5 100644 --- a/icons/crowdin.svg +++ b/icons/crowdin.svg @@ -1 +1 @@ -Crowdin icon \ No newline at end of file +Crowdin \ No newline at end of file diff --git a/icons/crowdsource.svg b/icons/crowdsource.svg index ef244654..8f9df638 100644 --- a/icons/crowdsource.svg +++ b/icons/crowdsource.svg @@ -1 +1 @@ -Crowdsource icon \ No newline at end of file +Crowdsource \ No newline at end of file diff --git a/icons/crunchbase.svg b/icons/crunchbase.svg index 6344737c..07ecb4dd 100644 --- a/icons/crunchbase.svg +++ b/icons/crunchbase.svg @@ -1 +1 @@ -Crunchbase icon \ No newline at end of file +Crunchbase \ No newline at end of file diff --git a/icons/crunchyroll.svg b/icons/crunchyroll.svg index 059127b4..4137666e 100644 --- a/icons/crunchyroll.svg +++ b/icons/crunchyroll.svg @@ -1 +1 @@ -Crunchyroll icon \ No newline at end of file +Crunchyroll \ No newline at end of file diff --git a/icons/cryengine.svg b/icons/cryengine.svg index 81e3ae51..06fdf24e 100644 --- a/icons/cryengine.svg +++ b/icons/cryengine.svg @@ -1 +1 @@ -CRYENGINE icon \ No newline at end of file +CRYENGINE \ No newline at end of file diff --git a/icons/crystal.svg b/icons/crystal.svg index 8f581bc8..760325a1 100644 --- a/icons/crystal.svg +++ b/icons/crystal.svg @@ -1 +1 @@ -Crystal icon \ No newline at end of file +Crystal \ No newline at end of file diff --git a/icons/csharp.svg b/icons/csharp.svg index 4de9730f..7da05180 100644 --- a/icons/csharp.svg +++ b/icons/csharp.svg @@ -1 +1 @@ -C Sharp icon \ No newline at end of file +C Sharp \ No newline at end of file diff --git a/icons/css3.svg b/icons/css3.svg index 2f54be88..5ca6bec6 100644 --- a/icons/css3.svg +++ b/icons/css3.svg @@ -1 +1 @@ -CSS3 icon \ No newline at end of file +CSS3 \ No newline at end of file diff --git a/icons/csswizardry.svg b/icons/csswizardry.svg index 8a1cbf11..8324db46 100644 --- a/icons/csswizardry.svg +++ b/icons/csswizardry.svg @@ -1 +1 @@ -CSS Wizardry icon \ No newline at end of file +CSS Wizardry \ No newline at end of file diff --git a/icons/cucumber.svg b/icons/cucumber.svg index 1ca2d918..ea34ddfc 100644 --- a/icons/cucumber.svg +++ b/icons/cucumber.svg @@ -1 +1 @@ -Cucumber icon \ No newline at end of file +Cucumber \ No newline at end of file diff --git a/icons/curl.svg b/icons/curl.svg index ebf5545c..577e2a32 100644 --- a/icons/curl.svg +++ b/icons/curl.svg @@ -1 +1 @@ -curl icon \ No newline at end of file +curl \ No newline at end of file diff --git a/icons/curseforge.svg b/icons/curseforge.svg index 875ca58b..997d5f9d 100644 --- a/icons/curseforge.svg +++ b/icons/curseforge.svg @@ -1 +1 @@ -CurseForge icon \ No newline at end of file +CurseForge \ No newline at end of file diff --git a/icons/cycling74.svg b/icons/cycling74.svg index 8b7f0b16..095bed62 100644 --- a/icons/cycling74.svg +++ b/icons/cycling74.svg @@ -1 +1 @@ -Cycling '74 icon \ No newline at end of file +Cycling '74 \ No newline at end of file diff --git a/icons/cypress.svg b/icons/cypress.svg index fcd92bc4..96ac3328 100644 --- a/icons/cypress.svg +++ b/icons/cypress.svg @@ -1 +1 @@ -Cypress icon \ No newline at end of file +Cypress \ No newline at end of file diff --git a/icons/d-wavesystems.svg b/icons/d-wavesystems.svg index cd72e298..033f6c27 100644 --- a/icons/d-wavesystems.svg +++ b/icons/d-wavesystems.svg @@ -1 +1 @@ -D-Wave Systems icon +D-Wave Systems \ No newline at end of file diff --git a/icons/d3-dot-js.svg b/icons/d3-dot-js.svg index 0ea59ad3..4b030e88 100644 --- a/icons/d3-dot-js.svg +++ b/icons/d3-dot-js.svg @@ -1 +1 @@ -D3.js icon \ No newline at end of file +D3.js \ No newline at end of file diff --git a/icons/dacia.svg b/icons/dacia.svg index cbe4e4da..c482cc3e 100644 --- a/icons/dacia.svg +++ b/icons/dacia.svg @@ -1 +1 @@ -Dacia icon \ No newline at end of file +Dacia \ No newline at end of file diff --git a/icons/daf.svg b/icons/daf.svg index eff55c15..bdf03abe 100644 --- a/icons/daf.svg +++ b/icons/daf.svg @@ -1 +1 @@ -DAF icon \ No newline at end of file +DAF \ No newline at end of file diff --git a/icons/dailymotion.svg b/icons/dailymotion.svg index fc166672..7afeaca1 100644 --- a/icons/dailymotion.svg +++ b/icons/dailymotion.svg @@ -1 +1 @@ -Dailymotion icon \ No newline at end of file +Dailymotion \ No newline at end of file diff --git a/icons/daimler.svg b/icons/daimler.svg index 1e62eb80..2ed8203c 100644 --- a/icons/daimler.svg +++ b/icons/daimler.svg @@ -1 +1 @@ -Daimler icon \ No newline at end of file +Daimler \ No newline at end of file diff --git a/icons/darkreader.svg b/icons/darkreader.svg index 0119da00..e2a8240a 100644 --- a/icons/darkreader.svg +++ b/icons/darkreader.svg @@ -1 +1 @@ -Dark Reader icon +Dark Reader \ No newline at end of file diff --git a/icons/dart.svg b/icons/dart.svg index 9df69e82..9f319669 100644 --- a/icons/dart.svg +++ b/icons/dart.svg @@ -1 +1 @@ -Dart icon \ No newline at end of file +Dart \ No newline at end of file diff --git a/icons/daserste.svg b/icons/daserste.svg index e3ac4a9d..a13c8097 100644 --- a/icons/daserste.svg +++ b/icons/daserste.svg @@ -1 +1 @@ -Das Erste icon +Das Erste \ No newline at end of file diff --git a/icons/dash.svg b/icons/dash.svg index 01757c22..475e0ac3 100644 --- a/icons/dash.svg +++ b/icons/dash.svg @@ -1 +1 @@ -Dash icon \ No newline at end of file +Dash \ No newline at end of file diff --git a/icons/dashlane.svg b/icons/dashlane.svg index dc87c3e6..9d7be379 100644 --- a/icons/dashlane.svg +++ b/icons/dashlane.svg @@ -1 +1 @@ -Dashlane icon \ No newline at end of file +Dashlane \ No newline at end of file diff --git a/icons/dassaultsystemes.svg b/icons/dassaultsystemes.svg index 93bbac05..0a6e8cbb 100644 --- a/icons/dassaultsystemes.svg +++ b/icons/dassaultsystemes.svg @@ -1 +1 @@ -Dassault Systèmes icon \ No newline at end of file +Dassault Systèmes \ No newline at end of file diff --git a/icons/databricks.svg b/icons/databricks.svg index 11566b5c..bdb6e414 100644 --- a/icons/databricks.svg +++ b/icons/databricks.svg @@ -1 +1 @@ -Databricks icon \ No newline at end of file +Databricks \ No newline at end of file diff --git a/icons/datacamp.svg b/icons/datacamp.svg index c5e3dee1..a195155e 100644 --- a/icons/datacamp.svg +++ b/icons/datacamp.svg @@ -1 +1 @@ -DataCamp icon \ No newline at end of file +DataCamp \ No newline at end of file diff --git a/icons/datadog.svg b/icons/datadog.svg index e19b9d5f..fafc6d5c 100644 --- a/icons/datadog.svg +++ b/icons/datadog.svg @@ -1 +1 @@ -Datadog icon \ No newline at end of file +Datadog \ No newline at end of file diff --git a/icons/datastax.svg b/icons/datastax.svg index d0c9dd1f..9fa21987 100644 --- a/icons/datastax.svg +++ b/icons/datastax.svg @@ -1 +1 @@ -DataStax icon \ No newline at end of file +DataStax \ No newline at end of file diff --git a/icons/dataversioncontrol.svg b/icons/dataversioncontrol.svg index fe1ba6b6..65836f7c 100644 --- a/icons/dataversioncontrol.svg +++ b/icons/dataversioncontrol.svg @@ -1 +1 @@ -Data Version Control icon \ No newline at end of file +Data Version Control \ No newline at end of file diff --git a/icons/datocms.svg b/icons/datocms.svg index f9d46dde..e9a431a2 100644 --- a/icons/datocms.svg +++ b/icons/datocms.svg @@ -1 +1 @@ -DatoCMS icon \ No newline at end of file +DatoCMS \ No newline at end of file diff --git a/icons/datto.svg b/icons/datto.svg index 4fc4c895..b8c53f67 100644 --- a/icons/datto.svg +++ b/icons/datto.svg @@ -1 +1 @@ -Datto icon \ No newline at end of file +Datto \ No newline at end of file diff --git a/icons/dazn.svg b/icons/dazn.svg index 5e5d8507..7214af55 100644 --- a/icons/dazn.svg +++ b/icons/dazn.svg @@ -1 +1 @@ -DAZN icon \ No newline at end of file +DAZN \ No newline at end of file diff --git a/icons/dblp.svg b/icons/dblp.svg index a7607807..a78109c0 100644 --- a/icons/dblp.svg +++ b/icons/dblp.svg @@ -1 +1 @@ -dblp icon \ No newline at end of file +dblp \ No newline at end of file diff --git a/icons/dcentertainment.svg b/icons/dcentertainment.svg index 926ff15e..99b022ad 100644 --- a/icons/dcentertainment.svg +++ b/icons/dcentertainment.svg @@ -1 +1 @@ -DC Entertainment icon +DC Entertainment \ No newline at end of file diff --git a/icons/debian.svg b/icons/debian.svg index cf619ba8..6e4be6a7 100644 --- a/icons/debian.svg +++ b/icons/debian.svg @@ -1 +1 @@ -Debian icon \ No newline at end of file +Debian \ No newline at end of file diff --git a/icons/deepin.svg b/icons/deepin.svg index 9acf92a0..2a5fbca2 100644 --- a/icons/deepin.svg +++ b/icons/deepin.svg @@ -1 +1 @@ -deepin icon \ No newline at end of file +deepin \ No newline at end of file diff --git a/icons/deepnote.svg b/icons/deepnote.svg index f6eee835..82ea57d5 100644 --- a/icons/deepnote.svg +++ b/icons/deepnote.svg @@ -1 +1 @@ -Deepnote icon \ No newline at end of file +Deepnote \ No newline at end of file diff --git a/icons/deezer.svg b/icons/deezer.svg index 26763458..73ee172e 100644 --- a/icons/deezer.svg +++ b/icons/deezer.svg @@ -1 +1 @@ -Deezer icon +Deezer \ No newline at end of file diff --git a/icons/delicious.svg b/icons/delicious.svg index 504ed01b..b58a23d6 100644 --- a/icons/delicious.svg +++ b/icons/delicious.svg @@ -1 +1 @@ -del.icio.us icon +del.icio.us \ No newline at end of file diff --git a/icons/deliveroo.svg b/icons/deliveroo.svg index cf1674fc..11b3e38a 100644 --- a/icons/deliveroo.svg +++ b/icons/deliveroo.svg @@ -1 +1 @@ -Deliveroo icon +Deliveroo \ No newline at end of file diff --git a/icons/dell.svg b/icons/dell.svg index a1fa1e8a..d272bbf6 100644 --- a/icons/dell.svg +++ b/icons/dell.svg @@ -1 +1 @@ -Dell icon \ No newline at end of file +Dell \ No newline at end of file diff --git a/icons/delonghi.svg b/icons/delonghi.svg index 38e98888..89859aaf 100644 --- a/icons/delonghi.svg +++ b/icons/delonghi.svg @@ -1 +1 @@ -De'Longhi icon \ No newline at end of file +De'Longhi \ No newline at end of file diff --git a/icons/delphi.svg b/icons/delphi.svg index 4c25508d..954bd082 100644 --- a/icons/delphi.svg +++ b/icons/delphi.svg @@ -1 +1 @@ -Delphi icon \ No newline at end of file +Delphi \ No newline at end of file diff --git a/icons/delta.svg b/icons/delta.svg index 29883728..336c5493 100644 --- a/icons/delta.svg +++ b/icons/delta.svg @@ -1 +1 @@ -Delta icon \ No newline at end of file +Delta \ No newline at end of file diff --git a/icons/deno.svg b/icons/deno.svg index 365e844e..f58d7e07 100644 --- a/icons/deno.svg +++ b/icons/deno.svg @@ -1 +1 @@ -Deno icon \ No newline at end of file +Deno \ No newline at end of file diff --git a/icons/dependabot.svg b/icons/dependabot.svg index 198813a6..f06b4a2a 100644 --- a/icons/dependabot.svg +++ b/icons/dependabot.svg @@ -1 +1 @@ -Dependabot icon \ No newline at end of file +Dependabot \ No newline at end of file diff --git a/icons/derspiegel.svg b/icons/derspiegel.svg index 7a82bfb9..8c34d363 100644 --- a/icons/derspiegel.svg +++ b/icons/derspiegel.svg @@ -1 +1 @@ -Der Spiegel icon \ No newline at end of file +Der Spiegel \ No newline at end of file diff --git a/icons/designernews.svg b/icons/designernews.svg index 52c9c20b..276f0ca6 100644 --- a/icons/designernews.svg +++ b/icons/designernews.svg @@ -1 +1 @@ -Designer News icon \ No newline at end of file +Designer News \ No newline at end of file diff --git a/icons/deutschebahn.svg b/icons/deutschebahn.svg index 397f8d19..306651b7 100644 --- a/icons/deutschebahn.svg +++ b/icons/deutschebahn.svg @@ -1 +1 @@ -Deutsche Bahn icon \ No newline at end of file +Deutsche Bahn \ No newline at end of file diff --git a/icons/deutschebank.svg b/icons/deutschebank.svg index e272e3b2..e5ab4cc5 100644 --- a/icons/deutschebank.svg +++ b/icons/deutschebank.svg @@ -1 +1 @@ -Deutsche Bank icon \ No newline at end of file +Deutsche Bank \ No newline at end of file diff --git a/icons/dev-dot-to.svg b/icons/dev-dot-to.svg index 2743eaad..e4b18cf4 100644 --- a/icons/dev-dot-to.svg +++ b/icons/dev-dot-to.svg @@ -1 +1 @@ -dev.to icon \ No newline at end of file +dev.to \ No newline at end of file diff --git a/icons/deviantart.svg b/icons/deviantart.svg index 1988745a..a09418cf 100644 --- a/icons/deviantart.svg +++ b/icons/deviantart.svg @@ -1 +1 @@ -DeviantArt icon \ No newline at end of file +DeviantArt \ No newline at end of file diff --git a/icons/devpost.svg b/icons/devpost.svg index e6340d41..db5bc40f 100644 --- a/icons/devpost.svg +++ b/icons/devpost.svg @@ -1 +1 @@ -Devpost icon \ No newline at end of file +Devpost \ No newline at end of file diff --git a/icons/devrant.svg b/icons/devrant.svg index ce337f64..6a2995bb 100644 --- a/icons/devrant.svg +++ b/icons/devrant.svg @@ -1 +1 @@ -devRant icon \ No newline at end of file +devRant \ No newline at end of file diff --git a/icons/dgraph.svg b/icons/dgraph.svg index caad9c79..b1a91a6d 100755 --- a/icons/dgraph.svg +++ b/icons/dgraph.svg @@ -1 +1 @@ -Dgraph icon \ No newline at end of file +Dgraph \ No newline at end of file diff --git a/icons/dhl.svg b/icons/dhl.svg index 8c61c863..0fd10f49 100644 --- a/icons/dhl.svg +++ b/icons/dhl.svg @@ -1 +1 @@ -DHL icon +DHL \ No newline at end of file diff --git a/icons/diagrams-dot-net.svg b/icons/diagrams-dot-net.svg index 11119368..bcdfd8a3 100644 --- a/icons/diagrams-dot-net.svg +++ b/icons/diagrams-dot-net.svg @@ -1 +1 @@ -diagrams.net icon \ No newline at end of file +diagrams.net \ No newline at end of file diff --git a/icons/dialogflow.svg b/icons/dialogflow.svg index 3182dcfc..bf35d7a3 100644 --- a/icons/dialogflow.svg +++ b/icons/dialogflow.svg @@ -1 +1 @@ -Dialogflow icon \ No newline at end of file +Dialogflow \ No newline at end of file diff --git a/icons/diaspora.svg b/icons/diaspora.svg index f3ecd031..a816fde2 100644 --- a/icons/diaspora.svg +++ b/icons/diaspora.svg @@ -1 +1 @@ -Diaspora icon \ No newline at end of file +Diaspora \ No newline at end of file diff --git a/icons/digg.svg b/icons/digg.svg index f97d283b..50185e48 100644 --- a/icons/digg.svg +++ b/icons/digg.svg @@ -1 +1 @@ -Digg icon \ No newline at end of file +Digg \ No newline at end of file diff --git a/icons/digi-keyelectronics.svg b/icons/digi-keyelectronics.svg index e2e5857a..9e964817 100644 --- a/icons/digi-keyelectronics.svg +++ b/icons/digi-keyelectronics.svg @@ -1 +1 @@ -Digi-Key Electronics icon \ No newline at end of file +Digi-Key Electronics \ No newline at end of file diff --git a/icons/digitalocean.svg b/icons/digitalocean.svg index c73e9691..b1feedef 100644 --- a/icons/digitalocean.svg +++ b/icons/digitalocean.svg @@ -1 +1 @@ -DigitalOcean icon \ No newline at end of file +DigitalOcean \ No newline at end of file diff --git a/icons/dior.svg b/icons/dior.svg index 3721df01..ce1f2980 100644 --- a/icons/dior.svg +++ b/icons/dior.svg @@ -1 +1 @@ -Dior icon \ No newline at end of file +Dior \ No newline at end of file diff --git a/icons/directus.svg b/icons/directus.svg index 0bc43cfa..40d935b3 100644 --- a/icons/directus.svg +++ b/icons/directus.svg @@ -1 +1 @@ -Directus icon \ No newline at end of file +Directus \ No newline at end of file diff --git a/icons/discogs.svg b/icons/discogs.svg index 657ec5f3..802dcca6 100644 --- a/icons/discogs.svg +++ b/icons/discogs.svg @@ -1 +1 @@ -Discogs icon +Discogs \ No newline at end of file diff --git a/icons/discord.svg b/icons/discord.svg index 74f651fe..9d7796b8 100644 --- a/icons/discord.svg +++ b/icons/discord.svg @@ -1 +1 @@ -Discord icon \ No newline at end of file +Discord \ No newline at end of file diff --git a/icons/discourse.svg b/icons/discourse.svg index 17a09925..af01707a 100644 --- a/icons/discourse.svg +++ b/icons/discourse.svg @@ -1 +1 @@ -Discourse icon \ No newline at end of file +Discourse \ No newline at end of file diff --git a/icons/discover.svg b/icons/discover.svg index db15bbb1..77efec30 100644 --- a/icons/discover.svg +++ b/icons/discover.svg @@ -1 +1 @@ -Discover icon \ No newline at end of file +Discover \ No newline at end of file diff --git a/icons/disqus.svg b/icons/disqus.svg index 3d5f58ce..3f562982 100644 --- a/icons/disqus.svg +++ b/icons/disqus.svg @@ -1 +1 @@ -Disqus icon \ No newline at end of file +Disqus \ No newline at end of file diff --git a/icons/disroot.svg b/icons/disroot.svg index e8a3cc05..87857af6 100644 --- a/icons/disroot.svg +++ b/icons/disroot.svg @@ -1 +1 @@ -Disroot icon \ No newline at end of file +Disroot \ No newline at end of file diff --git a/icons/django.svg b/icons/django.svg index 19f611f9..7bb3b990 100755 --- a/icons/django.svg +++ b/icons/django.svg @@ -1 +1 @@ -Django icon \ No newline at end of file +Django \ No newline at end of file diff --git a/icons/dlna.svg b/icons/dlna.svg index 28b3a10b..3122db03 100644 --- a/icons/dlna.svg +++ b/icons/dlna.svg @@ -1 +1 @@ -DLNA icon \ No newline at end of file +DLNA \ No newline at end of file diff --git a/icons/docker.svg b/icons/docker.svg index 576c90cc..0021a8a7 100644 --- a/icons/docker.svg +++ b/icons/docker.svg @@ -1 +1 @@ -Docker icon +Docker \ No newline at end of file diff --git a/icons/docusign.svg b/icons/docusign.svg index d6d90ba5..f0508ce2 100644 --- a/icons/docusign.svg +++ b/icons/docusign.svg @@ -1 +1 @@ -DocuSign icon \ No newline at end of file +DocuSign \ No newline at end of file diff --git a/icons/dogecoin.svg b/icons/dogecoin.svg index c739cc0c..de09f858 100644 --- a/icons/dogecoin.svg +++ b/icons/dogecoin.svg @@ -1 +1 @@ -Dogecoin icon \ No newline at end of file +Dogecoin \ No newline at end of file diff --git a/icons/dolby.svg b/icons/dolby.svg index 6cbac373..892c4064 100644 --- a/icons/dolby.svg +++ b/icons/dolby.svg @@ -1 +1 @@ -Dolby icon \ No newline at end of file +Dolby \ No newline at end of file diff --git a/icons/doordash.svg b/icons/doordash.svg index a9e4d4cd..b189a935 100644 --- a/icons/doordash.svg +++ b/icons/doordash.svg @@ -1 +1 @@ -DoorDash icon \ No newline at end of file +DoorDash \ No newline at end of file diff --git a/icons/dot-net.svg b/icons/dot-net.svg index 46fdee12..89df9895 100644 --- a/icons/dot-net.svg +++ b/icons/dot-net.svg @@ -1 +1 @@ -.NET icon +.NET \ No newline at end of file diff --git a/icons/douban.svg b/icons/douban.svg index 9f1e838c..0f5d0c0b 100644 --- a/icons/douban.svg +++ b/icons/douban.svg @@ -1 +1 @@ -Douban icon +Douban \ No newline at end of file diff --git a/icons/draugiem-dot-lv.svg b/icons/draugiem-dot-lv.svg index 1ef7b269..4005f787 100644 --- a/icons/draugiem-dot-lv.svg +++ b/icons/draugiem-dot-lv.svg @@ -1 +1 @@ -Draugiem.lv icon \ No newline at end of file +Draugiem.lv \ No newline at end of file diff --git a/icons/dribbble.svg b/icons/dribbble.svg index e7bdffa4..130a6f59 100644 --- a/icons/dribbble.svg +++ b/icons/dribbble.svg @@ -1 +1 @@ -Dribbble icon \ No newline at end of file +Dribbble \ No newline at end of file diff --git a/icons/drone.svg b/icons/drone.svg index ec17181e..a2c17189 100644 --- a/icons/drone.svg +++ b/icons/drone.svg @@ -1 +1 @@ -Drone icon \ No newline at end of file +Drone \ No newline at end of file diff --git a/icons/drooble.svg b/icons/drooble.svg index 32beb6b6..3e66b076 100644 --- a/icons/drooble.svg +++ b/icons/drooble.svg @@ -1 +1 @@ -Drooble icon +Drooble \ No newline at end of file diff --git a/icons/dropbox.svg b/icons/dropbox.svg index 6a879c82..8faa2517 100644 --- a/icons/dropbox.svg +++ b/icons/dropbox.svg @@ -1 +1 @@ -Dropbox icon \ No newline at end of file +Dropbox \ No newline at end of file diff --git a/icons/drupal.svg b/icons/drupal.svg index 1db66449..d20efb69 100644 --- a/icons/drupal.svg +++ b/icons/drupal.svg @@ -1 +1 @@ -Drupal icon \ No newline at end of file +Drupal \ No newline at end of file diff --git a/icons/dsautomobiles.svg b/icons/dsautomobiles.svg index 11c8e25f..4a5ae9bd 100644 --- a/icons/dsautomobiles.svg +++ b/icons/dsautomobiles.svg @@ -1 +1 @@ -DS Automobiles icon \ No newline at end of file +DS Automobiles \ No newline at end of file diff --git a/icons/dtube.svg b/icons/dtube.svg index 9b65917c..bf1e86f9 100644 --- a/icons/dtube.svg +++ b/icons/dtube.svg @@ -1 +1 @@ -DTube icon \ No newline at end of file +DTube \ No newline at end of file diff --git a/icons/duckduckgo.svg b/icons/duckduckgo.svg index e0f1f11d..2f466f49 100644 --- a/icons/duckduckgo.svg +++ b/icons/duckduckgo.svg @@ -1 +1 @@ -DuckDuckGo icon \ No newline at end of file +DuckDuckGo \ No newline at end of file diff --git a/icons/dunked.svg b/icons/dunked.svg index 78a908f9..569f536b 100644 --- a/icons/dunked.svg +++ b/icons/dunked.svg @@ -1 +1 @@ -Dunked icon \ No newline at end of file +Dunked \ No newline at end of file diff --git a/icons/duolingo.svg b/icons/duolingo.svg index e0caad6b..dc0a8173 100644 --- a/icons/duolingo.svg +++ b/icons/duolingo.svg @@ -1 +1 @@ -Duolingo icon +Duolingo \ No newline at end of file diff --git a/icons/dwm.svg b/icons/dwm.svg index 897e2afa..e15a0417 100644 --- a/icons/dwm.svg +++ b/icons/dwm.svg @@ -1 +1 @@ -dwm icon +dwm \ No newline at end of file diff --git a/icons/dynamics365.svg b/icons/dynamics365.svg index 149d8b2f..687f5a70 100644 --- a/icons/dynamics365.svg +++ b/icons/dynamics365.svg @@ -1 +1 @@ -Dynamics 365 icon +Dynamics 365 \ No newline at end of file diff --git a/icons/dynatrace.svg b/icons/dynatrace.svg index 3629570c..10b8f600 100644 --- a/icons/dynatrace.svg +++ b/icons/dynatrace.svg @@ -1 +1 @@ -Dynatrace icon \ No newline at end of file +Dynatrace \ No newline at end of file diff --git a/icons/ea.svg b/icons/ea.svg index 31e28827..3cd7b9ca 100644 --- a/icons/ea.svg +++ b/icons/ea.svg @@ -1 +1 @@ -EA icon \ No newline at end of file +EA \ No newline at end of file diff --git a/icons/eagle.svg b/icons/eagle.svg index c5942adb..fee44921 100644 --- a/icons/eagle.svg +++ b/icons/eagle.svg @@ -1 +1 @@ -Eagle icon \ No newline at end of file +Eagle \ No newline at end of file diff --git a/icons/easyjet.svg b/icons/easyjet.svg index eded9a22..1781b320 100644 --- a/icons/easyjet.svg +++ b/icons/easyjet.svg @@ -1 +1 @@ -easyJet icon \ No newline at end of file +easyJet \ No newline at end of file diff --git a/icons/ebay.svg b/icons/ebay.svg index 73d28ddb..74d88a84 100644 --- a/icons/ebay.svg +++ b/icons/ebay.svg @@ -1 +1 @@ -eBay icon \ No newline at end of file +eBay \ No newline at end of file diff --git a/icons/eclipseche.svg b/icons/eclipseche.svg index d40cf1bb..904aff37 100644 --- a/icons/eclipseche.svg +++ b/icons/eclipseche.svg @@ -1 +1 @@ -Eclipse Che icon +Eclipse Che \ No newline at end of file diff --git a/icons/eclipseide.svg b/icons/eclipseide.svg index bb62ef40..80a9282e 100644 --- a/icons/eclipseide.svg +++ b/icons/eclipseide.svg @@ -1 +1 @@ -Eclipse IDE icon \ No newline at end of file +Eclipse IDE \ No newline at end of file diff --git a/icons/eclipsejetty.svg b/icons/eclipsejetty.svg index 4edca5a9..d3f2cd2f 100644 --- a/icons/eclipsejetty.svg +++ b/icons/eclipsejetty.svg @@ -1 +1 @@ -Eclipse Jetty icon \ No newline at end of file +Eclipse Jetty \ No newline at end of file diff --git a/icons/eclipsemosquitto.svg b/icons/eclipsemosquitto.svg index 502cf86d..7e411f10 100644 --- a/icons/eclipsemosquitto.svg +++ b/icons/eclipsemosquitto.svg @@ -1 +1 @@ -Eclipse Mosquitto icon \ No newline at end of file +Eclipse Mosquitto \ No newline at end of file diff --git a/icons/eclipsevert-dot-x.svg b/icons/eclipsevert-dot-x.svg index 3d18b81f..e39141e5 100644 --- a/icons/eclipsevert-dot-x.svg +++ b/icons/eclipsevert-dot-x.svg @@ -1 +1 @@ -Eclipse Vert.x icon \ No newline at end of file +Eclipse Vert.x \ No newline at end of file diff --git a/icons/editorconfig.svg b/icons/editorconfig.svg index 222c06e0..c4003942 100644 --- a/icons/editorconfig.svg +++ b/icons/editorconfig.svg @@ -1 +1 @@ -EditorConfig icon \ No newline at end of file +EditorConfig \ No newline at end of file diff --git a/icons/edx.svg b/icons/edx.svg index a8cca4ae..28d51dc0 100644 --- a/icons/edx.svg +++ b/icons/edx.svg @@ -1 +1 @@ -edX icon \ No newline at end of file +edX \ No newline at end of file diff --git a/icons/egghead.svg b/icons/egghead.svg index 22c5190f..0cbccb55 100644 --- a/icons/egghead.svg +++ b/icons/egghead.svg @@ -1 +1 @@ -egghead icon \ No newline at end of file +egghead \ No newline at end of file diff --git a/icons/egnyte.svg b/icons/egnyte.svg index 68663800..0e34a6c4 100644 --- a/icons/egnyte.svg +++ b/icons/egnyte.svg @@ -1 +1 @@ -Egnyte icon \ No newline at end of file +Egnyte \ No newline at end of file diff --git a/icons/eightsleep.svg b/icons/eightsleep.svg index f7f406ce..0e2e250f 100644 --- a/icons/eightsleep.svg +++ b/icons/eightsleep.svg @@ -1 +1 @@ -Eight Sleep icon \ No newline at end of file +Eight Sleep \ No newline at end of file diff --git a/icons/elastic.svg b/icons/elastic.svg index 5652868e..1bc13e40 100644 --- a/icons/elastic.svg +++ b/icons/elastic.svg @@ -1 +1 @@ -Elastic icon \ No newline at end of file +Elastic \ No newline at end of file diff --git a/icons/elasticcloud.svg b/icons/elasticcloud.svg index 47fdda19..52029094 100644 --- a/icons/elasticcloud.svg +++ b/icons/elasticcloud.svg @@ -1 +1 @@ -Elastic Cloud icon \ No newline at end of file +Elastic Cloud \ No newline at end of file diff --git a/icons/elasticsearch.svg b/icons/elasticsearch.svg index d8a0d965..4b91145e 100644 --- a/icons/elasticsearch.svg +++ b/icons/elasticsearch.svg @@ -1 +1 @@ -Elasticsearch icon \ No newline at end of file +Elasticsearch \ No newline at end of file diff --git a/icons/elasticstack.svg b/icons/elasticstack.svg index f8519733..0b79e7e5 100644 --- a/icons/elasticstack.svg +++ b/icons/elasticstack.svg @@ -1 +1 @@ -Elastic Stack icon \ No newline at end of file +Elastic Stack \ No newline at end of file diff --git a/icons/electron.svg b/icons/electron.svg index 0ed02f17..72639c82 100644 --- a/icons/electron.svg +++ b/icons/electron.svg @@ -1 +1 @@ -Electron icon \ No newline at end of file +Electron \ No newline at end of file diff --git a/icons/element.svg b/icons/element.svg index 43c90e79..8aab6723 100644 --- a/icons/element.svg +++ b/icons/element.svg @@ -1 +1 @@ -Element icon \ No newline at end of file +Element \ No newline at end of file diff --git a/icons/elementary.svg b/icons/elementary.svg index 3ccd1ca8..f94da861 100644 --- a/icons/elementary.svg +++ b/icons/elementary.svg @@ -1 +1 @@ -elementary icon \ No newline at end of file +elementary \ No newline at end of file diff --git a/icons/eleventy.svg b/icons/eleventy.svg index 88092a3c..e78c02b2 100644 --- a/icons/eleventy.svg +++ b/icons/eleventy.svg @@ -1 +1 @@ -Eleventy icon \ No newline at end of file +Eleventy \ No newline at end of file diff --git a/icons/elixir.svg b/icons/elixir.svg index 40fb9e0d..5bd304d9 100644 --- a/icons/elixir.svg +++ b/icons/elixir.svg @@ -1 +1 @@ -Elixir icon \ No newline at end of file +Elixir \ No newline at end of file diff --git a/icons/eljueves.svg b/icons/eljueves.svg index e69500ff..92e0cfda 100644 --- a/icons/eljueves.svg +++ b/icons/eljueves.svg @@ -1 +1 @@ -El Jueves icon +El Jueves \ No newline at end of file diff --git a/icons/ello.svg b/icons/ello.svg index 4912ac26..63affdcc 100644 --- a/icons/ello.svg +++ b/icons/ello.svg @@ -1 +1 @@ -Ello icon \ No newline at end of file +Ello \ No newline at end of file diff --git a/icons/elm.svg b/icons/elm.svg index ce42ca63..60f7bf1c 100644 --- a/icons/elm.svg +++ b/icons/elm.svg @@ -1 +1 @@ -Elm icon \ No newline at end of file +Elm \ No newline at end of file diff --git a/icons/elsevier.svg b/icons/elsevier.svg index d2128964..0c546963 100644 --- a/icons/elsevier.svg +++ b/icons/elsevier.svg @@ -1 +1 @@ -Elsevier icon \ No newline at end of file +Elsevier \ No newline at end of file diff --git a/icons/embarcadero.svg b/icons/embarcadero.svg index 7a99106b..d5a639cc 100644 --- a/icons/embarcadero.svg +++ b/icons/embarcadero.svg @@ -1 +1 @@ -Embarcadero icon \ No newline at end of file +Embarcadero \ No newline at end of file diff --git a/icons/ember-dot-js.svg b/icons/ember-dot-js.svg index b17d638a..1674c3c7 100644 --- a/icons/ember-dot-js.svg +++ b/icons/ember-dot-js.svg @@ -1 +1 @@ -Ember.js icon +Ember.js \ No newline at end of file diff --git a/icons/emby.svg b/icons/emby.svg index 5bc6492b..01f51ef9 100644 --- a/icons/emby.svg +++ b/icons/emby.svg @@ -1 +1 @@ -Emby icon +Emby \ No newline at end of file diff --git a/icons/emirates.svg b/icons/emirates.svg index 3778b57f..c667e779 100644 --- a/icons/emirates.svg +++ b/icons/emirates.svg @@ -1 +1 @@ -Emirates icon \ No newline at end of file +Emirates \ No newline at end of file diff --git a/icons/emlakjet.svg b/icons/emlakjet.svg index e15b651a..56b195b9 100644 --- a/icons/emlakjet.svg +++ b/icons/emlakjet.svg @@ -1 +1 @@ -Emlakjet icon \ No newline at end of file +Emlakjet \ No newline at end of file diff --git a/icons/empirekred.svg b/icons/empirekred.svg index e625fc69..5bbcb062 100644 --- a/icons/empirekred.svg +++ b/icons/empirekred.svg @@ -1 +1 @@ -Empire Kred icon \ No newline at end of file +Empire Kred \ No newline at end of file diff --git a/icons/enpass.svg b/icons/enpass.svg index fcf76fa0..d9358655 100644 --- a/icons/enpass.svg +++ b/icons/enpass.svg @@ -1 +1 @@ -Enpass icon \ No newline at end of file +Enpass \ No newline at end of file diff --git a/icons/envato.svg b/icons/envato.svg index 2f758b56..3b04590d 100644 --- a/icons/envato.svg +++ b/icons/envato.svg @@ -1 +1 @@ -Envato icon \ No newline at end of file +Envato \ No newline at end of file diff --git a/icons/epel.svg b/icons/epel.svg index 65f71e6f..006a19dc 100644 --- a/icons/epel.svg +++ b/icons/epel.svg @@ -1 +1 @@ -EPEL icon \ No newline at end of file +EPEL \ No newline at end of file diff --git a/icons/epicgames.svg b/icons/epicgames.svg index 93f17863..d66f8700 100644 --- a/icons/epicgames.svg +++ b/icons/epicgames.svg @@ -1 +1 @@ -Epic Games icon \ No newline at end of file +Epic Games \ No newline at end of file diff --git a/icons/epson.svg b/icons/epson.svg index 81477ef1..e400ea5b 100644 --- a/icons/epson.svg +++ b/icons/epson.svg @@ -1 +1 @@ -Epson icon \ No newline at end of file +Epson \ No newline at end of file diff --git a/icons/erlang.svg b/icons/erlang.svg index 5c4fd7d6..2f00e5f9 100644 --- a/icons/erlang.svg +++ b/icons/erlang.svg @@ -1 +1 @@ -Erlang icon \ No newline at end of file +Erlang \ No newline at end of file diff --git a/icons/esea.svg b/icons/esea.svg index 5175492f..577ff803 100644 --- a/icons/esea.svg +++ b/icons/esea.svg @@ -1 +1 @@ -ESEA icon \ No newline at end of file +ESEA \ No newline at end of file diff --git a/icons/eslgaming.svg b/icons/eslgaming.svg index 13ad7053..0d068b80 100644 --- a/icons/eslgaming.svg +++ b/icons/eslgaming.svg @@ -1 +1 @@ -ESLGaming icon \ No newline at end of file +ESLGaming \ No newline at end of file diff --git a/icons/eslint.svg b/icons/eslint.svg index bd643258..b0e0304a 100644 --- a/icons/eslint.svg +++ b/icons/eslint.svg @@ -1 +1 @@ -ESLint icon \ No newline at end of file +ESLint \ No newline at end of file diff --git a/icons/esphome.svg b/icons/esphome.svg index f5ba7e97..e8c79f1e 100644 --- a/icons/esphome.svg +++ b/icons/esphome.svg @@ -1 +1 @@ -ESPHome icon \ No newline at end of file +ESPHome \ No newline at end of file diff --git a/icons/espressif.svg b/icons/espressif.svg index cf20ab08..36c82bcc 100644 --- a/icons/espressif.svg +++ b/icons/espressif.svg @@ -1 +1 @@ -Espressif icon \ No newline at end of file +Espressif \ No newline at end of file diff --git a/icons/ethereum.svg b/icons/ethereum.svg index 32bc66ae..fc2c96d6 100644 --- a/icons/ethereum.svg +++ b/icons/ethereum.svg @@ -1 +1 @@ -Ethereum icon \ No newline at end of file +Ethereum \ No newline at end of file diff --git a/icons/ethiopianairlines.svg b/icons/ethiopianairlines.svg index d15a6c84..5445b132 100644 --- a/icons/ethiopianairlines.svg +++ b/icons/ethiopianairlines.svg @@ -1 +1 @@ -Ethiopian Airlines icon \ No newline at end of file +Ethiopian Airlines \ No newline at end of file diff --git a/icons/etihadairways.svg b/icons/etihadairways.svg index 3b197763..8664bf61 100644 --- a/icons/etihadairways.svg +++ b/icons/etihadairways.svg @@ -1 +1 @@ -Etihad Airways icon \ No newline at end of file +Etihad Airways \ No newline at end of file diff --git a/icons/etsy.svg b/icons/etsy.svg index 8e001a4e..ef519cca 100644 --- a/icons/etsy.svg +++ b/icons/etsy.svg @@ -1 +1 @@ -Etsy icon \ No newline at end of file +Etsy \ No newline at end of file diff --git a/icons/eventbrite.svg b/icons/eventbrite.svg index 2bcd9ccf..3a205458 100644 --- a/icons/eventbrite.svg +++ b/icons/eventbrite.svg @@ -1 +1 @@ -Eventbrite icon \ No newline at end of file +Eventbrite \ No newline at end of file diff --git a/icons/eventstore.svg b/icons/eventstore.svg index 64a4fd5f..c09f2597 100644 --- a/icons/eventstore.svg +++ b/icons/eventstore.svg @@ -1 +1 @@ -Event Store icon \ No newline at end of file +Event Store \ No newline at end of file diff --git a/icons/evernote.svg b/icons/evernote.svg index 62e80511..f9ac15dc 100644 --- a/icons/evernote.svg +++ b/icons/evernote.svg @@ -1 +1 @@ -Evernote icon \ No newline at end of file +Evernote \ No newline at end of file diff --git a/icons/exercism.svg b/icons/exercism.svg index 38ca5475..add82005 100644 --- a/icons/exercism.svg +++ b/icons/exercism.svg @@ -1 +1 @@ -Exercism icon \ No newline at end of file +Exercism \ No newline at end of file diff --git a/icons/expensify.svg b/icons/expensify.svg index 86e47af0..0e289a61 100644 --- a/icons/expensify.svg +++ b/icons/expensify.svg @@ -1 +1 @@ -Expensify icon \ No newline at end of file +Expensify \ No newline at end of file diff --git a/icons/expertsexchange.svg b/icons/expertsexchange.svg index 37db5c8f..b4f2cf26 100644 --- a/icons/expertsexchange.svg +++ b/icons/expertsexchange.svg @@ -1 +1 @@ -Experts Exchange icon \ No newline at end of file +Experts Exchange \ No newline at end of file diff --git a/icons/expo.svg b/icons/expo.svg index 80036846..46a6a418 100644 --- a/icons/expo.svg +++ b/icons/expo.svg @@ -1 +1 @@ -Expo icon \ No newline at end of file +Expo \ No newline at end of file diff --git a/icons/express.svg b/icons/express.svg index 91cff310..edeb4134 100644 --- a/icons/express.svg +++ b/icons/express.svg @@ -1 +1 @@ -Express icon \ No newline at end of file +Express \ No newline at end of file diff --git a/icons/eyeem.svg b/icons/eyeem.svg index f219edd7..d4230b0d 100644 --- a/icons/eyeem.svg +++ b/icons/eyeem.svg @@ -1 +1 @@ -EyeEm icon \ No newline at end of file +EyeEm \ No newline at end of file diff --git a/icons/f-droid.svg b/icons/f-droid.svg index 69d4db43..9e4e7204 100644 --- a/icons/f-droid.svg +++ b/icons/f-droid.svg @@ -1 +1 @@ -F-Droid icon \ No newline at end of file +F-Droid \ No newline at end of file diff --git a/icons/f-secure.svg b/icons/f-secure.svg index c463cf7a..597d30f9 100644 --- a/icons/f-secure.svg +++ b/icons/f-secure.svg @@ -1 +1 @@ -F-Secure icon \ No newline at end of file +F-Secure \ No newline at end of file diff --git a/icons/facebook.svg b/icons/facebook.svg index 689721a2..4ef9d677 100644 --- a/icons/facebook.svg +++ b/icons/facebook.svg @@ -1 +1 @@ -Facebook icon \ No newline at end of file +Facebook \ No newline at end of file diff --git a/icons/facebookgaming.svg b/icons/facebookgaming.svg index 3442a7e0..5d5ce6b8 100644 --- a/icons/facebookgaming.svg +++ b/icons/facebookgaming.svg @@ -1 +1 @@ -Facebook Gaming icon \ No newline at end of file +Facebook Gaming \ No newline at end of file diff --git a/icons/facebooklive.svg b/icons/facebooklive.svg index 557e22da..1662c3a0 100644 --- a/icons/facebooklive.svg +++ b/icons/facebooklive.svg @@ -1 +1 @@ -Facebook Live icon \ No newline at end of file +Facebook Live \ No newline at end of file diff --git a/icons/faceit.svg b/icons/faceit.svg index 36c7b9a6..cd64e0b3 100644 --- a/icons/faceit.svg +++ b/icons/faceit.svg @@ -1 +1 @@ -FACEIT icon \ No newline at end of file +FACEIT \ No newline at end of file diff --git a/icons/facepunch.svg b/icons/facepunch.svg index bdb5f59e..1c1da479 100644 --- a/icons/facepunch.svg +++ b/icons/facepunch.svg @@ -1 +1 @@ -Facepunch icon \ No newline at end of file +Facepunch \ No newline at end of file diff --git a/icons/falcon.svg b/icons/falcon.svg index 817b3e6d..407c6c2e 100644 --- a/icons/falcon.svg +++ b/icons/falcon.svg @@ -1 +1 @@ -Falcon icon \ No newline at end of file +Falcon \ No newline at end of file diff --git a/icons/fampay.svg b/icons/fampay.svg index 1dccd68a..07f342be 100644 --- a/icons/fampay.svg +++ b/icons/fampay.svg @@ -1 +1 @@ -FamPay icon \ No newline at end of file +FamPay \ No newline at end of file diff --git a/icons/fandango.svg b/icons/fandango.svg index 0787a72c..06f4ce93 100644 --- a/icons/fandango.svg +++ b/icons/fandango.svg @@ -1 +1 @@ -Fandango icon \ No newline at end of file +Fandango \ No newline at end of file diff --git a/icons/fandom.svg b/icons/fandom.svg index 855633df..1e63ba87 100644 --- a/icons/fandom.svg +++ b/icons/fandom.svg @@ -1 +1 @@ -Fandom icon \ No newline at end of file +Fandom \ No newline at end of file diff --git a/icons/farfetch.svg b/icons/farfetch.svg index 045cdf20..62bd1236 100644 --- a/icons/farfetch.svg +++ b/icons/farfetch.svg @@ -1 +1 @@ -FARFETCH icon \ No newline at end of file +FARFETCH \ No newline at end of file diff --git a/icons/fastapi.svg b/icons/fastapi.svg index 062bb222..4aa580b1 100644 --- a/icons/fastapi.svg +++ b/icons/fastapi.svg @@ -1 +1 @@ -FastAPI icon +FastAPI \ No newline at end of file diff --git a/icons/fastify.svg b/icons/fastify.svg index 001dc37f..3e676665 100644 --- a/icons/fastify.svg +++ b/icons/fastify.svg @@ -1 +1 @@ -Fastify icon \ No newline at end of file +Fastify \ No newline at end of file diff --git a/icons/fastlane.svg b/icons/fastlane.svg index 44b75bc3..a3f42919 100644 --- a/icons/fastlane.svg +++ b/icons/fastlane.svg @@ -1 +1 @@ -Fastlane icon \ No newline at end of file +Fastlane \ No newline at end of file diff --git a/icons/fastly.svg b/icons/fastly.svg index 057e243b..4d4d3465 100644 --- a/icons/fastly.svg +++ b/icons/fastly.svg @@ -1 +1 @@ -Fastly icon +Fastly \ No newline at end of file diff --git a/icons/fathom.svg b/icons/fathom.svg index 01d32d39..3a2025e3 100644 --- a/icons/fathom.svg +++ b/icons/fathom.svg @@ -1 +1 @@ -Fathom icon \ No newline at end of file +Fathom \ No newline at end of file diff --git a/icons/favro.svg b/icons/favro.svg index 3c04cec8..214ee400 100644 --- a/icons/favro.svg +++ b/icons/favro.svg @@ -1 +1 @@ -Favro icon \ No newline at end of file +Favro \ No newline at end of file diff --git a/icons/feathub.svg b/icons/feathub.svg index c477a56e..10264140 100644 --- a/icons/feathub.svg +++ b/icons/feathub.svg @@ -1 +1 @@ -FeatHub icon \ No newline at end of file +FeatHub \ No newline at end of file diff --git a/icons/fedex.svg b/icons/fedex.svg index d69381a2..48fbb53d 100644 --- a/icons/fedex.svg +++ b/icons/fedex.svg @@ -1 +1 @@ -FedEx icon \ No newline at end of file +FedEx \ No newline at end of file diff --git a/icons/fedora.svg b/icons/fedora.svg index 16d99b25..73b85bcf 100644 --- a/icons/fedora.svg +++ b/icons/fedora.svg @@ -1 +1 @@ -Fedora icon \ No newline at end of file +Fedora \ No newline at end of file diff --git a/icons/feedly.svg b/icons/feedly.svg index 2fcc3fee..1b7002b4 100644 --- a/icons/feedly.svg +++ b/icons/feedly.svg @@ -1 +1 @@ -Feedly icon \ No newline at end of file +Feedly \ No newline at end of file diff --git a/icons/ferrari.svg b/icons/ferrari.svg index 1129aba5..9f6fb507 100644 --- a/icons/ferrari.svg +++ b/icons/ferrari.svg @@ -1 +1 @@ -Ferrari icon \ No newline at end of file +Ferrari \ No newline at end of file diff --git a/icons/ferrarin-dot-v-dot.svg b/icons/ferrarin-dot-v-dot.svg index 1a883d35..95ee3986 100644 --- a/icons/ferrarin-dot-v-dot.svg +++ b/icons/ferrarin-dot-v-dot.svg @@ -1 +1 @@ -Ferrari N.V. icon \ No newline at end of file +Ferrari N.V. \ No newline at end of file diff --git a/icons/ffmpeg.svg b/icons/ffmpeg.svg index cd6de708..4991d79a 100644 --- a/icons/ffmpeg.svg +++ b/icons/ffmpeg.svg @@ -1 +1 @@ -FFmpeg icon \ No newline at end of file +FFmpeg \ No newline at end of file diff --git a/icons/fiat.svg b/icons/fiat.svg index f73059f9..227bb541 100644 --- a/icons/fiat.svg +++ b/icons/fiat.svg @@ -1 +1 @@ -Fiat icon \ No newline at end of file +Fiat \ No newline at end of file diff --git a/icons/fidoalliance.svg b/icons/fidoalliance.svg index 0c0df9c7..17e710dd 100644 --- a/icons/fidoalliance.svg +++ b/icons/fidoalliance.svg @@ -1 +1 @@ -Fido Alliance icon \ No newline at end of file +Fido Alliance \ No newline at end of file diff --git a/icons/fifa.svg b/icons/fifa.svg index ed45d78e..49ab1a01 100644 --- a/icons/fifa.svg +++ b/icons/fifa.svg @@ -1 +1 @@ -FIFA icon \ No newline at end of file +FIFA \ No newline at end of file diff --git a/icons/figma.svg b/icons/figma.svg index cd3c1461..6a06daa6 100644 --- a/icons/figma.svg +++ b/icons/figma.svg @@ -1 +1 @@ -Figma icon \ No newline at end of file +Figma \ No newline at end of file diff --git a/icons/figshare.svg b/icons/figshare.svg index ceceb243..d8d9e736 100644 --- a/icons/figshare.svg +++ b/icons/figshare.svg @@ -1 +1 @@ -figshare icon +figshare \ No newline at end of file diff --git a/icons/fila.svg b/icons/fila.svg index be103c66..62ff8888 100644 --- a/icons/fila.svg +++ b/icons/fila.svg @@ -1 +1 @@ -Fila icon \ No newline at end of file +Fila \ No newline at end of file diff --git a/icons/files.svg b/icons/files.svg index bd4cbbf0..d4ad8573 100644 --- a/icons/files.svg +++ b/icons/files.svg @@ -1 +1 @@ -Files icon \ No newline at end of file +Files \ No newline at end of file diff --git a/icons/filezilla.svg b/icons/filezilla.svg index 501feef9..f68e9ec0 100644 --- a/icons/filezilla.svg +++ b/icons/filezilla.svg @@ -1 +1 @@ -FileZilla icon \ No newline at end of file +FileZilla \ No newline at end of file diff --git a/icons/fing.svg b/icons/fing.svg index 3c84c826..cce4685b 100644 --- a/icons/fing.svg +++ b/icons/fing.svg @@ -1 +1 @@ -Fing icon \ No newline at end of file +Fing \ No newline at end of file diff --git a/icons/firebase.svg b/icons/firebase.svg index fa0fdc9d..b78fd062 100644 --- a/icons/firebase.svg +++ b/icons/firebase.svg @@ -1 +1 @@ -Firebase icon +Firebase \ No newline at end of file diff --git a/icons/firefox.svg b/icons/firefox.svg index fc6cedba..e7c9fff2 100644 --- a/icons/firefox.svg +++ b/icons/firefox.svg @@ -1 +1 @@ -Firefox icon \ No newline at end of file +Firefox \ No newline at end of file diff --git a/icons/firefoxbrowser.svg b/icons/firefoxbrowser.svg index 97741b62..3cbc89ce 100644 --- a/icons/firefoxbrowser.svg +++ b/icons/firefoxbrowser.svg @@ -1 +1 @@ -Firefox Browser icon \ No newline at end of file +Firefox Browser \ No newline at end of file diff --git a/icons/first.svg b/icons/first.svg index d147a01e..ae3f1023 100644 --- a/icons/first.svg +++ b/icons/first.svg @@ -1 +1 @@ -FIRST icon \ No newline at end of file +FIRST \ No newline at end of file diff --git a/icons/fitbit.svg b/icons/fitbit.svg index 6a8a66fe..3e5dd92f 100644 --- a/icons/fitbit.svg +++ b/icons/fitbit.svg @@ -1 +1 @@ -Fitbit icon \ No newline at end of file +Fitbit \ No newline at end of file diff --git a/icons/fite.svg b/icons/fite.svg index e6221fbf..0c3df52a 100644 --- a/icons/fite.svg +++ b/icons/fite.svg @@ -1 +1 @@ -FITE icon +FITE \ No newline at end of file diff --git a/icons/fiverr.svg b/icons/fiverr.svg index 1c0cffb5..0a93114c 100644 --- a/icons/fiverr.svg +++ b/icons/fiverr.svg @@ -1 +1 @@ -Fiverr icon \ No newline at end of file +Fiverr \ No newline at end of file diff --git a/icons/flask.svg b/icons/flask.svg index 5438f039..a403984f 100644 --- a/icons/flask.svg +++ b/icons/flask.svg @@ -1 +1 @@ -Flask icon \ No newline at end of file +Flask \ No newline at end of file diff --git a/icons/flathub.svg b/icons/flathub.svg index 1efc9b09..6bad8b3d 100644 --- a/icons/flathub.svg +++ b/icons/flathub.svg @@ -1 +1 @@ -Flathub icon +Flathub \ No newline at end of file diff --git a/icons/flattr.svg b/icons/flattr.svg index 22575609..fc7bfb79 100644 --- a/icons/flattr.svg +++ b/icons/flattr.svg @@ -1 +1 @@ -Flattr icon \ No newline at end of file +Flattr \ No newline at end of file diff --git a/icons/flickr.svg b/icons/flickr.svg index 2e3a9da0..a7ed3f6c 100644 --- a/icons/flickr.svg +++ b/icons/flickr.svg @@ -1 +1 @@ -Flickr icon \ No newline at end of file +Flickr \ No newline at end of file diff --git a/icons/flipboard.svg b/icons/flipboard.svg index 2fc65b4a..6744d016 100644 --- a/icons/flipboard.svg +++ b/icons/flipboard.svg @@ -1 +1 @@ -Flipboard icon \ No newline at end of file +Flipboard \ No newline at end of file diff --git a/icons/flipkart.svg b/icons/flipkart.svg index c38b7f76..226e2a98 100644 --- a/icons/flipkart.svg +++ b/icons/flipkart.svg @@ -1 +1 @@ -Flipkart icon \ No newline at end of file +Flipkart \ No newline at end of file diff --git a/icons/floatplane.svg b/icons/floatplane.svg index 54d3af18..fea68032 100644 --- a/icons/floatplane.svg +++ b/icons/floatplane.svg @@ -1 +1 @@ -Floatplane icon \ No newline at end of file +Floatplane \ No newline at end of file diff --git a/icons/flood.svg b/icons/flood.svg index bddde490..a21c71f3 100644 --- a/icons/flood.svg +++ b/icons/flood.svg @@ -1 +1 @@ -Flood icon +Flood \ No newline at end of file diff --git a/icons/fluentd.svg b/icons/fluentd.svg index 0556c211..dbe995f2 100644 --- a/icons/fluentd.svg +++ b/icons/fluentd.svg @@ -1 +1 @@ -Fluentd icon \ No newline at end of file +Fluentd \ No newline at end of file diff --git a/icons/flutter.svg b/icons/flutter.svg index 1f10be2d..01212163 100644 --- a/icons/flutter.svg +++ b/icons/flutter.svg @@ -1 +1 @@ -Flutter icon \ No newline at end of file +Flutter \ No newline at end of file diff --git a/icons/fmod.svg b/icons/fmod.svg index 6853c016..7d0c676c 100644 --- a/icons/fmod.svg +++ b/icons/fmod.svg @@ -1 +1 @@ -FMOD icon \ No newline at end of file +FMOD \ No newline at end of file diff --git a/icons/fnac.svg b/icons/fnac.svg index 88407390..4e48c879 100644 --- a/icons/fnac.svg +++ b/icons/fnac.svg @@ -1 +1 @@ -Fnac icon \ No newline at end of file +Fnac \ No newline at end of file diff --git a/icons/folium.svg b/icons/folium.svg index a933c3f3..c604ab6c 100644 --- a/icons/folium.svg +++ b/icons/folium.svg @@ -1 +1 @@ -Folium icon \ No newline at end of file +Folium \ No newline at end of file diff --git a/icons/fontawesome.svg b/icons/fontawesome.svg index 0712d0a8..5c8e2e77 100644 --- a/icons/fontawesome.svg +++ b/icons/fontawesome.svg @@ -1 +1 @@ -Font Awesome icon +Font Awesome \ No newline at end of file diff --git a/icons/fontbase.svg b/icons/fontbase.svg index c557c380..b68c6518 100644 --- a/icons/fontbase.svg +++ b/icons/fontbase.svg @@ -1 +1 @@ -FontBase icon \ No newline at end of file +FontBase \ No newline at end of file diff --git a/icons/foodpanda.svg b/icons/foodpanda.svg index 6e4c2081..7b301d09 100644 --- a/icons/foodpanda.svg +++ b/icons/foodpanda.svg @@ -1 +1 @@ -foodpanda icon \ No newline at end of file +foodpanda \ No newline at end of file diff --git a/icons/ford.svg b/icons/ford.svg index df7a2328..71a1d58b 100644 --- a/icons/ford.svg +++ b/icons/ford.svg @@ -1 +1 @@ -Ford icon \ No newline at end of file +Ford \ No newline at end of file diff --git a/icons/forestry.svg b/icons/forestry.svg index 2b6ef3d5..a20abaef 100644 --- a/icons/forestry.svg +++ b/icons/forestry.svg @@ -1 +1 @@ -Forestry icon \ No newline at end of file +Forestry \ No newline at end of file diff --git a/icons/formstack.svg b/icons/formstack.svg index 6b5c6ae3..c918af31 100644 --- a/icons/formstack.svg +++ b/icons/formstack.svg @@ -1 +1 @@ -Formstack icon \ No newline at end of file +Formstack \ No newline at end of file diff --git a/icons/fortinet.svg b/icons/fortinet.svg index a813f57a..aef08b77 100644 --- a/icons/fortinet.svg +++ b/icons/fortinet.svg @@ -1 +1 @@ -Fortinet icon +Fortinet \ No newline at end of file diff --git a/icons/fortran.svg b/icons/fortran.svg index 026e4f96..44ae0a8e 100644 --- a/icons/fortran.svg +++ b/icons/fortran.svg @@ -1 +1 @@ -Fortran icon \ No newline at end of file +Fortran \ No newline at end of file diff --git a/icons/fossa.svg b/icons/fossa.svg index f4ab3958..cc680e56 100644 --- a/icons/fossa.svg +++ b/icons/fossa.svg @@ -1 +1 @@ -Fossa icon \ No newline at end of file +Fossa \ No newline at end of file diff --git a/icons/fossilscm.svg b/icons/fossilscm.svg index df4342de..c5788525 100644 --- a/icons/fossilscm.svg +++ b/icons/fossilscm.svg @@ -1 +1 @@ -Fossil SCM icon \ No newline at end of file +Fossil SCM \ No newline at end of file diff --git a/icons/foursquare.svg b/icons/foursquare.svg index 40f52ba2..e577944e 100644 --- a/icons/foursquare.svg +++ b/icons/foursquare.svg @@ -1 +1 @@ -Foursquare icon \ No newline at end of file +Foursquare \ No newline at end of file diff --git a/icons/foxtel.svg b/icons/foxtel.svg index c37fc30b..a7bebe83 100644 --- a/icons/foxtel.svg +++ b/icons/foxtel.svg @@ -1 +1 @@ -Foxtel icon \ No newline at end of file +Foxtel \ No newline at end of file diff --git a/icons/fozzy.svg b/icons/fozzy.svg index 72e4866b..37b21c55 100644 --- a/icons/fozzy.svg +++ b/icons/fozzy.svg @@ -1 +1 @@ -Fozzy icon \ No newline at end of file +Fozzy \ No newline at end of file diff --git a/icons/framer.svg b/icons/framer.svg index 5265d918..e5a2d414 100644 --- a/icons/framer.svg +++ b/icons/framer.svg @@ -1 +1 @@ -Framer icon \ No newline at end of file +Framer \ No newline at end of file diff --git a/icons/fraunhofer-gesellschaft.svg b/icons/fraunhofer-gesellschaft.svg index d3a3d73a..f969b856 100644 --- a/icons/fraunhofer-gesellschaft.svg +++ b/icons/fraunhofer-gesellschaft.svg @@ -1 +1 @@ -Fraunhofer-Gesellschaft icon \ No newline at end of file +Fraunhofer-Gesellschaft \ No newline at end of file diff --git a/icons/freebsd.svg b/icons/freebsd.svg index c22aa947..8febe9d4 100644 --- a/icons/freebsd.svg +++ b/icons/freebsd.svg @@ -1 +1 @@ -FreeBSD icon \ No newline at end of file +FreeBSD \ No newline at end of file diff --git a/icons/freecodecamp.svg b/icons/freecodecamp.svg index 99e7d3a4..8a19cca3 100644 --- a/icons/freecodecamp.svg +++ b/icons/freecodecamp.svg @@ -1 +1 @@ -freeCodeCamp icon \ No newline at end of file +freeCodeCamp \ No newline at end of file diff --git a/icons/freedesktop-dot-org.svg b/icons/freedesktop-dot-org.svg index d9101137..593533c4 100644 --- a/icons/freedesktop-dot-org.svg +++ b/icons/freedesktop-dot-org.svg @@ -1 +1 @@ -freedesktop.org icon \ No newline at end of file +freedesktop.org \ No newline at end of file diff --git a/icons/freelancer.svg b/icons/freelancer.svg index ace3a6c7..64567653 100644 --- a/icons/freelancer.svg +++ b/icons/freelancer.svg @@ -1 +1 @@ -Freelancer icon +Freelancer \ No newline at end of file diff --git a/icons/freenas.svg b/icons/freenas.svg index 18a76e00..b1b0d2fe 100644 --- a/icons/freenas.svg +++ b/icons/freenas.svg @@ -1 +1 @@ -FreeNAS icon \ No newline at end of file +FreeNAS \ No newline at end of file diff --git a/icons/fujifilm.svg b/icons/fujifilm.svg index e97e61ed..00766e68 100644 --- a/icons/fujifilm.svg +++ b/icons/fujifilm.svg @@ -1 +1 @@ -Fujifilm icon \ No newline at end of file +Fujifilm \ No newline at end of file diff --git a/icons/fujitsu.svg b/icons/fujitsu.svg index b06341cc..70efe675 100644 --- a/icons/fujitsu.svg +++ b/icons/fujitsu.svg @@ -1 +1 @@ -Fujitsu icon +Fujitsu \ No newline at end of file diff --git a/icons/furaffinity.svg b/icons/furaffinity.svg index cf353819..9204b77d 100644 --- a/icons/furaffinity.svg +++ b/icons/furaffinity.svg @@ -1 +1 @@ -Fur Affinity icon \ No newline at end of file +Fur Affinity \ No newline at end of file diff --git a/icons/furrynetwork.svg b/icons/furrynetwork.svg index 1509f6a9..65fdd44b 100644 --- a/icons/furrynetwork.svg +++ b/icons/furrynetwork.svg @@ -1 +1 @@ -Furry Network icon \ No newline at end of file +Furry Network \ No newline at end of file diff --git a/icons/futurelearn.svg b/icons/futurelearn.svg index eafef7f1..a489f3cb 100644 --- a/icons/futurelearn.svg +++ b/icons/futurelearn.svg @@ -1 +1 @@ -FutureLearn icon \ No newline at end of file +FutureLearn \ No newline at end of file diff --git a/icons/g2a.svg b/icons/g2a.svg index 2f2f2da0..64259afd 100644 --- a/icons/g2a.svg +++ b/icons/g2a.svg @@ -1 +1 @@ -G2A icon \ No newline at end of file +G2A \ No newline at end of file diff --git a/icons/gamejolt.svg b/icons/gamejolt.svg index 1eb183c8..f31efd9b 100644 --- a/icons/gamejolt.svg +++ b/icons/gamejolt.svg @@ -1 +1 @@ -Game Jolt icon \ No newline at end of file +Game Jolt \ No newline at end of file diff --git a/icons/garmin.svg b/icons/garmin.svg index 37e918e7..4f010643 100644 --- a/icons/garmin.svg +++ b/icons/garmin.svg @@ -1 +1 @@ -Garmin icon \ No newline at end of file +Garmin \ No newline at end of file diff --git a/icons/gatling.svg b/icons/gatling.svg index f68f29e7..44d51d7f 100644 --- a/icons/gatling.svg +++ b/icons/gatling.svg @@ -1 +1 @@ -Gatling icon \ No newline at end of file +Gatling \ No newline at end of file diff --git a/icons/gatsby.svg b/icons/gatsby.svg index 039071bf..bd469130 100644 --- a/icons/gatsby.svg +++ b/icons/gatsby.svg @@ -1 +1 @@ -Gatsby icon \ No newline at end of file +Gatsby \ No newline at end of file diff --git a/icons/geeksforgeeks.svg b/icons/geeksforgeeks.svg index dce85b47..7ab88b18 100644 --- a/icons/geeksforgeeks.svg +++ b/icons/geeksforgeeks.svg @@ -1 +1 @@ -GeeksforGeeks icon \ No newline at end of file +GeeksforGeeks \ No newline at end of file diff --git a/icons/generalelectric.svg b/icons/generalelectric.svg index 93c7cd16..bf05e07f 100644 --- a/icons/generalelectric.svg +++ b/icons/generalelectric.svg @@ -1 +1 @@ -General Electric icon \ No newline at end of file +General Electric \ No newline at end of file diff --git a/icons/generalmotors.svg b/icons/generalmotors.svg index c19ec0fc..027505f9 100644 --- a/icons/generalmotors.svg +++ b/icons/generalmotors.svg @@ -1 +1 @@ -General Motors icon \ No newline at end of file +General Motors \ No newline at end of file diff --git a/icons/genius.svg b/icons/genius.svg index ebafb9a8..4abe98c9 100644 --- a/icons/genius.svg +++ b/icons/genius.svg @@ -1 +1 @@ -Genius icon \ No newline at end of file +Genius \ No newline at end of file diff --git a/icons/gentoo.svg b/icons/gentoo.svg index 13640278..7be106f0 100644 --- a/icons/gentoo.svg +++ b/icons/gentoo.svg @@ -1 +1 @@ -Gentoo icon \ No newline at end of file +Gentoo \ No newline at end of file diff --git a/icons/geocaching.svg b/icons/geocaching.svg index 415a4f7a..96f91048 100644 --- a/icons/geocaching.svg +++ b/icons/geocaching.svg @@ -1 +1 @@ -Geocaching icon \ No newline at end of file +Geocaching \ No newline at end of file diff --git a/icons/gerrit.svg b/icons/gerrit.svg index d9b9bdf4..9f756e55 100644 --- a/icons/gerrit.svg +++ b/icons/gerrit.svg @@ -1 +1 @@ -Gerrit icon \ No newline at end of file +Gerrit \ No newline at end of file diff --git a/icons/ghost.svg b/icons/ghost.svg index fe807c7d..d53466b0 100644 --- a/icons/ghost.svg +++ b/icons/ghost.svg @@ -1 +1 @@ -Ghost icon \ No newline at end of file +Ghost \ No newline at end of file diff --git a/icons/ghostery.svg b/icons/ghostery.svg index 04160fcb..dab6173b 100644 --- a/icons/ghostery.svg +++ b/icons/ghostery.svg @@ -1 +1 @@ -Ghostery icon \ No newline at end of file +Ghostery \ No newline at end of file diff --git a/icons/gimp.svg b/icons/gimp.svg index cf15bbe1..d30e9ae9 100644 --- a/icons/gimp.svg +++ b/icons/gimp.svg @@ -1 +1 @@ -GIMP icon \ No newline at end of file +GIMP \ No newline at end of file diff --git a/icons/giphy.svg b/icons/giphy.svg index 7b0c8dea..05ccfa12 100644 --- a/icons/giphy.svg +++ b/icons/giphy.svg @@ -1 +1 @@ -GIPHY icon \ No newline at end of file +GIPHY \ No newline at end of file diff --git a/icons/git.svg b/icons/git.svg index f795f637..13af359c 100644 --- a/icons/git.svg +++ b/icons/git.svg @@ -1 +1 @@ -Git icon \ No newline at end of file +Git \ No newline at end of file diff --git a/icons/gitbook.svg b/icons/gitbook.svg index 01b53bf2..c62e27ed 100644 --- a/icons/gitbook.svg +++ b/icons/gitbook.svg @@ -1 +1 @@ -GitBook icon \ No newline at end of file +GitBook \ No newline at end of file diff --git a/icons/gitea.svg b/icons/gitea.svg index 4cef9d8d..d870f719 100644 --- a/icons/gitea.svg +++ b/icons/gitea.svg @@ -1 +1 @@ -Gitea icon \ No newline at end of file +Gitea \ No newline at end of file diff --git a/icons/gitee.svg b/icons/gitee.svg index 7509d132..457e4829 100644 --- a/icons/gitee.svg +++ b/icons/gitee.svg @@ -1 +1 @@ -Gitee icon \ No newline at end of file +Gitee \ No newline at end of file diff --git a/icons/gitextensions.svg b/icons/gitextensions.svg index 0bc964d9..998cf324 100644 --- a/icons/gitextensions.svg +++ b/icons/gitextensions.svg @@ -1 +1 @@ -Git Extensions icon \ No newline at end of file +Git Extensions \ No newline at end of file diff --git a/icons/github.svg b/icons/github.svg index 38997125..538ec5bf 100644 --- a/icons/github.svg +++ b/icons/github.svg @@ -1 +1 @@ -GitHub icon \ No newline at end of file +GitHub \ No newline at end of file diff --git a/icons/githubactions.svg b/icons/githubactions.svg index 3dfaf369..bc925a35 100644 --- a/icons/githubactions.svg +++ b/icons/githubactions.svg @@ -1 +1 @@ -GitHub Actions icon \ No newline at end of file +GitHub Actions \ No newline at end of file diff --git a/icons/githubsponsors.svg b/icons/githubsponsors.svg index 0cab6463..a0c0e1ce 100644 --- a/icons/githubsponsors.svg +++ b/icons/githubsponsors.svg @@ -1 +1 @@ -GitHub Sponsors icon \ No newline at end of file +GitHub Sponsors \ No newline at end of file diff --git a/icons/gitkraken.svg b/icons/gitkraken.svg index a1bccdc0..06d25f4a 100644 --- a/icons/gitkraken.svg +++ b/icons/gitkraken.svg @@ -1 +1 @@ -GitKraken icon \ No newline at end of file +GitKraken \ No newline at end of file diff --git a/icons/gitlab.svg b/icons/gitlab.svg index 1f0ecc62..d84a8e9d 100644 --- a/icons/gitlab.svg +++ b/icons/gitlab.svg @@ -1 +1 @@ -GitLab icon \ No newline at end of file +GitLab \ No newline at end of file diff --git a/icons/gitlfs.svg b/icons/gitlfs.svg index 4cb02dde..af4aa215 100644 --- a/icons/gitlfs.svg +++ b/icons/gitlfs.svg @@ -1 +1 @@ -Git LFS icon +Git LFS \ No newline at end of file diff --git a/icons/gitpod.svg b/icons/gitpod.svg index 996e92b4..42d20208 100644 --- a/icons/gitpod.svg +++ b/icons/gitpod.svg @@ -1 +1 @@ -Gitpod icon \ No newline at end of file +Gitpod \ No newline at end of file diff --git a/icons/gitter.svg b/icons/gitter.svg index dadb9a1e..f94da2f3 100644 --- a/icons/gitter.svg +++ b/icons/gitter.svg @@ -1 +1 @@ -Gitter icon \ No newline at end of file +Gitter \ No newline at end of file diff --git a/icons/glassdoor.svg b/icons/glassdoor.svg index 04ef0c3c..d67677fc 100644 --- a/icons/glassdoor.svg +++ b/icons/glassdoor.svg @@ -1 +1 @@ -Glassdoor icon \ No newline at end of file +Glassdoor \ No newline at end of file diff --git a/icons/glitch.svg b/icons/glitch.svg index bd622608..fbbd3bb7 100644 --- a/icons/glitch.svg +++ b/icons/glitch.svg @@ -1 +1 @@ -Glitch icon \ No newline at end of file +Glitch \ No newline at end of file diff --git a/icons/gmail.svg b/icons/gmail.svg index 995b920e..9ee779ad 100644 --- a/icons/gmail.svg +++ b/icons/gmail.svg @@ -1 +1 @@ -Gmail icon \ No newline at end of file +Gmail \ No newline at end of file diff --git a/icons/gnome.svg b/icons/gnome.svg index 8496a395..d826a6a6 100644 --- a/icons/gnome.svg +++ b/icons/gnome.svg @@ -1 +1 @@ -GNOME icon \ No newline at end of file +GNOME \ No newline at end of file diff --git a/icons/gnu.svg b/icons/gnu.svg index e5019ea8..5ba034e0 100644 --- a/icons/gnu.svg +++ b/icons/gnu.svg @@ -1 +1 @@ -GNU icon \ No newline at end of file +GNU \ No newline at end of file diff --git a/icons/gnubash.svg b/icons/gnubash.svg index 2f42d3f1..857dd04c 100644 --- a/icons/gnubash.svg +++ b/icons/gnubash.svg @@ -1 +1 @@ -GNU Bash icon \ No newline at end of file +GNU Bash \ No newline at end of file diff --git a/icons/gnuemacs.svg b/icons/gnuemacs.svg index 5ec1c06d..fa9ccf14 100644 --- a/icons/gnuemacs.svg +++ b/icons/gnuemacs.svg @@ -1 +1 @@ -GNU Emacs icon \ No newline at end of file +GNU Emacs \ No newline at end of file diff --git a/icons/gnuicecat.svg b/icons/gnuicecat.svg index d7844bea..4a1a82b0 100644 --- a/icons/gnuicecat.svg +++ b/icons/gnuicecat.svg @@ -1 +1 @@ -GNU IceCat icon \ No newline at end of file +GNU IceCat \ No newline at end of file diff --git a/icons/gnuprivacyguard.svg b/icons/gnuprivacyguard.svg index afc1a6c0..5b8facc6 100644 --- a/icons/gnuprivacyguard.svg +++ b/icons/gnuprivacyguard.svg @@ -1 +1 @@ -GNU Privacy Guard icon \ No newline at end of file +GNU Privacy Guard \ No newline at end of file diff --git a/icons/gnusocial.svg b/icons/gnusocial.svg index 315149b4..67541254 100644 --- a/icons/gnusocial.svg +++ b/icons/gnusocial.svg @@ -1 +1 @@ -GNU social icon \ No newline at end of file +GNU social \ No newline at end of file diff --git a/icons/go.svg b/icons/go.svg index 969913e0..0cadd56b 100644 --- a/icons/go.svg +++ b/icons/go.svg @@ -1 +1 @@ -Go icon \ No newline at end of file +Go \ No newline at end of file diff --git a/icons/godotengine.svg b/icons/godotengine.svg index aae88071..cd40190f 100644 --- a/icons/godotengine.svg +++ b/icons/godotengine.svg @@ -1 +1 @@ -Godot Engine icon \ No newline at end of file +Godot Engine \ No newline at end of file diff --git a/icons/gofundme.svg b/icons/gofundme.svg index 99e50574..97aa24b2 100644 --- a/icons/gofundme.svg +++ b/icons/gofundme.svg @@ -1 +1 @@ -GoFundMe icon \ No newline at end of file +GoFundMe \ No newline at end of file diff --git a/icons/gog-dot-com.svg b/icons/gog-dot-com.svg index 5a605b88..512e29fc 100644 --- a/icons/gog-dot-com.svg +++ b/icons/gog-dot-com.svg @@ -1 +1 @@ -GOG.com icon \ No newline at end of file +GOG.com \ No newline at end of file diff --git a/icons/goldenline.svg b/icons/goldenline.svg index 28e9fee6..ce6f602d 100644 --- a/icons/goldenline.svg +++ b/icons/goldenline.svg @@ -1 +1 @@ -GoldenLine icon \ No newline at end of file +GoldenLine \ No newline at end of file diff --git a/icons/goodreads.svg b/icons/goodreads.svg index d4822fbe..d6208d07 100644 --- a/icons/goodreads.svg +++ b/icons/goodreads.svg @@ -1 +1 @@ -Goodreads icon \ No newline at end of file +Goodreads \ No newline at end of file diff --git a/icons/google.svg b/icons/google.svg index 72cd026f..2eaf9155 100644 --- a/icons/google.svg +++ b/icons/google.svg @@ -1 +1 @@ -Google icon \ No newline at end of file +Google \ No newline at end of file diff --git a/icons/googleads.svg b/icons/googleads.svg index a4de0bdd..fc695ad0 100644 --- a/icons/googleads.svg +++ b/icons/googleads.svg @@ -1 +1 @@ -Google Ads icon \ No newline at end of file +Google Ads \ No newline at end of file diff --git a/icons/googleadsense.svg b/icons/googleadsense.svg index ecdbb0a0..fcdad31b 100644 --- a/icons/googleadsense.svg +++ b/icons/googleadsense.svg @@ -1 +1 @@ -Google AdSense icon \ No newline at end of file +Google AdSense \ No newline at end of file diff --git a/icons/googleanalytics.svg b/icons/googleanalytics.svg index c600b29c..101c015a 100644 --- a/icons/googleanalytics.svg +++ b/icons/googleanalytics.svg @@ -1 +1 @@ -Google Analytics icon \ No newline at end of file +Google Analytics \ No newline at end of file diff --git a/icons/googleassistant.svg b/icons/googleassistant.svg index 3981b757..f359adce 100644 --- a/icons/googleassistant.svg +++ b/icons/googleassistant.svg @@ -1 +1 @@ -Google Assistant icon \ No newline at end of file +Google Assistant \ No newline at end of file diff --git a/icons/googlecalendar.svg b/icons/googlecalendar.svg index 7c2a188d..6049d100 100644 --- a/icons/googlecalendar.svg +++ b/icons/googlecalendar.svg @@ -1 +1 @@ -Google Calendar icon \ No newline at end of file +Google Calendar \ No newline at end of file diff --git a/icons/googlecardboard.svg b/icons/googlecardboard.svg index c9cbf22b..6c87e14a 100644 --- a/icons/googlecardboard.svg +++ b/icons/googlecardboard.svg @@ -1 +1 @@ -Google Cardboard icon \ No newline at end of file +Google Cardboard \ No newline at end of file diff --git a/icons/googlecast.svg b/icons/googlecast.svg index e422cb6a..6c6519f8 100644 --- a/icons/googlecast.svg +++ b/icons/googlecast.svg @@ -1 +1 @@ -Google Cast icon +Google Cast \ No newline at end of file diff --git a/icons/googlechat.svg b/icons/googlechat.svg index b27ed61c..bd1c7b60 100644 --- a/icons/googlechat.svg +++ b/icons/googlechat.svg @@ -1 +1 @@ -Google Chat icon \ No newline at end of file +Google Chat \ No newline at end of file diff --git a/icons/googlechrome.svg b/icons/googlechrome.svg index 95984893..919ac2a1 100644 --- a/icons/googlechrome.svg +++ b/icons/googlechrome.svg @@ -1 +1 @@ -Google Chrome icon \ No newline at end of file +Google Chrome \ No newline at end of file diff --git a/icons/googleclassroom.svg b/icons/googleclassroom.svg index 86d38820..9678f11f 100644 --- a/icons/googleclassroom.svg +++ b/icons/googleclassroom.svg @@ -1 +1 @@ -Google Classroom icon +Google Classroom \ No newline at end of file diff --git a/icons/googlecloud.svg b/icons/googlecloud.svg index 17d6a4f6..b7b4dcc0 100644 --- a/icons/googlecloud.svg +++ b/icons/googlecloud.svg @@ -1 +1 @@ -Google Cloud icon \ No newline at end of file +Google Cloud \ No newline at end of file diff --git a/icons/googlecolab.svg b/icons/googlecolab.svg index 3d16a03b..1870fe2f 100644 --- a/icons/googlecolab.svg +++ b/icons/googlecolab.svg @@ -1 +1 @@ -Google Colab icon \ No newline at end of file +Google Colab \ No newline at end of file diff --git a/icons/googledomains.svg b/icons/googledomains.svg index 57c5abda..a1a6b691 100644 --- a/icons/googledomains.svg +++ b/icons/googledomains.svg @@ -1 +1 @@ -Google Domains icon \ No newline at end of file +Google Domains \ No newline at end of file diff --git a/icons/googledrive.svg b/icons/googledrive.svg index 046f9b9a..6b8d63f9 100644 --- a/icons/googledrive.svg +++ b/icons/googledrive.svg @@ -1 +1 @@ -Google Drive icon \ No newline at end of file +Google Drive \ No newline at end of file diff --git a/icons/googleearth.svg b/icons/googleearth.svg index 2cee60e5..579ef4a1 100644 --- a/icons/googleearth.svg +++ b/icons/googleearth.svg @@ -1 +1 @@ -Google Earth icon +Google Earth \ No newline at end of file diff --git a/icons/googlefit.svg b/icons/googlefit.svg index f8853e6f..b953163a 100644 --- a/icons/googlefit.svg +++ b/icons/googlefit.svg @@ -1 +1 @@ -Google Fit icon \ No newline at end of file +Google Fit \ No newline at end of file diff --git a/icons/googlefonts.svg b/icons/googlefonts.svg index bf1302c0..6e92f54f 100644 --- a/icons/googlefonts.svg +++ b/icons/googlefonts.svg @@ -1 +1 @@ -Google Fonts icon \ No newline at end of file +Google Fonts \ No newline at end of file diff --git a/icons/googlehangouts.svg b/icons/googlehangouts.svg index 0ee1ed52..7cbe6f13 100644 --- a/icons/googlehangouts.svg +++ b/icons/googlehangouts.svg @@ -1 +1 @@ -Google Hangouts icon \ No newline at end of file +Google Hangouts \ No newline at end of file diff --git a/icons/googlekeep.svg b/icons/googlekeep.svg index 8e5d5ddd..99f09441 100644 --- a/icons/googlekeep.svg +++ b/icons/googlekeep.svg @@ -1 +1 @@ -Google Keep icon \ No newline at end of file +Google Keep \ No newline at end of file diff --git a/icons/googlelens.svg b/icons/googlelens.svg index e8969132..19d4da0e 100644 --- a/icons/googlelens.svg +++ b/icons/googlelens.svg @@ -1 +1 @@ -Google Lens icon +Google Lens \ No newline at end of file diff --git a/icons/googlemaps.svg b/icons/googlemaps.svg index 5847b406..2033bd85 100644 --- a/icons/googlemaps.svg +++ b/icons/googlemaps.svg @@ -1 +1 @@ -Google Maps icon \ No newline at end of file +Google Maps \ No newline at end of file diff --git a/icons/googlemeet.svg b/icons/googlemeet.svg index a872c87b..948d32bd 100644 --- a/icons/googlemeet.svg +++ b/icons/googlemeet.svg @@ -1 +1 @@ -Google Meet icon \ No newline at end of file +Google Meet \ No newline at end of file diff --git a/icons/googlemessages.svg b/icons/googlemessages.svg index ea95a5ea..9e005739 100644 --- a/icons/googlemessages.svg +++ b/icons/googlemessages.svg @@ -1 +1 @@ -Google Messages icon +Google Messages \ No newline at end of file diff --git a/icons/googlemybusiness.svg b/icons/googlemybusiness.svg index 0e11695f..dc738bcb 100644 --- a/icons/googlemybusiness.svg +++ b/icons/googlemybusiness.svg @@ -1 +1 @@ -Google My Business icon \ No newline at end of file +Google My Business \ No newline at end of file diff --git a/icons/googlenearby.svg b/icons/googlenearby.svg index 849fcc20..db54aad5 100644 --- a/icons/googlenearby.svg +++ b/icons/googlenearby.svg @@ -1 +1 @@ -Google Nearby icon \ No newline at end of file +Google Nearby \ No newline at end of file diff --git a/icons/googlenews.svg b/icons/googlenews.svg index e290783f..a1cfcdab 100644 --- a/icons/googlenews.svg +++ b/icons/googlenews.svg @@ -1 +1 @@ -Google News icon \ No newline at end of file +Google News \ No newline at end of file diff --git a/icons/googleoptimize.svg b/icons/googleoptimize.svg index 44034240..54c401e5 100644 --- a/icons/googleoptimize.svg +++ b/icons/googleoptimize.svg @@ -1 +1 @@ -Google Optimize icon \ No newline at end of file +Google Optimize \ No newline at end of file diff --git a/icons/googlepay.svg b/icons/googlepay.svg index e50088e3..5c393d6a 100644 --- a/icons/googlepay.svg +++ b/icons/googlepay.svg @@ -1 +1 @@ -Google Pay icon \ No newline at end of file +Google Pay \ No newline at end of file diff --git a/icons/googlephotos.svg b/icons/googlephotos.svg index c4f50374..81ce3687 100644 --- a/icons/googlephotos.svg +++ b/icons/googlephotos.svg @@ -1 +1 @@ -Google Photos icon \ No newline at end of file +Google Photos \ No newline at end of file diff --git a/icons/googleplay.svg b/icons/googleplay.svg index eb14391f..3ce505fc 100644 --- a/icons/googleplay.svg +++ b/icons/googleplay.svg @@ -1 +1 @@ -Google Play icon \ No newline at end of file +Google Play \ No newline at end of file diff --git a/icons/googlepodcasts.svg b/icons/googlepodcasts.svg index 95d8c92c..ddd9a3f3 100644 --- a/icons/googlepodcasts.svg +++ b/icons/googlepodcasts.svg @@ -1 +1 @@ -Google Podcasts icon \ No newline at end of file +Google Podcasts \ No newline at end of file diff --git a/icons/googlescholar.svg b/icons/googlescholar.svg index f2a96092..159b50b1 100644 --- a/icons/googlescholar.svg +++ b/icons/googlescholar.svg @@ -1 +1 @@ -Google Scholar icon \ No newline at end of file +Google Scholar \ No newline at end of file diff --git a/icons/googlesearchconsole.svg b/icons/googlesearchconsole.svg index 75558ab9..275c7c9c 100644 --- a/icons/googlesearchconsole.svg +++ b/icons/googlesearchconsole.svg @@ -1 +1 @@ -Google Search Console icon \ No newline at end of file +Google Search Console \ No newline at end of file diff --git a/icons/googlesheets.svg b/icons/googlesheets.svg index ecfb65ea..c16ae49c 100644 --- a/icons/googlesheets.svg +++ b/icons/googlesheets.svg @@ -1 +1 @@ -Google Sheets icon \ No newline at end of file +Google Sheets \ No newline at end of file diff --git a/icons/googlestreetview.svg b/icons/googlestreetview.svg index d4b4b708..3fc33dd2 100644 --- a/icons/googlestreetview.svg +++ b/icons/googlestreetview.svg @@ -1 +1 @@ -Google Street View icon \ No newline at end of file +Google Street View \ No newline at end of file diff --git a/icons/googletagmanager.svg b/icons/googletagmanager.svg index ab648016..982ef891 100644 --- a/icons/googletagmanager.svg +++ b/icons/googletagmanager.svg @@ -1 +1 @@ -Google Tag Manager icon \ No newline at end of file +Google Tag Manager \ No newline at end of file diff --git a/icons/googletranslate.svg b/icons/googletranslate.svg index 28b051fc..49b7cbd0 100644 --- a/icons/googletranslate.svg +++ b/icons/googletranslate.svg @@ -1 +1 @@ -Google Translate icon \ No newline at end of file +Google Translate \ No newline at end of file diff --git a/icons/gotomeeting.svg b/icons/gotomeeting.svg index 1d42b0a4..6c6e9f91 100644 --- a/icons/gotomeeting.svg +++ b/icons/gotomeeting.svg @@ -1 +1 @@ -GoToMeeting icon \ No newline at end of file +GoToMeeting \ No newline at end of file diff --git a/icons/gradle.svg b/icons/gradle.svg index 512affec..c7a86146 100644 --- a/icons/gradle.svg +++ b/icons/gradle.svg @@ -1 +1 @@ -Gradle icon \ No newline at end of file +Gradle \ No newline at end of file diff --git a/icons/grafana.svg b/icons/grafana.svg index 2087d265..a495a662 100644 --- a/icons/grafana.svg +++ b/icons/grafana.svg @@ -1 +1 @@ -Grafana icon \ No newline at end of file +Grafana \ No newline at end of file diff --git a/icons/grammarly.svg b/icons/grammarly.svg index 84dc0d9e..8d460d58 100644 --- a/icons/grammarly.svg +++ b/icons/grammarly.svg @@ -1 +1 @@ -Grammarly icon \ No newline at end of file +Grammarly \ No newline at end of file diff --git a/icons/graphql.svg b/icons/graphql.svg index 8c919678..3f67dc0e 100644 --- a/icons/graphql.svg +++ b/icons/graphql.svg @@ -1 +1 @@ -GraphQL icon \ No newline at end of file +GraphQL \ No newline at end of file diff --git a/icons/grav.svg b/icons/grav.svg index 61d7e507..0d284b03 100644 --- a/icons/grav.svg +++ b/icons/grav.svg @@ -1 +1 @@ -Grav icon \ No newline at end of file +Grav \ No newline at end of file diff --git a/icons/gravatar.svg b/icons/gravatar.svg index 75a401bf..c71470fd 100644 --- a/icons/gravatar.svg +++ b/icons/gravatar.svg @@ -1 +1 @@ -Gravatar icon \ No newline at end of file +Gravatar \ No newline at end of file diff --git a/icons/graylog.svg b/icons/graylog.svg index a1143206..ca0bdcc5 100644 --- a/icons/graylog.svg +++ b/icons/graylog.svg @@ -1 +1 @@ -Graylog icon \ No newline at end of file +Graylog \ No newline at end of file diff --git a/icons/greensock.svg b/icons/greensock.svg index e4a15773..7b31c927 100644 --- a/icons/greensock.svg +++ b/icons/greensock.svg @@ -1 +1 @@ -GreenSock icon \ No newline at end of file +GreenSock \ No newline at end of file diff --git a/icons/griddotai.svg b/icons/griddotai.svg index 6a1edd45..6f87684b 100644 --- a/icons/griddotai.svg +++ b/icons/griddotai.svg @@ -1 +1 @@ -Grid.ai icon \ No newline at end of file +Grid.ai \ No newline at end of file diff --git a/icons/gridsome.svg b/icons/gridsome.svg index 06d57586..3f8aa194 100644 --- a/icons/gridsome.svg +++ b/icons/gridsome.svg @@ -1 +1 @@ -Gridsome icon \ No newline at end of file +Gridsome \ No newline at end of file diff --git a/icons/groupon.svg b/icons/groupon.svg index 10621966..355c5694 100644 --- a/icons/groupon.svg +++ b/icons/groupon.svg @@ -1 +1 @@ -Groupon icon \ No newline at end of file +Groupon \ No newline at end of file diff --git a/icons/grubhub.svg b/icons/grubhub.svg index 4dbed3fa..66567344 100644 --- a/icons/grubhub.svg +++ b/icons/grubhub.svg @@ -1 +1 @@ -Grubhub icon \ No newline at end of file +Grubhub \ No newline at end of file diff --git a/icons/grunt.svg b/icons/grunt.svg index 93d19307..b430c9c2 100644 --- a/icons/grunt.svg +++ b/icons/grunt.svg @@ -1 +1 @@ -Grunt icon +Grunt \ No newline at end of file diff --git a/icons/guangzhoumetro.svg b/icons/guangzhoumetro.svg index e47a6b5f..c0701b2b 100644 --- a/icons/guangzhoumetro.svg +++ b/icons/guangzhoumetro.svg @@ -1 +1 @@ -Guangzhou Metro icon \ No newline at end of file +Guangzhou Metro \ No newline at end of file diff --git a/icons/gulp.svg b/icons/gulp.svg index cfc65ced..17b789ae 100644 --- a/icons/gulp.svg +++ b/icons/gulp.svg @@ -1 +1 @@ -gulp icon +gulp \ No newline at end of file diff --git a/icons/gumroad.svg b/icons/gumroad.svg index ca99e4e0..e9280871 100644 --- a/icons/gumroad.svg +++ b/icons/gumroad.svg @@ -1 +1 @@ -Gumroad icon \ No newline at end of file +Gumroad \ No newline at end of file diff --git a/icons/gumtree.svg b/icons/gumtree.svg index f1350a47..769ada9b 100644 --- a/icons/gumtree.svg +++ b/icons/gumtree.svg @@ -1 +1 @@ -Gumtree icon \ No newline at end of file +Gumtree \ No newline at end of file diff --git a/icons/gutenberg.svg b/icons/gutenberg.svg index 62f24668..e60eaab8 100644 --- a/icons/gutenberg.svg +++ b/icons/gutenberg.svg @@ -1 +1 @@ -Gutenberg icon \ No newline at end of file +Gutenberg \ No newline at end of file diff --git a/icons/habr.svg b/icons/habr.svg index 2cc96bc7..d8427b1d 100644 --- a/icons/habr.svg +++ b/icons/habr.svg @@ -1 +1 @@ -Habr icon \ No newline at end of file +Habr \ No newline at end of file diff --git a/icons/hackaday.svg b/icons/hackaday.svg index e1241493..6720559b 100644 --- a/icons/hackaday.svg +++ b/icons/hackaday.svg @@ -1 +1 @@ -Hackaday icon \ No newline at end of file +Hackaday \ No newline at end of file diff --git a/icons/hackclub.svg b/icons/hackclub.svg index 49927ab4..ef1fbf19 100644 --- a/icons/hackclub.svg +++ b/icons/hackclub.svg @@ -1 +1 @@ -Hack Club icon +Hack Club \ No newline at end of file diff --git a/icons/hackerearth.svg b/icons/hackerearth.svg index b8b1813f..52797981 100644 --- a/icons/hackerearth.svg +++ b/icons/hackerearth.svg @@ -1 +1 @@ -HackerEarth icon \ No newline at end of file +HackerEarth \ No newline at end of file diff --git a/icons/hackerone.svg b/icons/hackerone.svg index e6ce31e1..f5a77378 100644 --- a/icons/hackerone.svg +++ b/icons/hackerone.svg @@ -1 +1 @@ -HackerOne icon \ No newline at end of file +HackerOne \ No newline at end of file diff --git a/icons/hackerrank.svg b/icons/hackerrank.svg index 1083f279..8a1174f9 100644 --- a/icons/hackerrank.svg +++ b/icons/hackerrank.svg @@ -1 +1 @@ -HackerRank icon \ No newline at end of file +HackerRank \ No newline at end of file diff --git a/icons/hackster.svg b/icons/hackster.svg index 8574fb31..e55874be 100644 --- a/icons/hackster.svg +++ b/icons/hackster.svg @@ -1 +1 @@ -Hackster icon \ No newline at end of file +Hackster \ No newline at end of file diff --git a/icons/hackthebox.svg b/icons/hackthebox.svg index 9135c8ac..15493927 100644 --- a/icons/hackthebox.svg +++ b/icons/hackthebox.svg @@ -1 +1 @@ -Hack The Box icon \ No newline at end of file +Hack The Box \ No newline at end of file diff --git a/icons/handshake.svg b/icons/handshake.svg index 63c0c411..1647e9ed 100644 --- a/icons/handshake.svg +++ b/icons/handshake.svg @@ -1 +1 @@ -Handshake icon \ No newline at end of file +Handshake \ No newline at end of file diff --git a/icons/handshake_protocol.svg b/icons/handshake_protocol.svg index 5694030f..626a5547 100644 --- a/icons/handshake_protocol.svg +++ b/icons/handshake_protocol.svg @@ -1 +1 @@ -Handshake icon \ No newline at end of file +Handshake \ No newline at end of file diff --git a/icons/happycow.svg b/icons/happycow.svg index 7291b149..8168040d 100644 --- a/icons/happycow.svg +++ b/icons/happycow.svg @@ -1 +1 @@ -HappyCow icon \ No newline at end of file +HappyCow \ No newline at end of file diff --git a/icons/harbor.svg b/icons/harbor.svg index 2f1c383a..928349b4 100644 --- a/icons/harbor.svg +++ b/icons/harbor.svg @@ -1 +1 @@ -Harbor icon \ No newline at end of file +Harbor \ No newline at end of file diff --git a/icons/hashnode.svg b/icons/hashnode.svg index 05d98ac7..c991f6b3 100644 --- a/icons/hashnode.svg +++ b/icons/hashnode.svg @@ -1 +1 @@ -Hashnode icon \ No newline at end of file +Hashnode \ No newline at end of file diff --git a/icons/haskell.svg b/icons/haskell.svg index a01345bd..f6b379cc 100644 --- a/icons/haskell.svg +++ b/icons/haskell.svg @@ -1 +1 @@ -Haskell icon \ No newline at end of file +Haskell \ No newline at end of file diff --git a/icons/hasura.svg b/icons/hasura.svg index 7d6db3f7..feb480c0 100644 --- a/icons/hasura.svg +++ b/icons/hasura.svg @@ -1 +1 @@ -Hasura icon \ No newline at end of file +Hasura \ No newline at end of file diff --git a/icons/hatenabookmark.svg b/icons/hatenabookmark.svg index 8d23fe76..631c55a9 100644 --- a/icons/hatenabookmark.svg +++ b/icons/hatenabookmark.svg @@ -1 +1 @@ -Hatena Bookmark icon \ No newline at end of file +Hatena Bookmark \ No newline at end of file diff --git a/icons/haveibeenpwned.svg b/icons/haveibeenpwned.svg index c0af23f3..5e32edb9 100644 --- a/icons/haveibeenpwned.svg +++ b/icons/haveibeenpwned.svg @@ -1 +1 @@ -haveibeenpwned icon \ No newline at end of file +haveibeenpwned \ No newline at end of file diff --git a/icons/haxe.svg b/icons/haxe.svg index c29ffd8f..2c47da73 100644 --- a/icons/haxe.svg +++ b/icons/haxe.svg @@ -1 +1 @@ -Haxe icon \ No newline at end of file +Haxe \ No newline at end of file diff --git a/icons/hbo.svg b/icons/hbo.svg index 429783f5..3d8cc2c1 100644 --- a/icons/hbo.svg +++ b/icons/hbo.svg @@ -1 +1 @@ -HBO icon \ No newline at end of file +HBO \ No newline at end of file diff --git a/icons/hcl.svg b/icons/hcl.svg index cd6ad455..972cb46d 100644 --- a/icons/hcl.svg +++ b/icons/hcl.svg @@ -1 +1 @@ -HCL icon \ No newline at end of file +HCL \ No newline at end of file diff --git a/icons/headspace.svg b/icons/headspace.svg index b767aecc..2d568899 100644 --- a/icons/headspace.svg +++ b/icons/headspace.svg @@ -1 +1 @@ -Headspace icon \ No newline at end of file +Headspace \ No newline at end of file diff --git a/icons/hellofresh.svg b/icons/hellofresh.svg index 09364c49..675ab0b1 100644 --- a/icons/hellofresh.svg +++ b/icons/hellofresh.svg @@ -1 +1 @@ -HelloFresh icon \ No newline at end of file +HelloFresh \ No newline at end of file diff --git a/icons/hellyhansen.svg b/icons/hellyhansen.svg index faac8559..d4d0d270 100644 --- a/icons/hellyhansen.svg +++ b/icons/hellyhansen.svg @@ -1 +1 @@ -Helly Hansen icon \ No newline at end of file +Helly Hansen \ No newline at end of file diff --git a/icons/helm.svg b/icons/helm.svg index ab2d3817..ac7b2391 100644 --- a/icons/helm.svg +++ b/icons/helm.svg @@ -1 +1 @@ -Helm icon \ No newline at end of file +Helm \ No newline at end of file diff --git a/icons/helpdesk.svg b/icons/helpdesk.svg index 3561011a..0c349913 100644 --- a/icons/helpdesk.svg +++ b/icons/helpdesk.svg @@ -1 +1 @@ -HelpDesk icon \ No newline at end of file +HelpDesk \ No newline at end of file diff --git a/icons/here.svg b/icons/here.svg index 0aa80bf0..6846cca4 100644 --- a/icons/here.svg +++ b/icons/here.svg @@ -1 +1 @@ -HERE icon \ No newline at end of file +HERE \ No newline at end of file diff --git a/icons/heroku.svg b/icons/heroku.svg index 2430e474..bdec9b57 100644 --- a/icons/heroku.svg +++ b/icons/heroku.svg @@ -1 +1 @@ -Heroku icon \ No newline at end of file +Heroku \ No newline at end of file diff --git a/icons/hexo.svg b/icons/hexo.svg index 3073d2cd..44a7f8bf 100644 --- a/icons/hexo.svg +++ b/icons/hexo.svg @@ -1 +1 @@ -Hexo icon \ No newline at end of file +Hexo \ No newline at end of file diff --git a/icons/hey.svg b/icons/hey.svg index fc1e5b7b..4f458716 100644 --- a/icons/hey.svg +++ b/icons/hey.svg @@ -1 +1 @@ -HEY icon \ No newline at end of file +HEY \ No newline at end of file diff --git a/icons/hibernate.svg b/icons/hibernate.svg index 7f8c0c60..fd9dd24a 100644 --- a/icons/hibernate.svg +++ b/icons/hibernate.svg @@ -1 +1 @@ -Hibernate icon \ No newline at end of file +Hibernate \ No newline at end of file diff --git a/icons/hilton.svg b/icons/hilton.svg index 6c2a38a4..a2359630 100644 --- a/icons/hilton.svg +++ b/icons/hilton.svg @@ -1 +1 @@ -Hilton icon \ No newline at end of file +Hilton \ No newline at end of file diff --git a/icons/hitachi.svg b/icons/hitachi.svg index a40dba50..c5197a4f 100644 --- a/icons/hitachi.svg +++ b/icons/hitachi.svg @@ -1 +1 @@ -Hitachi icon \ No newline at end of file +Hitachi \ No newline at end of file diff --git a/icons/hive.svg b/icons/hive.svg index c4ed8601..4a14bd1e 100644 --- a/icons/hive.svg +++ b/icons/hive.svg @@ -1 +1 @@ -Hive icon \ No newline at end of file +Hive \ No newline at end of file diff --git a/icons/hive_blockchain.svg b/icons/hive_blockchain.svg index 617c6e7d..49cf33e9 100644 --- a/icons/hive_blockchain.svg +++ b/icons/hive_blockchain.svg @@ -1 +1 @@ -Hive icon +Hive \ No newline at end of file diff --git a/icons/homeadvisor.svg b/icons/homeadvisor.svg index 67faec0c..5aa2385a 100644 --- a/icons/homeadvisor.svg +++ b/icons/homeadvisor.svg @@ -1 +1 @@ -HomeAdvisor icon \ No newline at end of file +HomeAdvisor \ No newline at end of file diff --git a/icons/homeassistant.svg b/icons/homeassistant.svg index 8513241e..1b8e373b 100644 --- a/icons/homeassistant.svg +++ b/icons/homeassistant.svg @@ -1 +1 @@ -Home Assistant icon +Home Assistant \ No newline at end of file diff --git a/icons/homeassistantcommunitystore.svg b/icons/homeassistantcommunitystore.svg index e820d71d..5e384f8d 100644 --- a/icons/homeassistantcommunitystore.svg +++ b/icons/homeassistantcommunitystore.svg @@ -1 +1 @@ -Home Assistant Community Store icon \ No newline at end of file +Home Assistant Community Store \ No newline at end of file diff --git a/icons/homebrew.svg b/icons/homebrew.svg index f2c8926b..71d0ae28 100755 --- a/icons/homebrew.svg +++ b/icons/homebrew.svg @@ -1 +1 @@ -Homebrew icon \ No newline at end of file +Homebrew \ No newline at end of file diff --git a/icons/homebridge.svg b/icons/homebridge.svg index ffbd2fc9..fdb65a81 100644 --- a/icons/homebridge.svg +++ b/icons/homebridge.svg @@ -1 +1 @@ -Homebridge icon \ No newline at end of file +Homebridge \ No newline at end of file diff --git a/icons/homify.svg b/icons/homify.svg index 0612c505..ee3bef66 100644 --- a/icons/homify.svg +++ b/icons/homify.svg @@ -1 +1 @@ -homify icon \ No newline at end of file +homify \ No newline at end of file diff --git a/icons/honda.svg b/icons/honda.svg index a51e7e28..df40d94c 100644 --- a/icons/honda.svg +++ b/icons/honda.svg @@ -1 +1 @@ -Honda icon \ No newline at end of file +Honda \ No newline at end of file diff --git a/icons/hootsuite.svg b/icons/hootsuite.svg index b8d79d42..63636dd6 100644 --- a/icons/hootsuite.svg +++ b/icons/hootsuite.svg @@ -1 +1 @@ -Hootsuite icon \ No newline at end of file +Hootsuite \ No newline at end of file diff --git a/icons/hoppscotch.svg b/icons/hoppscotch.svg index 27cc31ea..d5c81955 100644 --- a/icons/hoppscotch.svg +++ b/icons/hoppscotch.svg @@ -1 +1 @@ -Hoppscotch icon \ No newline at end of file +Hoppscotch \ No newline at end of file diff --git a/icons/hotels-dot-com.svg b/icons/hotels-dot-com.svg index 195fe54f..82c1e6bd 100644 --- a/icons/hotels-dot-com.svg +++ b/icons/hotels-dot-com.svg @@ -1 +1 @@ -Hotels.com icon \ No newline at end of file +Hotels.com \ No newline at end of file diff --git a/icons/hotjar.svg b/icons/hotjar.svg index 3e17cb93..76803fbb 100644 --- a/icons/hotjar.svg +++ b/icons/hotjar.svg @@ -1 +1 @@ -Hotjar icon \ No newline at end of file +Hotjar \ No newline at end of file diff --git a/icons/houdini.svg b/icons/houdini.svg index 1d593dec..f42c166e 100644 --- a/icons/houdini.svg +++ b/icons/houdini.svg @@ -1 +1 @@ -Houdini icon \ No newline at end of file +Houdini \ No newline at end of file diff --git a/icons/houzz.svg b/icons/houzz.svg index d2b68df4..6692acbe 100644 --- a/icons/houzz.svg +++ b/icons/houzz.svg @@ -1 +1 @@ -Houzz icon +Houzz \ No newline at end of file diff --git a/icons/hp.svg b/icons/hp.svg index 3b02ed5f..387b06ec 100644 --- a/icons/hp.svg +++ b/icons/hp.svg @@ -1 +1 @@ -HP icon \ No newline at end of file +HP \ No newline at end of file diff --git a/icons/html5.svg b/icons/html5.svg index 27c1d292..e8b1e371 100644 --- a/icons/html5.svg +++ b/icons/html5.svg @@ -1 +1 @@ -HTML5 icon \ No newline at end of file +HTML5 \ No newline at end of file diff --git a/icons/htmlacademy.svg b/icons/htmlacademy.svg index 035b073d..c7285c09 100644 --- a/icons/htmlacademy.svg +++ b/icons/htmlacademy.svg @@ -1 +1 @@ -HTML Academy icon \ No newline at end of file +HTML Academy \ No newline at end of file diff --git a/icons/huawei.svg b/icons/huawei.svg index 010155b3..0c72bab8 100644 --- a/icons/huawei.svg +++ b/icons/huawei.svg @@ -1 +1 @@ -Huawei icon \ No newline at end of file +Huawei \ No newline at end of file diff --git a/icons/hubspot.svg b/icons/hubspot.svg index 0d790e35..ec139748 100644 --- a/icons/hubspot.svg +++ b/icons/hubspot.svg @@ -1 +1 @@ -HubSpot icon \ No newline at end of file +HubSpot \ No newline at end of file diff --git a/icons/hugo.svg b/icons/hugo.svg index dfb18f0e..fb89cc8b 100644 --- a/icons/hugo.svg +++ b/icons/hugo.svg @@ -1 +1 @@ -Hugo icon +Hugo \ No newline at end of file diff --git a/icons/hulu.svg b/icons/hulu.svg index 2469f7f0..7b6bb285 100644 --- a/icons/hulu.svg +++ b/icons/hulu.svg @@ -1 +1 @@ -Hulu icon \ No newline at end of file +Hulu \ No newline at end of file diff --git a/icons/humblebundle.svg b/icons/humblebundle.svg index 6d9fdcef..b0e8eb80 100644 --- a/icons/humblebundle.svg +++ b/icons/humblebundle.svg @@ -1 +1 @@ -Humble Bundle icon \ No newline at end of file +Humble Bundle \ No newline at end of file diff --git a/icons/hungryjacks.svg b/icons/hungryjacks.svg index 66f5ac1f..5126adaa 100644 --- a/icons/hungryjacks.svg +++ b/icons/hungryjacks.svg @@ -1 +1 @@ -Hungry Jack's icon \ No newline at end of file +Hungry Jack's \ No newline at end of file diff --git a/icons/hurriyetemlak.svg b/icons/hurriyetemlak.svg index 9860af50..97945bb8 100644 --- a/icons/hurriyetemlak.svg +++ b/icons/hurriyetemlak.svg @@ -1 +1 @@ -Hurriyetemlak icon \ No newline at end of file +Hurriyetemlak \ No newline at end of file diff --git a/icons/husqvarna.svg b/icons/husqvarna.svg index 5a8cb880..5ddb439e 100644 --- a/icons/husqvarna.svg +++ b/icons/husqvarna.svg @@ -1 +1 @@ -Husqvarna icon \ No newline at end of file +Husqvarna \ No newline at end of file diff --git a/icons/hyper.svg b/icons/hyper.svg index 90a2e77f..801a04e5 100644 --- a/icons/hyper.svg +++ b/icons/hyper.svg @@ -1 +1 @@ -Hyper icon \ No newline at end of file +Hyper \ No newline at end of file diff --git a/icons/hyperledger.svg b/icons/hyperledger.svg index 86c65e60..6659f209 100644 --- a/icons/hyperledger.svg +++ b/icons/hyperledger.svg @@ -1 +1 @@ -Hyperledger icon \ No newline at end of file +Hyperledger \ No newline at end of file diff --git a/icons/hypothesis.svg b/icons/hypothesis.svg index 8175f028..045da6c3 100644 --- a/icons/hypothesis.svg +++ b/icons/hypothesis.svg @@ -1 +1 @@ -Hypothesis icon \ No newline at end of file +Hypothesis \ No newline at end of file diff --git a/icons/hyundai.svg b/icons/hyundai.svg index 379d29e2..e2198490 100644 --- a/icons/hyundai.svg +++ b/icons/hyundai.svg @@ -1 +1 @@ -Hyundai icon \ No newline at end of file +Hyundai \ No newline at end of file diff --git a/icons/iata.svg b/icons/iata.svg index fbf30788..1df48879 100644 --- a/icons/iata.svg +++ b/icons/iata.svg @@ -1 +1 @@ -Iata icon \ No newline at end of file +Iata \ No newline at end of file diff --git a/icons/ibeacon.svg b/icons/ibeacon.svg index f33fddbe..92044f40 100644 --- a/icons/ibeacon.svg +++ b/icons/ibeacon.svg @@ -1 +1 @@ -iBeacon icon \ No newline at end of file +iBeacon \ No newline at end of file diff --git a/icons/ibm.svg b/icons/ibm.svg index 6d6c5ef2..b36e9dc8 100644 --- a/icons/ibm.svg +++ b/icons/ibm.svg @@ -1 +1 @@ -IBM icon \ No newline at end of file +IBM \ No newline at end of file diff --git a/icons/ibmwatson.svg b/icons/ibmwatson.svg index 1b930dae..e35e5600 100644 --- a/icons/ibmwatson.svg +++ b/icons/ibmwatson.svg @@ -1 +1 @@ -IBM Watson icon \ No newline at end of file +IBM Watson \ No newline at end of file diff --git a/icons/icinga.svg b/icons/icinga.svg index 4c0ede6f..5ed60b95 100644 --- a/icons/icinga.svg +++ b/icons/icinga.svg @@ -1 +1 @@ -Icinga icon +Icinga \ No newline at end of file diff --git a/icons/icloud.svg b/icons/icloud.svg index 14b54bf3..e7c7e075 100644 --- a/icons/icloud.svg +++ b/icons/icloud.svg @@ -1 +1 @@ -iCloud icon \ No newline at end of file +iCloud \ No newline at end of file diff --git a/icons/icomoon.svg b/icons/icomoon.svg index 0e62ab89..f0ca01ce 100644 --- a/icons/icomoon.svg +++ b/icons/icomoon.svg @@ -1 +1 @@ -IcoMoon icon +IcoMoon \ No newline at end of file diff --git a/icons/icon.svg b/icons/icon.svg index 7c42ead3..edb02cea 100644 --- a/icons/icon.svg +++ b/icons/icon.svg @@ -1 +1 @@ -ICON icon \ No newline at end of file +ICON \ No newline at end of file diff --git a/icons/iconfinder.svg b/icons/iconfinder.svg index ec0aaea1..a5b9d004 100644 --- a/icons/iconfinder.svg +++ b/icons/iconfinder.svg @@ -1 +1 @@ -Iconfinder icon \ No newline at end of file +Iconfinder \ No newline at end of file diff --git a/icons/iconify.svg b/icons/iconify.svg index 6bc17aa4..6bff6e19 100644 --- a/icons/iconify.svg +++ b/icons/iconify.svg @@ -1 +1 @@ -Iconify icon \ No newline at end of file +Iconify \ No newline at end of file diff --git a/icons/iconjar.svg b/icons/iconjar.svg index 93361b4d..554b09a8 100644 --- a/icons/iconjar.svg +++ b/icons/iconjar.svg @@ -1 +1 @@ -IconJar icon +IconJar \ No newline at end of file diff --git a/icons/icq.svg b/icons/icq.svg index b7e480ca..191636cc 100644 --- a/icons/icq.svg +++ b/icons/icq.svg @@ -1 +1 @@ -ICQ icon \ No newline at end of file +ICQ \ No newline at end of file diff --git a/icons/ieee.svg b/icons/ieee.svg index 9417e8bc..a1d63af0 100644 --- a/icons/ieee.svg +++ b/icons/ieee.svg @@ -1 +1 @@ -IEEE icon \ No newline at end of file +IEEE \ No newline at end of file diff --git a/icons/ifixit.svg b/icons/ifixit.svg index 8a09c879..5c48833f 100644 --- a/icons/ifixit.svg +++ b/icons/ifixit.svg @@ -1 +1 @@ -iFixit icon \ No newline at end of file +iFixit \ No newline at end of file diff --git a/icons/ifood.svg b/icons/ifood.svg index 5e289b7c..4aad9f0f 100644 --- a/icons/ifood.svg +++ b/icons/ifood.svg @@ -1 +1 @@ -iFood icon +iFood \ No newline at end of file diff --git a/icons/ifttt.svg b/icons/ifttt.svg index 1c2bc69e..734cc416 100644 --- a/icons/ifttt.svg +++ b/icons/ifttt.svg @@ -1 +1 @@ -IFTTT icon \ No newline at end of file +IFTTT \ No newline at end of file diff --git a/icons/iheartradio.svg b/icons/iheartradio.svg index 3f1eacc0..8598030b 100644 --- a/icons/iheartradio.svg +++ b/icons/iheartradio.svg @@ -1 +1 @@ -iHeartRadio icon +iHeartRadio \ No newline at end of file diff --git a/icons/ikea.svg b/icons/ikea.svg index 5096de5e..87135423 100644 --- a/icons/ikea.svg +++ b/icons/ikea.svg @@ -1 +1 @@ -IKEA icon \ No newline at end of file +IKEA \ No newline at end of file diff --git a/icons/imagej.svg b/icons/imagej.svg index a984cf2c..96879498 100644 --- a/icons/imagej.svg +++ b/icons/imagej.svg @@ -1 +1 @@ -ImageJ icon \ No newline at end of file +ImageJ \ No newline at end of file diff --git a/icons/imdb.svg b/icons/imdb.svg index 330d2d80..f3bd78d7 100644 --- a/icons/imdb.svg +++ b/icons/imdb.svg @@ -1 +1 @@ -IMDb icon \ No newline at end of file +IMDb \ No newline at end of file diff --git a/icons/imgur.svg b/icons/imgur.svg index 1fedce13..fde05a66 100644 --- a/icons/imgur.svg +++ b/icons/imgur.svg @@ -1 +1 @@ -Imgur icon \ No newline at end of file +Imgur \ No newline at end of file diff --git a/icons/immer.svg b/icons/immer.svg index d17530fe..a5450f4e 100644 --- a/icons/immer.svg +++ b/icons/immer.svg @@ -1 +1 @@ -Immer icon \ No newline at end of file +Immer \ No newline at end of file diff --git a/icons/imou.svg b/icons/imou.svg index 2ce9a67c..a11f66b3 100644 --- a/icons/imou.svg +++ b/icons/imou.svg @@ -1 +1 @@ -Imou icon +Imou \ No newline at end of file diff --git a/icons/indeed.svg b/icons/indeed.svg index 05297294..59acb1fa 100644 --- a/icons/indeed.svg +++ b/icons/indeed.svg @@ -1 +1 @@ -Indeed icon \ No newline at end of file +Indeed \ No newline at end of file diff --git a/icons/infiniti.svg b/icons/infiniti.svg index 6d1340e3..dc401a12 100644 --- a/icons/infiniti.svg +++ b/icons/infiniti.svg @@ -1 +1 @@ -Infiniti icon \ No newline at end of file +Infiniti \ No newline at end of file diff --git a/icons/influxdb.svg b/icons/influxdb.svg index 7cdabe59..d0d9f2c7 100644 --- a/icons/influxdb.svg +++ b/icons/influxdb.svg @@ -1 +1 @@ -InfluxDB icon \ No newline at end of file +InfluxDB \ No newline at end of file diff --git a/icons/informatica.svg b/icons/informatica.svg index ebcd5050..23d10908 100644 --- a/icons/informatica.svg +++ b/icons/informatica.svg @@ -1 +1 @@ -Informatica icon \ No newline at end of file +Informatica \ No newline at end of file diff --git a/icons/infosys.svg b/icons/infosys.svg index 5c0e75c4..d63bae09 100644 --- a/icons/infosys.svg +++ b/icons/infosys.svg @@ -1 +1 @@ -Infosys icon \ No newline at end of file +Infosys \ No newline at end of file diff --git a/icons/ingress.svg b/icons/ingress.svg index 2b00fe73..3303b05e 100644 --- a/icons/ingress.svg +++ b/icons/ingress.svg @@ -1 +1 @@ -Ingress icon \ No newline at end of file +Ingress \ No newline at end of file diff --git a/icons/inkscape.svg b/icons/inkscape.svg index d26e4247..94b9760c 100644 --- a/icons/inkscape.svg +++ b/icons/inkscape.svg @@ -1 +1 @@ -Inkscape icon \ No newline at end of file +Inkscape \ No newline at end of file diff --git a/icons/insomnia.svg b/icons/insomnia.svg index 5769d706..4c1507fa 100644 --- a/icons/insomnia.svg +++ b/icons/insomnia.svg @@ -1 +1 @@ -Insomnia icon \ No newline at end of file +Insomnia \ No newline at end of file diff --git a/icons/instacart.svg b/icons/instacart.svg index eda8789e..409f6a86 100644 --- a/icons/instacart.svg +++ b/icons/instacart.svg @@ -1 +1 @@ -Instacart icon \ No newline at end of file +Instacart \ No newline at end of file diff --git a/icons/instagram.svg b/icons/instagram.svg index e0b8ffd7..5a687214 100644 --- a/icons/instagram.svg +++ b/icons/instagram.svg @@ -1 +1 @@ -Instagram icon \ No newline at end of file +Instagram \ No newline at end of file diff --git a/icons/instapaper.svg b/icons/instapaper.svg index 955a780b..3976c520 100644 --- a/icons/instapaper.svg +++ b/icons/instapaper.svg @@ -1 +1 @@ -Instapaper icon \ No newline at end of file +Instapaper \ No newline at end of file diff --git a/icons/instructables.svg b/icons/instructables.svg index 21cc1886..56fc7b6d 100644 --- a/icons/instructables.svg +++ b/icons/instructables.svg @@ -1 +1 @@ -Instructables icon \ No newline at end of file +Instructables \ No newline at end of file diff --git a/icons/integromat.svg b/icons/integromat.svg index 306bdf88..b184d83b 100644 --- a/icons/integromat.svg +++ b/icons/integromat.svg @@ -1 +1 @@ -Integromat icon \ No newline at end of file +Integromat \ No newline at end of file diff --git a/icons/intel.svg b/icons/intel.svg index 7ba85d97..47b79bf9 100644 --- a/icons/intel.svg +++ b/icons/intel.svg @@ -1 +1 @@ -Intel icon \ No newline at end of file +Intel \ No newline at end of file diff --git a/icons/intellijidea.svg b/icons/intellijidea.svg index 691b45d3..6cc5f0f2 100644 --- a/icons/intellijidea.svg +++ b/icons/intellijidea.svg @@ -1 +1 @@ -IntelliJ IDEA icon \ No newline at end of file +IntelliJ IDEA \ No newline at end of file diff --git a/icons/intercom.svg b/icons/intercom.svg index a5547f1f..3a0ec690 100644 --- a/icons/intercom.svg +++ b/icons/intercom.svg @@ -1 +1 @@ -Intercom icon \ No newline at end of file +Intercom \ No newline at end of file diff --git a/icons/internetarchive.svg b/icons/internetarchive.svg index e79a2ecc..ef29b6fc 100644 --- a/icons/internetarchive.svg +++ b/icons/internetarchive.svg @@ -1 +1 @@ -Internet Archive icon \ No newline at end of file +Internet Archive \ No newline at end of file diff --git a/icons/internetexplorer.svg b/icons/internetexplorer.svg index 57903476..b97933df 100644 --- a/icons/internetexplorer.svg +++ b/icons/internetexplorer.svg @@ -1 +1 @@ -Internet Explorer icon \ No newline at end of file +Internet Explorer \ No newline at end of file diff --git a/icons/intigriti.svg b/icons/intigriti.svg index d2100f37..74e388cf 100644 --- a/icons/intigriti.svg +++ b/icons/intigriti.svg @@ -1 +1 @@ -Intigriti icon \ No newline at end of file +Intigriti \ No newline at end of file diff --git a/icons/invision.svg b/icons/invision.svg index 8fa41764..15a82d9f 100644 --- a/icons/invision.svg +++ b/icons/invision.svg @@ -1 +1 @@ -InVision icon \ No newline at end of file +InVision \ No newline at end of file diff --git a/icons/invoiceninja.svg b/icons/invoiceninja.svg index 735ac9b1..59c8a870 100644 --- a/icons/invoiceninja.svg +++ b/icons/invoiceninja.svg @@ -1 +1 @@ -Invoice Ninja icon \ No newline at end of file +Invoice Ninja \ No newline at end of file diff --git a/icons/iobroker.svg b/icons/iobroker.svg index 850146b1..42323958 100644 --- a/icons/iobroker.svg +++ b/icons/iobroker.svg @@ -1 +1 @@ -ioBroker icon +ioBroker \ No newline at end of file diff --git a/icons/ionic.svg b/icons/ionic.svg index b5855ec4..77ed006d 100644 --- a/icons/ionic.svg +++ b/icons/ionic.svg @@ -1 +1 @@ -Ionic icon \ No newline at end of file +Ionic \ No newline at end of file diff --git a/icons/ios.svg b/icons/ios.svg index b8b421f6..a1636976 100644 --- a/icons/ios.svg +++ b/icons/ios.svg @@ -1 +1 @@ -iOS icon +iOS \ No newline at end of file diff --git a/icons/iota.svg b/icons/iota.svg index f841ab88..cc66028d 100644 --- a/icons/iota.svg +++ b/icons/iota.svg @@ -1 +1 @@ -IOTA icon +IOTA \ No newline at end of file diff --git a/icons/ipfs.svg b/icons/ipfs.svg index 6a8add97..ea32d6ec 100644 --- a/icons/ipfs.svg +++ b/icons/ipfs.svg @@ -1 +1 @@ -IPFS icon \ No newline at end of file +IPFS \ No newline at end of file diff --git a/icons/issuu.svg b/icons/issuu.svg index 8a921b72..28b69513 100644 --- a/icons/issuu.svg +++ b/icons/issuu.svg @@ -1 +1 @@ -Issuu icon \ No newline at end of file +Issuu \ No newline at end of file diff --git a/icons/itch-dot-io.svg b/icons/itch-dot-io.svg index 11789393..cc67541d 100644 --- a/icons/itch-dot-io.svg +++ b/icons/itch-dot-io.svg @@ -1 +1 @@ -Itch.io icon \ No newline at end of file +Itch.io \ No newline at end of file diff --git a/icons/itunes.svg b/icons/itunes.svg index db8526c9..01e120e4 100644 --- a/icons/itunes.svg +++ b/icons/itunes.svg @@ -1 +1 @@ -iTunes icon \ No newline at end of file +iTunes \ No newline at end of file diff --git a/icons/iveco.svg b/icons/iveco.svg index 7df59ee1..ce67600c 100644 --- a/icons/iveco.svg +++ b/icons/iveco.svg @@ -1 +1 @@ -IVECO icon \ No newline at end of file +IVECO \ No newline at end of file diff --git a/icons/jabber.svg b/icons/jabber.svg index f99e961e..42033568 100644 --- a/icons/jabber.svg +++ b/icons/jabber.svg @@ -1 +1 @@ -Jabber icon \ No newline at end of file +Jabber \ No newline at end of file diff --git a/icons/jaguar.svg b/icons/jaguar.svg index 7ef29d65..e2f3bfa3 100644 --- a/icons/jaguar.svg +++ b/icons/jaguar.svg @@ -1 +1 @@ -Jaguar icon \ No newline at end of file +Jaguar \ No newline at end of file diff --git a/icons/jamboard.svg b/icons/jamboard.svg index f334da90..1c9c2c75 100644 --- a/icons/jamboard.svg +++ b/icons/jamboard.svg @@ -1 +1 @@ -Jamboard icon \ No newline at end of file +Jamboard \ No newline at end of file diff --git a/icons/jameson.svg b/icons/jameson.svg index 5a0fdb39..2aaee530 100644 --- a/icons/jameson.svg +++ b/icons/jameson.svg @@ -1 +1 @@ -Jameson icon \ No newline at end of file +Jameson \ No newline at end of file diff --git a/icons/jamstack.svg b/icons/jamstack.svg index 42d16369..d9ecaf9f 100644 --- a/icons/jamstack.svg +++ b/icons/jamstack.svg @@ -1 +1 @@ -Jamstack icon \ No newline at end of file +Jamstack \ No newline at end of file diff --git a/icons/jasmine.svg b/icons/jasmine.svg index 87e3428b..bda1b3ed 100644 --- a/icons/jasmine.svg +++ b/icons/jasmine.svg @@ -1 +1 @@ -Jasmine icon \ No newline at end of file +Jasmine \ No newline at end of file diff --git a/icons/java.svg b/icons/java.svg index 26fb365f..9ec302f6 100644 --- a/icons/java.svg +++ b/icons/java.svg @@ -1 +1 @@ -Java icon \ No newline at end of file +Java \ No newline at end of file diff --git a/icons/javascript.svg b/icons/javascript.svg index aa284118..91e51623 100644 --- a/icons/javascript.svg +++ b/icons/javascript.svg @@ -1 +1 @@ -JavaScript icon \ No newline at end of file +JavaScript \ No newline at end of file diff --git a/icons/jbl.svg b/icons/jbl.svg index 1922c326..6a485523 100644 --- a/icons/jbl.svg +++ b/icons/jbl.svg @@ -1 +1 @@ -JBL icon \ No newline at end of file +JBL \ No newline at end of file diff --git a/icons/jcb.svg b/icons/jcb.svg index 01ce57fe..2b5fc900 100644 --- a/icons/jcb.svg +++ b/icons/jcb.svg @@ -1 +1 @@ -JCB icon +JCB \ No newline at end of file diff --git a/icons/jeep.svg b/icons/jeep.svg index a9974563..e2bbcaef 100644 --- a/icons/jeep.svg +++ b/icons/jeep.svg @@ -1 +1 @@ -Jeep icon \ No newline at end of file +Jeep \ No newline at end of file diff --git a/icons/jekyll.svg b/icons/jekyll.svg index 4e13fa04..869225ce 100644 --- a/icons/jekyll.svg +++ b/icons/jekyll.svg @@ -1 +1 @@ -Jekyll icon \ No newline at end of file +Jekyll \ No newline at end of file diff --git a/icons/jellyfin.svg b/icons/jellyfin.svg index b21d6b14..5242d8ed 100644 --- a/icons/jellyfin.svg +++ b/icons/jellyfin.svg @@ -1 +1 @@ -Jellyfin icon \ No newline at end of file +Jellyfin \ No newline at end of file diff --git a/icons/jenkins.svg b/icons/jenkins.svg index 499a8457..3a604d1e 100644 --- a/icons/jenkins.svg +++ b/icons/jenkins.svg @@ -1 +1 @@ -Jenkins icon \ No newline at end of file +Jenkins \ No newline at end of file diff --git a/icons/jenkinsx.svg b/icons/jenkinsx.svg index a7cc9264..e7648912 100644 --- a/icons/jenkinsx.svg +++ b/icons/jenkinsx.svg @@ -1 +1 @@ -Jenkins X icon \ No newline at end of file +Jenkins X \ No newline at end of file diff --git a/icons/jest.svg b/icons/jest.svg index ea2bdf76..3c36b3bb 100644 --- a/icons/jest.svg +++ b/icons/jest.svg @@ -1 +1 @@ -Jest icon \ No newline at end of file +Jest \ No newline at end of file diff --git a/icons/jet.svg b/icons/jet.svg index 3c5c6970..f3fbf7f1 100644 --- a/icons/jet.svg +++ b/icons/jet.svg @@ -1 +1 @@ -JET icon \ No newline at end of file +JET \ No newline at end of file diff --git a/icons/jetbrains.svg b/icons/jetbrains.svg index 9d26a036..29233481 100644 --- a/icons/jetbrains.svg +++ b/icons/jetbrains.svg @@ -1 +1 @@ -JetBrains icon \ No newline at end of file +JetBrains \ No newline at end of file diff --git a/icons/jfrog.svg b/icons/jfrog.svg index 2d5cd2e1..a2fdef51 100644 --- a/icons/jfrog.svg +++ b/icons/jfrog.svg @@ -1 +1 @@ -JFrog icon \ No newline at end of file +JFrog \ No newline at end of file diff --git a/icons/jfrogbintray.svg b/icons/jfrogbintray.svg index ebb55946..df73dd08 100644 --- a/icons/jfrogbintray.svg +++ b/icons/jfrogbintray.svg @@ -1 +1 @@ -JFrog Bintray icon \ No newline at end of file +JFrog Bintray \ No newline at end of file diff --git a/icons/jinja.svg b/icons/jinja.svg index a351f896..cb015ea7 100644 --- a/icons/jinja.svg +++ b/icons/jinja.svg @@ -1 +1 @@ -Jinja icon \ No newline at end of file +Jinja \ No newline at end of file diff --git a/icons/jira.svg b/icons/jira.svg index fa8876c7..417c09c5 100644 --- a/icons/jira.svg +++ b/icons/jira.svg @@ -1 +1 @@ -Jira icon \ No newline at end of file +Jira \ No newline at end of file diff --git a/icons/jirasoftware.svg b/icons/jirasoftware.svg index 58aeffa9..9e034082 100644 --- a/icons/jirasoftware.svg +++ b/icons/jirasoftware.svg @@ -1 +1 @@ -Jira Software icon \ No newline at end of file +Jira Software \ No newline at end of file diff --git a/icons/jitsi.svg b/icons/jitsi.svg index 7836202d..1e4a3dcf 100644 --- a/icons/jitsi.svg +++ b/icons/jitsi.svg @@ -1 +1 @@ -Jitsi icon \ No newline at end of file +Jitsi \ No newline at end of file diff --git a/icons/johndeere.svg b/icons/johndeere.svg index f028146c..b8391f45 100644 --- a/icons/johndeere.svg +++ b/icons/johndeere.svg @@ -1 +1 @@ -John Deere icon \ No newline at end of file +John Deere \ No newline at end of file diff --git a/icons/joomla.svg b/icons/joomla.svg index 758c1d26..b6c0421e 100644 --- a/icons/joomla.svg +++ b/icons/joomla.svg @@ -1 +1 @@ -Joomla icon \ No newline at end of file +Joomla \ No newline at end of file diff --git a/icons/jpeg.svg b/icons/jpeg.svg index 00169c52..38479229 100644 --- a/icons/jpeg.svg +++ b/icons/jpeg.svg @@ -1 +1 @@ -JPEG icon \ No newline at end of file +JPEG \ No newline at end of file diff --git a/icons/jquery.svg b/icons/jquery.svg index 501c609a..209c2505 100644 --- a/icons/jquery.svg +++ b/icons/jquery.svg @@ -1 +1 @@ -jQuery icon \ No newline at end of file +jQuery \ No newline at end of file diff --git a/icons/jrgroup.svg b/icons/jrgroup.svg index d3f37974..70a56494 100644 --- a/icons/jrgroup.svg +++ b/icons/jrgroup.svg @@ -1 +1 @@ -JR Group icon \ No newline at end of file +JR Group \ No newline at end of file diff --git a/icons/jsdelivr.svg b/icons/jsdelivr.svg index eb72be13..09623f3e 100644 --- a/icons/jsdelivr.svg +++ b/icons/jsdelivr.svg @@ -1 +1 @@ -jsDelivr icon \ No newline at end of file +jsDelivr \ No newline at end of file diff --git a/icons/jsfiddle.svg b/icons/jsfiddle.svg index 3ca23818..d21786bb 100644 --- a/icons/jsfiddle.svg +++ b/icons/jsfiddle.svg @@ -1 +1 @@ -JSFiddle icon +JSFiddle \ No newline at end of file diff --git a/icons/json.svg b/icons/json.svg index 1521971f..6856229b 100644 --- a/icons/json.svg +++ b/icons/json.svg @@ -1 +1 @@ -JSON icon \ No newline at end of file +JSON \ No newline at end of file diff --git a/icons/jsonwebtokens.svg b/icons/jsonwebtokens.svg index 0b122632..5f03d1e1 100644 --- a/icons/jsonwebtokens.svg +++ b/icons/jsonwebtokens.svg @@ -1 +1 @@ -JSON Web Tokens icon \ No newline at end of file +JSON Web Tokens \ No newline at end of file diff --git a/icons/jss.svg b/icons/jss.svg index bd714196..06427c4f 100644 --- a/icons/jss.svg +++ b/icons/jss.svg @@ -1 +1 @@ -JSS icon \ No newline at end of file +JSS \ No newline at end of file diff --git a/icons/julia.svg b/icons/julia.svg index de4dc8de..b5138c49 100644 --- a/icons/julia.svg +++ b/icons/julia.svg @@ -1 +1 @@ -Julia icon +Julia \ No newline at end of file diff --git a/icons/junipernetworks.svg b/icons/junipernetworks.svg index 3108b41c..3b549ab3 100644 --- a/icons/junipernetworks.svg +++ b/icons/junipernetworks.svg @@ -1 +1 @@ -Juniper Networks icon \ No newline at end of file +Juniper Networks \ No newline at end of file diff --git a/icons/junit5.svg b/icons/junit5.svg index 97a76478..24b8f49f 100644 --- a/icons/junit5.svg +++ b/icons/junit5.svg @@ -1 +1 @@ -JUnit5 icon \ No newline at end of file +JUnit5 \ No newline at end of file diff --git a/icons/jupyter.svg b/icons/jupyter.svg index f1f4370c..9353854e 100644 --- a/icons/jupyter.svg +++ b/icons/jupyter.svg @@ -1 +1 @@ -Jupyter icon \ No newline at end of file +Jupyter \ No newline at end of file diff --git a/icons/justeat.svg b/icons/justeat.svg index 28d781f6..24330f3d 100644 --- a/icons/justeat.svg +++ b/icons/justeat.svg @@ -1 +1 @@ -Just Eat icon \ No newline at end of file +Just Eat \ No newline at end of file diff --git a/icons/justgiving.svg b/icons/justgiving.svg index 62f7d51d..db9c0e9b 100644 --- a/icons/justgiving.svg +++ b/icons/justgiving.svg @@ -1 +1 @@ -JustGiving icon \ No newline at end of file +JustGiving \ No newline at end of file diff --git a/icons/kaggle.svg b/icons/kaggle.svg index 0280a1fe..cb2b5b81 100644 --- a/icons/kaggle.svg +++ b/icons/kaggle.svg @@ -1 +1 @@ -Kaggle icon \ No newline at end of file +Kaggle \ No newline at end of file diff --git a/icons/kahoot.svg b/icons/kahoot.svg index 72d5a754..d09c1733 100644 --- a/icons/kahoot.svg +++ b/icons/kahoot.svg @@ -1 +1 @@ -Kahoot! icon \ No newline at end of file +Kahoot! \ No newline at end of file diff --git a/icons/kaios.svg b/icons/kaios.svg index aada6cdb..27a0ec77 100644 --- a/icons/kaios.svg +++ b/icons/kaios.svg @@ -1 +1 @@ -KaiOS icon \ No newline at end of file +KaiOS \ No newline at end of file diff --git a/icons/kakao.svg b/icons/kakao.svg index 712844a5..76bfafa6 100644 --- a/icons/kakao.svg +++ b/icons/kakao.svg @@ -1 +1 @@ -Kakao icon \ No newline at end of file +Kakao \ No newline at end of file diff --git a/icons/kakaotalk.svg b/icons/kakaotalk.svg index 7ca63874..8e9f9b12 100644 --- a/icons/kakaotalk.svg +++ b/icons/kakaotalk.svg @@ -1 +1 @@ -KakaoTalk icon \ No newline at end of file +KakaoTalk \ No newline at end of file diff --git a/icons/kalilinux.svg b/icons/kalilinux.svg index 42831e99..f308f111 100644 --- a/icons/kalilinux.svg +++ b/icons/kalilinux.svg @@ -1 +1 @@ -Kali Linux icon \ No newline at end of file +Kali Linux \ No newline at end of file diff --git a/icons/karlsruherverkehrsverbund.svg b/icons/karlsruherverkehrsverbund.svg index b5a83d8c..b4f45474 100644 --- a/icons/karlsruherverkehrsverbund.svg +++ b/icons/karlsruherverkehrsverbund.svg @@ -1 +1 @@ -Karlsruher Verkehrsverbund icon \ No newline at end of file +Karlsruher Verkehrsverbund \ No newline at end of file diff --git a/icons/kasasmart.svg b/icons/kasasmart.svg index c199e0e4..7bdf643c 100644 --- a/icons/kasasmart.svg +++ b/icons/kasasmart.svg @@ -1 +1 @@ -Kasa Smart icon \ No newline at end of file +Kasa Smart \ No newline at end of file diff --git a/icons/kashflow.svg b/icons/kashflow.svg index b2fbcf87..b183c706 100644 --- a/icons/kashflow.svg +++ b/icons/kashflow.svg @@ -1 +1 @@ -KashFlow icon \ No newline at end of file +KashFlow \ No newline at end of file diff --git a/icons/kaspersky.svg b/icons/kaspersky.svg index 13021385..1863ca24 100644 --- a/icons/kaspersky.svg +++ b/icons/kaspersky.svg @@ -1 +1 @@ -Kaspersky icon \ No newline at end of file +Kaspersky \ No newline at end of file diff --git a/icons/katacoda.svg b/icons/katacoda.svg index 3388ae0e..2959eb00 100644 --- a/icons/katacoda.svg +++ b/icons/katacoda.svg @@ -1 +1 @@ -Katacoda icon +Katacoda \ No newline at end of file diff --git a/icons/katana.svg b/icons/katana.svg index b79e9768..30b284ce 100644 --- a/icons/katana.svg +++ b/icons/katana.svg @@ -1 +1 @@ -Katana icon \ No newline at end of file +Katana \ No newline at end of file diff --git a/icons/kde.svg b/icons/kde.svg index 306db765..a11654e3 100644 --- a/icons/kde.svg +++ b/icons/kde.svg @@ -1 +1 @@ -KDE icon \ No newline at end of file +KDE \ No newline at end of file diff --git a/icons/kdenlive.svg b/icons/kdenlive.svg index 605647f2..6a2aaf44 100644 --- a/icons/kdenlive.svg +++ b/icons/kdenlive.svg @@ -1 +1 @@ -Kdenlive icon \ No newline at end of file +Kdenlive \ No newline at end of file diff --git a/icons/keepassxc.svg b/icons/keepassxc.svg index df3a3d3a..5b2c74a5 100644 --- a/icons/keepassxc.svg +++ b/icons/keepassxc.svg @@ -1 +1 @@ -KeePassXC icon \ No newline at end of file +KeePassXC \ No newline at end of file diff --git a/icons/kentico.svg b/icons/kentico.svg index f6478449..eb5d928c 100644 --- a/icons/kentico.svg +++ b/icons/kentico.svg @@ -1 +1 @@ -Kentico icon \ No newline at end of file +Kentico \ No newline at end of file diff --git a/icons/keras.svg b/icons/keras.svg index 9cc0f958..f1bba42d 100644 --- a/icons/keras.svg +++ b/icons/keras.svg @@ -1 +1 @@ -Keras icon +Keras \ No newline at end of file diff --git a/icons/keybase.svg b/icons/keybase.svg index 0682d4ce..f4c2ebb9 100644 --- a/icons/keybase.svg +++ b/icons/keybase.svg @@ -1 +1 @@ -Keybase icon \ No newline at end of file +Keybase \ No newline at end of file diff --git a/icons/keycdn.svg b/icons/keycdn.svg index 97c1322c..43608da8 100644 --- a/icons/keycdn.svg +++ b/icons/keycdn.svg @@ -1 +1 @@ -KeyCDN icon \ No newline at end of file +KeyCDN \ No newline at end of file diff --git a/icons/khanacademy.svg b/icons/khanacademy.svg index b74edd3a..850fef9d 100644 --- a/icons/khanacademy.svg +++ b/icons/khanacademy.svg @@ -1 +1 @@ -Khan Academy icon \ No newline at end of file +Khan Academy \ No newline at end of file diff --git a/icons/khronosgroup.svg b/icons/khronosgroup.svg index 357852cc..2f7a096f 100644 --- a/icons/khronosgroup.svg +++ b/icons/khronosgroup.svg @@ -1 +1 @@ -Khronos Group icon \ No newline at end of file +Khronos Group \ No newline at end of file diff --git a/icons/kia.svg b/icons/kia.svg index 5dd48110..c2369ea8 100644 --- a/icons/kia.svg +++ b/icons/kia.svg @@ -1 +1 @@ -Kia icon \ No newline at end of file +Kia \ No newline at end of file diff --git a/icons/kibana.svg b/icons/kibana.svg index 43b40736..90bf8da6 100644 --- a/icons/kibana.svg +++ b/icons/kibana.svg @@ -1 +1 @@ -Kibana icon \ No newline at end of file +Kibana \ No newline at end of file diff --git a/icons/kickstarter.svg b/icons/kickstarter.svg index aaead595..a9933246 100644 --- a/icons/kickstarter.svg +++ b/icons/kickstarter.svg @@ -1 +1 @@ -Kickstarter icon \ No newline at end of file +Kickstarter \ No newline at end of file diff --git a/icons/kik.svg b/icons/kik.svg index 8e55c2d0..3820d378 100644 --- a/icons/kik.svg +++ b/icons/kik.svg @@ -1 +1 @@ -Kik icon \ No newline at end of file +Kik \ No newline at end of file diff --git a/icons/kirby.svg b/icons/kirby.svg index 48daac12..a7ddcf89 100644 --- a/icons/kirby.svg +++ b/icons/kirby.svg @@ -1 +1 @@ -Kirby icon \ No newline at end of file +Kirby \ No newline at end of file diff --git a/icons/kitsu.svg b/icons/kitsu.svg index 312dde06..dbccdd0e 100644 --- a/icons/kitsu.svg +++ b/icons/kitsu.svg @@ -1 +1 @@ -Kitsu icon \ No newline at end of file +Kitsu \ No newline at end of file diff --git a/icons/klarna.svg b/icons/klarna.svg index d01438b7..c12c2cef 100644 --- a/icons/klarna.svg +++ b/icons/klarna.svg @@ -1 +1 @@ -Klarna icon \ No newline at end of file +Klarna \ No newline at end of file diff --git a/icons/klm.svg b/icons/klm.svg index 37bfcdad..77ba4cc5 100644 --- a/icons/klm.svg +++ b/icons/klm.svg @@ -1 +1 @@ -KLM icon \ No newline at end of file +KLM \ No newline at end of file diff --git a/icons/klook.svg b/icons/klook.svg index 65be5c71..02eca239 100644 --- a/icons/klook.svg +++ b/icons/klook.svg @@ -1 +1 @@ -Klook icon \ No newline at end of file +Klook \ No newline at end of file diff --git a/icons/knowledgebase.svg b/icons/knowledgebase.svg index 0036bc00..ac573257 100644 --- a/icons/knowledgebase.svg +++ b/icons/knowledgebase.svg @@ -1 +1 @@ -KnowledgeBase icon \ No newline at end of file +KnowledgeBase \ No newline at end of file diff --git a/icons/known.svg b/icons/known.svg index ee4ab485..7fd45c06 100644 --- a/icons/known.svg +++ b/icons/known.svg @@ -1 +1 @@ -Known icon \ No newline at end of file +Known \ No newline at end of file diff --git a/icons/ko-fi.svg b/icons/ko-fi.svg index c335a1a4..1c209d97 100644 --- a/icons/ko-fi.svg +++ b/icons/ko-fi.svg @@ -1 +1 @@ -Ko-fi icon \ No newline at end of file +Ko-fi \ No newline at end of file diff --git a/icons/kodi.svg b/icons/kodi.svg index 7716b8d3..dc2ea8bf 100644 --- a/icons/kodi.svg +++ b/icons/kodi.svg @@ -1 +1 @@ -Kodi icon \ No newline at end of file +Kodi \ No newline at end of file diff --git a/icons/koding.svg b/icons/koding.svg index 4173e95c..614c19ab 100644 --- a/icons/koding.svg +++ b/icons/koding.svg @@ -1 +1 @@ -Koding icon \ No newline at end of file +Koding \ No newline at end of file diff --git a/icons/kofax.svg b/icons/kofax.svg index 782fd84f..60f7641e 100644 --- a/icons/kofax.svg +++ b/icons/kofax.svg @@ -1 +1 @@ -Kofax icon \ No newline at end of file +Kofax \ No newline at end of file diff --git a/icons/komoot.svg b/icons/komoot.svg index 315af66c..f5ef8b4e 100644 --- a/icons/komoot.svg +++ b/icons/komoot.svg @@ -1 +1 @@ -Komoot icon \ No newline at end of file +Komoot \ No newline at end of file diff --git a/icons/kongregate.svg b/icons/kongregate.svg index 16562523..e4a50a9c 100644 --- a/icons/kongregate.svg +++ b/icons/kongregate.svg @@ -1 +1 @@ -Kongregate icon \ No newline at end of file +Kongregate \ No newline at end of file diff --git a/icons/kotlin.svg b/icons/kotlin.svg index 6042a842..3ddab7b7 100644 --- a/icons/kotlin.svg +++ b/icons/kotlin.svg @@ -1 +1 @@ -Kotlin icon \ No newline at end of file +Kotlin \ No newline at end of file diff --git a/icons/krita.svg b/icons/krita.svg index 7e43a30d..c3a0b6a2 100644 --- a/icons/krita.svg +++ b/icons/krita.svg @@ -1 +1 @@ -Krita icon \ No newline at end of file +Krita \ No newline at end of file diff --git a/icons/ktm.svg b/icons/ktm.svg index 8c461158..3d898603 100644 --- a/icons/ktm.svg +++ b/icons/ktm.svg @@ -1 +1 @@ -KTM icon +KTM \ No newline at end of file diff --git a/icons/kubernetes.svg b/icons/kubernetes.svg index 3e8f13fd..667f2d47 100644 --- a/icons/kubernetes.svg +++ b/icons/kubernetes.svg @@ -1 +1 @@ -Kubernetes icon \ No newline at end of file +Kubernetes \ No newline at end of file diff --git a/icons/kubuntu.svg b/icons/kubuntu.svg index a6d27dff..ddabdfbb 100644 --- a/icons/kubuntu.svg +++ b/icons/kubuntu.svg @@ -1 +1 @@ -Kubuntu icon +Kubuntu \ No newline at end of file diff --git a/icons/kyocera.svg b/icons/kyocera.svg index 5d63af47..550db707 100644 --- a/icons/kyocera.svg +++ b/icons/kyocera.svg @@ -1 +1 @@ -Kyocera icon \ No newline at end of file +Kyocera \ No newline at end of file diff --git a/icons/labview.svg b/icons/labview.svg index 3d8bd99a..bacef4ab 100644 --- a/icons/labview.svg +++ b/icons/labview.svg @@ -1 +1 @@ -LabVIEW icon +LabVIEW \ No newline at end of file diff --git a/icons/lada.svg b/icons/lada.svg index 7243e6bf..9cc12298 100644 --- a/icons/lada.svg +++ b/icons/lada.svg @@ -1 +1 @@ -Lada icon \ No newline at end of file +Lada \ No newline at end of file diff --git a/icons/lamborghini.svg b/icons/lamborghini.svg index f0b1dc81..475ab8b0 100644 --- a/icons/lamborghini.svg +++ b/icons/lamborghini.svg @@ -1 +1 @@ -Lamborghini icon \ No newline at end of file +Lamborghini \ No newline at end of file diff --git a/icons/landrover.svg b/icons/landrover.svg index 5d8041dc..4c50b1fd 100644 --- a/icons/landrover.svg +++ b/icons/landrover.svg @@ -1 +1 @@ -Land Rover icon \ No newline at end of file +Land Rover \ No newline at end of file diff --git a/icons/laragon.svg b/icons/laragon.svg index 8c388c8e..36f87aad 100644 --- a/icons/laragon.svg +++ b/icons/laragon.svg @@ -1 +1 @@ -Laragon icon \ No newline at end of file +Laragon \ No newline at end of file diff --git a/icons/laravel.svg b/icons/laravel.svg index 86d50015..b9b725d7 100644 --- a/icons/laravel.svg +++ b/icons/laravel.svg @@ -1 +1 @@ -Laravel icon \ No newline at end of file +Laravel \ No newline at end of file diff --git a/icons/laravelhorizon.svg b/icons/laravelhorizon.svg index a088dd7c..45089257 100644 --- a/icons/laravelhorizon.svg +++ b/icons/laravelhorizon.svg @@ -1 +1 @@ -Laravel Horizon icon \ No newline at end of file +Laravel Horizon \ No newline at end of file diff --git a/icons/laravelnova.svg b/icons/laravelnova.svg index a70c001b..2bdfef28 100644 --- a/icons/laravelnova.svg +++ b/icons/laravelnova.svg @@ -1 +1 @@ -Laravel Nova icon \ No newline at end of file +Laravel Nova \ No newline at end of file diff --git a/icons/last-dot-fm.svg b/icons/last-dot-fm.svg index 2171904e..e75fbec9 100644 --- a/icons/last-dot-fm.svg +++ b/icons/last-dot-fm.svg @@ -1 +1 @@ -Last.fm icon \ No newline at end of file +Last.fm \ No newline at end of file diff --git a/icons/lastpass.svg b/icons/lastpass.svg index 75b6de27..c07218cb 100644 --- a/icons/lastpass.svg +++ b/icons/lastpass.svg @@ -1 +1 @@ -LastPass icon \ No newline at end of file +LastPass \ No newline at end of file diff --git a/icons/latex.svg b/icons/latex.svg index 36cf9d6f..8f805715 100644 --- a/icons/latex.svg +++ b/icons/latex.svg @@ -1 +1 @@ -LaTeX icon \ No newline at end of file +LaTeX \ No newline at end of file diff --git a/icons/launchpad.svg b/icons/launchpad.svg index f9581856..e8ca4eb7 100644 --- a/icons/launchpad.svg +++ b/icons/launchpad.svg @@ -1 +1 @@ -Launchpad icon \ No newline at end of file +Launchpad \ No newline at end of file diff --git a/icons/lbry.svg b/icons/lbry.svg index 368a7923..bac6fdab 100644 --- a/icons/lbry.svg +++ b/icons/lbry.svg @@ -1 +1 @@ -LBRY icon \ No newline at end of file +LBRY \ No newline at end of file diff --git a/icons/leaflet.svg b/icons/leaflet.svg index 50c561db..35b9f3a6 100644 --- a/icons/leaflet.svg +++ b/icons/leaflet.svg @@ -1 +1 @@ -Leaflet icon \ No newline at end of file +Leaflet \ No newline at end of file diff --git a/icons/leanpub.svg b/icons/leanpub.svg index 5bdb4d2a..085f2b59 100644 --- a/icons/leanpub.svg +++ b/icons/leanpub.svg @@ -1 +1 @@ -Leanpub icon +Leanpub \ No newline at end of file diff --git a/icons/leetcode.svg b/icons/leetcode.svg index 52c17604..4f4ba3cf 100644 --- a/icons/leetcode.svg +++ b/icons/leetcode.svg @@ -1 +1 @@ -LeetCode icon \ No newline at end of file +LeetCode \ No newline at end of file diff --git a/icons/lenovo.svg b/icons/lenovo.svg index a9ca0a0e..c03719a4 100644 --- a/icons/lenovo.svg +++ b/icons/lenovo.svg @@ -1 +1 @@ -Lenovo icon \ No newline at end of file +Lenovo \ No newline at end of file diff --git a/icons/less.svg b/icons/less.svg index fe3ff751..a24061ad 100644 --- a/icons/less.svg +++ b/icons/less.svg @@ -1 +1 @@ -Less icon \ No newline at end of file +Less \ No newline at end of file diff --git a/icons/letsencrypt.svg b/icons/letsencrypt.svg index c90b546e..c64bb501 100644 --- a/icons/letsencrypt.svg +++ b/icons/letsencrypt.svg @@ -1 +1 @@ -Let's Encrypt icon \ No newline at end of file +Let's Encrypt \ No newline at end of file diff --git a/icons/letterboxd.svg b/icons/letterboxd.svg index 539e1e74..760d5041 100644 --- a/icons/letterboxd.svg +++ b/icons/letterboxd.svg @@ -1 +1 @@ -Letterboxd icon \ No newline at end of file +Letterboxd \ No newline at end of file diff --git a/icons/lg.svg b/icons/lg.svg index a1b84695..ea85c175 100644 --- a/icons/lg.svg +++ b/icons/lg.svg @@ -1 +1 @@ -LG icon \ No newline at end of file +LG \ No newline at end of file diff --git a/icons/lgtm.svg b/icons/lgtm.svg index f1247f67..e4121ec9 100644 --- a/icons/lgtm.svg +++ b/icons/lgtm.svg @@ -1 +1 @@ -LGTM icon \ No newline at end of file +LGTM \ No newline at end of file diff --git a/icons/liberapay.svg b/icons/liberapay.svg index a6c7cd87..54044754 100644 --- a/icons/liberapay.svg +++ b/icons/liberapay.svg @@ -1 +1 @@ -Liberapay icon \ No newline at end of file +Liberapay \ No newline at end of file diff --git a/icons/libraries-dot-io.svg b/icons/libraries-dot-io.svg index 0c991f7c..3f09168c 100644 --- a/icons/libraries-dot-io.svg +++ b/icons/libraries-dot-io.svg @@ -1 +1 @@ -Libraries.io icon \ No newline at end of file +Libraries.io \ No newline at end of file diff --git a/icons/librarything.svg b/icons/librarything.svg index 44051c48..49c1c179 100644 --- a/icons/librarything.svg +++ b/icons/librarything.svg @@ -1 +1 @@ -LibraryThing icon \ No newline at end of file +LibraryThing \ No newline at end of file diff --git a/icons/libreoffice.svg b/icons/libreoffice.svg index 2672e573..abeee5c7 100644 --- a/icons/libreoffice.svg +++ b/icons/libreoffice.svg @@ -1 +1 @@ -LibreOffice icon \ No newline at end of file +LibreOffice \ No newline at end of file diff --git a/icons/libuv.svg b/icons/libuv.svg index 7ada0f67..3358be26 100644 --- a/icons/libuv.svg +++ b/icons/libuv.svg @@ -1 +1 @@ -libuv icon +libuv \ No newline at end of file diff --git a/icons/lichess.svg b/icons/lichess.svg index c5d35d2f..cc25518c 100644 --- a/icons/lichess.svg +++ b/icons/lichess.svg @@ -1 +1 @@ -Lichess icon \ No newline at end of file +Lichess \ No newline at end of file diff --git a/icons/lifx.svg b/icons/lifx.svg index 4c33dce8..9425239f 100644 --- a/icons/lifx.svg +++ b/icons/lifx.svg @@ -1 +1 @@ -LIFX icon \ No newline at end of file +LIFX \ No newline at end of file diff --git a/icons/lighthouse.svg b/icons/lighthouse.svg index 77bf2e10..392815b7 100644 --- a/icons/lighthouse.svg +++ b/icons/lighthouse.svg @@ -1 +1 @@ -Lighthouse icon \ No newline at end of file +Lighthouse \ No newline at end of file diff --git a/icons/line.svg b/icons/line.svg index 4b396ab7..9e4dc98c 100644 --- a/icons/line.svg +++ b/icons/line.svg @@ -1 +1 @@ -LINE icon \ No newline at end of file +LINE \ No newline at end of file diff --git a/icons/lineageos.svg b/icons/lineageos.svg index c418f3a1..0e028623 100644 --- a/icons/lineageos.svg +++ b/icons/lineageos.svg @@ -1 +1 @@ -LineageOS icon \ No newline at end of file +LineageOS \ No newline at end of file diff --git a/icons/linkedin.svg b/icons/linkedin.svg index 3dc9f68a..caa6e69d 100644 --- a/icons/linkedin.svg +++ b/icons/linkedin.svg @@ -1 +1 @@ -LinkedIn icon \ No newline at end of file +LinkedIn \ No newline at end of file diff --git a/icons/linktree.svg b/icons/linktree.svg index 7b7caa87..335b11a9 100644 --- a/icons/linktree.svg +++ b/icons/linktree.svg @@ -1 +1 @@ -Linktree icon \ No newline at end of file +Linktree \ No newline at end of file diff --git a/icons/linode.svg b/icons/linode.svg index 8ff08b0f..c59cca18 100644 --- a/icons/linode.svg +++ b/icons/linode.svg @@ -1 +1 @@ -Linode icon \ No newline at end of file +Linode \ No newline at end of file diff --git a/icons/linux.svg b/icons/linux.svg index de846868..381d3d8a 100644 --- a/icons/linux.svg +++ b/icons/linux.svg @@ -1 +1 @@ -Linux icon \ No newline at end of file +Linux \ No newline at end of file diff --git a/icons/linuxcontainers.svg b/icons/linuxcontainers.svg index b7eff8e4..31c07c08 100644 --- a/icons/linuxcontainers.svg +++ b/icons/linuxcontainers.svg @@ -1 +1 @@ -Linux Containers icon \ No newline at end of file +Linux Containers \ No newline at end of file diff --git a/icons/linuxfoundation.svg b/icons/linuxfoundation.svg index 7c7e78fd..50e76aeb 100644 --- a/icons/linuxfoundation.svg +++ b/icons/linuxfoundation.svg @@ -1 +1 @@ -Linux Foundation icon \ No newline at end of file +Linux Foundation \ No newline at end of file diff --git a/icons/linuxmint.svg b/icons/linuxmint.svg index 16250efb..a9dcf113 100644 --- a/icons/linuxmint.svg +++ b/icons/linuxmint.svg @@ -1 +1 @@ -Linux Mint icon \ No newline at end of file +Linux Mint \ No newline at end of file diff --git a/icons/lionair.svg b/icons/lionair.svg index e39a79e0..650623dc 100644 --- a/icons/lionair.svg +++ b/icons/lionair.svg @@ -1 +1 @@ -Lion Air icon \ No newline at end of file +Lion Air \ No newline at end of file diff --git a/icons/lit.svg b/icons/lit.svg index 3cd034cc..6afe310e 100644 --- a/icons/lit.svg +++ b/icons/lit.svg @@ -1 +1 @@ -Lit icon +Lit \ No newline at end of file diff --git a/icons/litecoin.svg b/icons/litecoin.svg index 9adc2746..1a2ccb03 100644 --- a/icons/litecoin.svg +++ b/icons/litecoin.svg @@ -1 +1 @@ -Litecoin icon +Litecoin \ No newline at end of file diff --git a/icons/livechat.svg b/icons/livechat.svg index eb805881..c3355611 100644 --- a/icons/livechat.svg +++ b/icons/livechat.svg @@ -1 +1 @@ -LiveChat icon \ No newline at end of file +LiveChat \ No newline at end of file diff --git a/icons/livejournal.svg b/icons/livejournal.svg index 50bffcb5..8bd6ebd4 100644 --- a/icons/livejournal.svg +++ b/icons/livejournal.svg @@ -1 +1 @@ -LiveJournal icon \ No newline at end of file +LiveJournal \ No newline at end of file diff --git a/icons/llvm.svg b/icons/llvm.svg index 2f32d149..135f711a 100644 --- a/icons/llvm.svg +++ b/icons/llvm.svg @@ -1 +1 @@ -LLVM icon \ No newline at end of file +LLVM \ No newline at end of file diff --git a/icons/lmms.svg b/icons/lmms.svg index babac8c0..4b7e5f05 100644 --- a/icons/lmms.svg +++ b/icons/lmms.svg @@ -1 +1 @@ -LMMS icon +LMMS \ No newline at end of file diff --git a/icons/logitech.svg b/icons/logitech.svg index edf6acda..3d418f87 100644 --- a/icons/logitech.svg +++ b/icons/logitech.svg @@ -1 +1 @@ -Logitech icon \ No newline at end of file +Logitech \ No newline at end of file diff --git a/icons/logmein.svg b/icons/logmein.svg index 1f8e3ebd..d71ab52f 100644 --- a/icons/logmein.svg +++ b/icons/logmein.svg @@ -1 +1 @@ -LogMeIn icon +LogMeIn \ No newline at end of file diff --git a/icons/logstash.svg b/icons/logstash.svg index 6b9a779a..fa1d0a70 100644 --- a/icons/logstash.svg +++ b/icons/logstash.svg @@ -1 +1 @@ -Logstash icon \ No newline at end of file +Logstash \ No newline at end of file diff --git a/icons/looker.svg b/icons/looker.svg index e7d50269..bc393ecb 100644 --- a/icons/looker.svg +++ b/icons/looker.svg @@ -1 +1 @@ -Looker icon \ No newline at end of file +Looker \ No newline at end of file diff --git a/icons/loom.svg b/icons/loom.svg index ad75df1b..c5a81c79 100644 --- a/icons/loom.svg +++ b/icons/loom.svg @@ -1 +1 @@ -Loom icon \ No newline at end of file +Loom \ No newline at end of file diff --git a/icons/loop.svg b/icons/loop.svg index fd213471..8e4d95e6 100644 --- a/icons/loop.svg +++ b/icons/loop.svg @@ -1 +1 @@ -Loop icon \ No newline at end of file +Loop \ No newline at end of file diff --git a/icons/lospec.svg b/icons/lospec.svg index bbdcdc10..36090d05 100644 --- a/icons/lospec.svg +++ b/icons/lospec.svg @@ -1 +1 @@ -Lospec icon \ No newline at end of file +Lospec \ No newline at end of file diff --git a/icons/lotpolishairlines.svg b/icons/lotpolishairlines.svg index a5b59bee..47abc2f4 100644 --- a/icons/lotpolishairlines.svg +++ b/icons/lotpolishairlines.svg @@ -1 +1 @@ -LOT Polish Airlines icon \ No newline at end of file +LOT Polish Airlines \ No newline at end of file diff --git a/icons/lua.svg b/icons/lua.svg index a18fc819..12b769b1 100644 --- a/icons/lua.svg +++ b/icons/lua.svg @@ -1 +1 @@ -Lua icon \ No newline at end of file +Lua \ No newline at end of file diff --git a/icons/lubuntu.svg b/icons/lubuntu.svg index c669830f..7a49c0ba 100644 --- a/icons/lubuntu.svg +++ b/icons/lubuntu.svg @@ -1 +1 @@ -Lubuntu icon \ No newline at end of file +Lubuntu \ No newline at end of file diff --git a/icons/lufthansa.svg b/icons/lufthansa.svg index 85858224..9830ecca 100644 --- a/icons/lufthansa.svg +++ b/icons/lufthansa.svg @@ -1 +1 @@ -Lufthansa icon \ No newline at end of file +Lufthansa \ No newline at end of file diff --git a/icons/lumen.svg b/icons/lumen.svg index d851a1a0..fc6e8dbf 100644 --- a/icons/lumen.svg +++ b/icons/lumen.svg @@ -1 +1 @@ -Lumen icon \ No newline at end of file +Lumen \ No newline at end of file diff --git a/icons/lydia.svg b/icons/lydia.svg index 90d8d206..b1835324 100644 --- a/icons/lydia.svg +++ b/icons/lydia.svg @@ -1 +1 @@ -Lydia icon \ No newline at end of file +Lydia \ No newline at end of file diff --git a/icons/lyft.svg b/icons/lyft.svg index 432d4f03..51ea92bc 100644 --- a/icons/lyft.svg +++ b/icons/lyft.svg @@ -1 +1 @@ -Lyft icon \ No newline at end of file +Lyft \ No newline at end of file diff --git a/icons/maas.svg b/icons/maas.svg index adf08cf9..3c63a84f 100644 --- a/icons/maas.svg +++ b/icons/maas.svg @@ -1 +1 @@ -MAAS icon \ No newline at end of file +MAAS \ No newline at end of file diff --git a/icons/macos.svg b/icons/macos.svg index 7bd751da..87630c45 100644 --- a/icons/macos.svg +++ b/icons/macos.svg @@ -1 +1 @@ -macOS icon \ No newline at end of file +macOS \ No newline at end of file diff --git a/icons/macys.svg b/icons/macys.svg index 30b4faec..6f1e3215 100644 --- a/icons/macys.svg +++ b/icons/macys.svg @@ -1 +1 @@ -Macy’s icon \ No newline at end of file +Macy’s \ No newline at end of file diff --git a/icons/magento.svg b/icons/magento.svg index fe656cb9..9b8c52ff 100644 --- a/icons/magento.svg +++ b/icons/magento.svg @@ -1 +1 @@ -Magento icon \ No newline at end of file +Magento \ No newline at end of file diff --git a/icons/magisk.svg b/icons/magisk.svg index 87adec0e..5e0ef842 100644 --- a/icons/magisk.svg +++ b/icons/magisk.svg @@ -1 +1 @@ -Magisk icon \ No newline at end of file +Magisk \ No newline at end of file diff --git a/icons/mail-dot-ru.svg b/icons/mail-dot-ru.svg index 1490a011..0f76c32f 100644 --- a/icons/mail-dot-ru.svg +++ b/icons/mail-dot-ru.svg @@ -1 +1 @@ -Mail.Ru icon \ No newline at end of file +Mail.Ru \ No newline at end of file diff --git a/icons/mailchimp.svg b/icons/mailchimp.svg index 9101dd3b..d5731852 100644 --- a/icons/mailchimp.svg +++ b/icons/mailchimp.svg @@ -1 +1 @@ -MailChimp icon \ No newline at end of file +MailChimp \ No newline at end of file diff --git a/icons/majorleaguehacking.svg b/icons/majorleaguehacking.svg index a49bfeaa..95dab185 100644 --- a/icons/majorleaguehacking.svg +++ b/icons/majorleaguehacking.svg @@ -1 +1 @@ -Major League Hacking icon \ No newline at end of file +Major League Hacking \ No newline at end of file diff --git a/icons/makerbot.svg b/icons/makerbot.svg index c8b2b709..d5663fdf 100644 --- a/icons/makerbot.svg +++ b/icons/makerbot.svg @@ -1 +1 @@ -MakerBot icon \ No newline at end of file +MakerBot \ No newline at end of file diff --git a/icons/man.svg b/icons/man.svg index f6393235..f3639cd3 100644 --- a/icons/man.svg +++ b/icons/man.svg @@ -1 +1 @@ -MAN icon \ No newline at end of file +MAN \ No newline at end of file diff --git a/icons/manageiq.svg b/icons/manageiq.svg index baa5dba1..3fdce06a 100644 --- a/icons/manageiq.svg +++ b/icons/manageiq.svg @@ -1 +1 @@ -ManageIQ icon \ No newline at end of file +ManageIQ \ No newline at end of file diff --git a/icons/manjaro.svg b/icons/manjaro.svg index 12497044..d99972e2 100644 --- a/icons/manjaro.svg +++ b/icons/manjaro.svg @@ -1 +1 @@ -Manjaro icon \ No newline at end of file +Manjaro \ No newline at end of file diff --git a/icons/mapbox.svg b/icons/mapbox.svg index ac17d798..430ba3d3 100644 --- a/icons/mapbox.svg +++ b/icons/mapbox.svg @@ -1 +1 @@ -Mapbox icon \ No newline at end of file +Mapbox \ No newline at end of file diff --git a/icons/mariadb.svg b/icons/mariadb.svg index c52dafbc..fe068e7b 100644 --- a/icons/mariadb.svg +++ b/icons/mariadb.svg @@ -1 +1 @@ -MariaDB icon +MariaDB \ No newline at end of file diff --git a/icons/mariadbfoundation.svg b/icons/mariadbfoundation.svg index 5267f0f2..09fbaba3 100644 --- a/icons/mariadbfoundation.svg +++ b/icons/mariadbfoundation.svg @@ -1 +1 @@ -MariaDB Foundation icon +MariaDB Foundation \ No newline at end of file diff --git a/icons/markdown.svg b/icons/markdown.svg index cf883402..53130fa5 100644 --- a/icons/markdown.svg +++ b/icons/markdown.svg @@ -1 +1 @@ -Markdown icon \ No newline at end of file +Markdown \ No newline at end of file diff --git a/icons/marketo.svg b/icons/marketo.svg index e2171036..c56a4586 100644 --- a/icons/marketo.svg +++ b/icons/marketo.svg @@ -1 +1 @@ -Marketo icon \ No newline at end of file +Marketo \ No newline at end of file diff --git a/icons/marriott.svg b/icons/marriott.svg index bb86fe24..baab3051 100644 --- a/icons/marriott.svg +++ b/icons/marriott.svg @@ -1 +1 @@ -Marriott icon \ No newline at end of file +Marriott \ No newline at end of file diff --git a/icons/maserati.svg b/icons/maserati.svg index 373b635d..f6ca6123 100644 --- a/icons/maserati.svg +++ b/icons/maserati.svg @@ -1 +1 @@ -Maserati icon \ No newline at end of file +Maserati \ No newline at end of file diff --git a/icons/mastercard.svg b/icons/mastercard.svg index 2f8fb99f..7fffc538 100644 --- a/icons/mastercard.svg +++ b/icons/mastercard.svg @@ -1 +1 @@ -MasterCard icon \ No newline at end of file +MasterCard \ No newline at end of file diff --git a/icons/mastercomfig.svg b/icons/mastercomfig.svg index 9e6930d9..0601b8c6 100644 --- a/icons/mastercomfig.svg +++ b/icons/mastercomfig.svg @@ -1 +1 @@ -mastercomfig icon \ No newline at end of file +mastercomfig \ No newline at end of file diff --git a/icons/mastodon.svg b/icons/mastodon.svg index 22206c93..19141c72 100644 --- a/icons/mastodon.svg +++ b/icons/mastodon.svg @@ -1 +1 @@ -Mastodon icon \ No newline at end of file +Mastodon \ No newline at end of file diff --git a/icons/material-ui.svg b/icons/material-ui.svg index a7c4b31e..f3ac17fd 100644 --- a/icons/material-ui.svg +++ b/icons/material-ui.svg @@ -1 +1 @@ -Material-UI icon +Material-UI \ No newline at end of file diff --git a/icons/materialdesign.svg b/icons/materialdesign.svg index 3d0011a7..9489fb6b 100644 --- a/icons/materialdesign.svg +++ b/icons/materialdesign.svg @@ -1 +1 @@ -Material Design icon \ No newline at end of file +Material Design \ No newline at end of file diff --git a/icons/materialdesignicons.svg b/icons/materialdesignicons.svg index 454a7367..c896d299 100644 --- a/icons/materialdesignicons.svg +++ b/icons/materialdesignicons.svg @@ -1 +1 @@ -Material Design Icons icon \ No newline at end of file +Material Design Icons \ No newline at end of file diff --git a/icons/matomo.svg b/icons/matomo.svg index 52b1095f..78d31f3f 100644 --- a/icons/matomo.svg +++ b/icons/matomo.svg @@ -1 +1 @@ -Matomo icon \ No newline at end of file +Matomo \ No newline at end of file diff --git a/icons/matrix.svg b/icons/matrix.svg index 9fa60239..bb182177 100644 --- a/icons/matrix.svg +++ b/icons/matrix.svg @@ -1 +1 @@ -Matrix icon \ No newline at end of file +Matrix \ No newline at end of file diff --git a/icons/mattermost.svg b/icons/mattermost.svg index e9f1d9e5..c56cbe5b 100644 --- a/icons/mattermost.svg +++ b/icons/mattermost.svg @@ -1 +1 @@ -Mattermost icon \ No newline at end of file +Mattermost \ No newline at end of file diff --git a/icons/matternet.svg b/icons/matternet.svg index ef608d62..562ad3f5 100644 --- a/icons/matternet.svg +++ b/icons/matternet.svg @@ -1 +1 @@ -Matternet icon \ No newline at end of file +Matternet \ No newline at end of file diff --git a/icons/max-planck-gesellschaft.svg b/icons/max-planck-gesellschaft.svg index 0666d3f2..6600f0b0 100644 --- a/icons/max-planck-gesellschaft.svg +++ b/icons/max-planck-gesellschaft.svg @@ -1 +1 @@ -Max-Planck-Gesellschaft icon \ No newline at end of file +Max-Planck-Gesellschaft \ No newline at end of file diff --git a/icons/max.svg b/icons/max.svg index f103fb3b..b6bcb287 100644 --- a/icons/max.svg +++ b/icons/max.svg @@ -1 +1 @@ -Max icon \ No newline at end of file +Max \ No newline at end of file diff --git a/icons/maytag.svg b/icons/maytag.svg index 0ac77426..f1cc00c3 100644 --- a/icons/maytag.svg +++ b/icons/maytag.svg @@ -1 +1 @@ -Maytag icon \ No newline at end of file +Maytag \ No newline at end of file diff --git a/icons/mazda.svg b/icons/mazda.svg index b2a8855e..dbd17e85 100644 --- a/icons/mazda.svg +++ b/icons/mazda.svg @@ -1 +1 @@ -Mazda icon \ No newline at end of file +Mazda \ No newline at end of file diff --git a/icons/mcafee.svg b/icons/mcafee.svg index 4673b92c..f10cab7d 100644 --- a/icons/mcafee.svg +++ b/icons/mcafee.svg @@ -1 +1 @@ -McAfee icon \ No newline at end of file +McAfee \ No newline at end of file diff --git a/icons/mcdonalds.svg b/icons/mcdonalds.svg index 6c24399b..7abd2737 100644 --- a/icons/mcdonalds.svg +++ b/icons/mcdonalds.svg @@ -1 +1 @@ -McDonald's icon \ No newline at end of file +McDonald's \ No newline at end of file diff --git a/icons/mclaren.svg b/icons/mclaren.svg index 47190bd8..23d77a8e 100644 --- a/icons/mclaren.svg +++ b/icons/mclaren.svg @@ -1 +1 @@ -McLaren icon \ No newline at end of file +McLaren \ No newline at end of file diff --git a/icons/mdnwebdocs.svg b/icons/mdnwebdocs.svg index 24f6f55b..32063a0b 100644 --- a/icons/mdnwebdocs.svg +++ b/icons/mdnwebdocs.svg @@ -1 +1 @@ -MDN Web Docs icon \ No newline at end of file +MDN Web Docs \ No newline at end of file diff --git a/icons/mediafire.svg b/icons/mediafire.svg index 354da62b..98fdb4dd 100644 --- a/icons/mediafire.svg +++ b/icons/mediafire.svg @@ -1 +1 @@ -MediaFire icon \ No newline at end of file +MediaFire \ No newline at end of file diff --git a/icons/mediatek.svg b/icons/mediatek.svg index 6ae1e223..f6d3d179 100644 --- a/icons/mediatek.svg +++ b/icons/mediatek.svg @@ -1 +1 @@ -MediaTek icon \ No newline at end of file +MediaTek \ No newline at end of file diff --git a/icons/mediatemple.svg b/icons/mediatemple.svg index fdbbe98e..34772020 100644 --- a/icons/mediatemple.svg +++ b/icons/mediatemple.svg @@ -1 +1 @@ -MediaTemple icon \ No newline at end of file +MediaTemple \ No newline at end of file diff --git a/icons/medium.svg b/icons/medium.svg index cd0f4d62..e4eead02 100644 --- a/icons/medium.svg +++ b/icons/medium.svg @@ -1 +1 @@ -Medium icon \ No newline at end of file +Medium \ No newline at end of file diff --git a/icons/meetup.svg b/icons/meetup.svg index f5c4abc9..79255e61 100644 --- a/icons/meetup.svg +++ b/icons/meetup.svg @@ -1 +1 @@ -Meetup icon \ No newline at end of file +Meetup \ No newline at end of file diff --git a/icons/mega.svg b/icons/mega.svg index 6e182eba..d66d6263 100644 --- a/icons/mega.svg +++ b/icons/mega.svg @@ -1 +1 @@ -MEGA icon \ No newline at end of file +MEGA \ No newline at end of file diff --git a/icons/mendeley.svg b/icons/mendeley.svg index 198840f9..9e659a0f 100644 --- a/icons/mendeley.svg +++ b/icons/mendeley.svg @@ -1 +1 @@ -Mendeley icon \ No newline at end of file +Mendeley \ No newline at end of file diff --git a/icons/mercedes.svg b/icons/mercedes.svg index 3748bb1b..84e7cad5 100644 --- a/icons/mercedes.svg +++ b/icons/mercedes.svg @@ -1 +1 @@ -Mercedes icon \ No newline at end of file +Mercedes \ No newline at end of file diff --git a/icons/mercurial.svg b/icons/mercurial.svg index e43acd25..45202a35 100644 --- a/icons/mercurial.svg +++ b/icons/mercurial.svg @@ -1 +1 @@ -Mercurial icon \ No newline at end of file +Mercurial \ No newline at end of file diff --git a/icons/messenger.svg b/icons/messenger.svg index e4e127e2..27c9a15d 100644 --- a/icons/messenger.svg +++ b/icons/messenger.svg @@ -1 +1 @@ -Messenger icon \ No newline at end of file +Messenger \ No newline at end of file diff --git a/icons/metabase.svg b/icons/metabase.svg index 3361afe9..44c7c4e5 100644 --- a/icons/metabase.svg +++ b/icons/metabase.svg @@ -1 +1 @@ -Metabase icon \ No newline at end of file +Metabase \ No newline at end of file diff --git a/icons/metafilter.svg b/icons/metafilter.svg index 3da293aa..e320c5b7 100644 --- a/icons/metafilter.svg +++ b/icons/metafilter.svg @@ -1 +1 @@ -MetaFilter icon \ No newline at end of file +MetaFilter \ No newline at end of file diff --git a/icons/meteor.svg b/icons/meteor.svg index 4b18d39c..f5c04cad 100644 --- a/icons/meteor.svg +++ b/icons/meteor.svg @@ -1 +1 @@ -Meteor icon \ No newline at end of file +Meteor \ No newline at end of file diff --git a/icons/metro.svg b/icons/metro.svg index 3055a56c..fc6329a0 100644 --- a/icons/metro.svg +++ b/icons/metro.svg @@ -1 +1 @@ -Metro icon \ No newline at end of file +Metro \ No newline at end of file diff --git a/icons/metrodelaciudaddemexico.svg b/icons/metrodelaciudaddemexico.svg index ae99750c..21b0fefd 100644 --- a/icons/metrodelaciudaddemexico.svg +++ b/icons/metrodelaciudaddemexico.svg @@ -1 +1 @@ -Metro de la Ciudad de México icon \ No newline at end of file +Metro de la Ciudad de México \ No newline at end of file diff --git a/icons/metrodemadrid.svg b/icons/metrodemadrid.svg index 75efec04..c84d8e63 100644 --- a/icons/metrodemadrid.svg +++ b/icons/metrodemadrid.svg @@ -1 +1 @@ -Metro de Madrid icon \ No newline at end of file +Metro de Madrid \ No newline at end of file diff --git a/icons/metrodeparis.svg b/icons/metrodeparis.svg index 0fcf8690..0b4e39cd 100644 --- a/icons/metrodeparis.svg +++ b/icons/metrodeparis.svg @@ -1 +1 @@ -Métro de Paris icon \ No newline at end of file +Métro de Paris \ No newline at end of file diff --git a/icons/mewe.svg b/icons/mewe.svg index 4f0bfcc4..3d889863 100644 --- a/icons/mewe.svg +++ b/icons/mewe.svg @@ -1 +1 @@ -MeWe icon \ No newline at end of file +MeWe \ No newline at end of file diff --git a/icons/micro-dot-blog.svg b/icons/micro-dot-blog.svg index 067c637a..dc303ec6 100644 --- a/icons/micro-dot-blog.svg +++ b/icons/micro-dot-blog.svg @@ -1 +1 @@ -Micro.blog icon \ No newline at end of file +Micro.blog \ No newline at end of file diff --git a/icons/microbit.svg b/icons/microbit.svg index b5c5ba15..61c03a7f 100644 --- a/icons/microbit.svg +++ b/icons/microbit.svg @@ -1 +1 @@ -micro:bit icon \ No newline at end of file +micro:bit \ No newline at end of file diff --git a/icons/microgenetics.svg b/icons/microgenetics.svg index 4b4ccad2..1307b7b2 100644 --- a/icons/microgenetics.svg +++ b/icons/microgenetics.svg @@ -1 +1 @@ -Microgenetics icon \ No newline at end of file +Microgenetics \ No newline at end of file diff --git a/icons/micropython.svg b/icons/micropython.svg index 53ca65e9..6baef4a5 100644 --- a/icons/micropython.svg +++ b/icons/micropython.svg @@ -1 +1 @@ -MicroPython icon \ No newline at end of file +MicroPython \ No newline at end of file diff --git a/icons/microsoft.svg b/icons/microsoft.svg index 6f61f951..eeacf252 100644 --- a/icons/microsoft.svg +++ b/icons/microsoft.svg @@ -1 +1 @@ -Microsoft icon \ No newline at end of file +Microsoft \ No newline at end of file diff --git a/icons/microsoftacademic.svg b/icons/microsoftacademic.svg index fcc1d15c..9332deb0 100644 --- a/icons/microsoftacademic.svg +++ b/icons/microsoftacademic.svg @@ -1 +1 @@ -Microsoft Academic icon \ No newline at end of file +Microsoft Academic \ No newline at end of file diff --git a/icons/microsoftaccess.svg b/icons/microsoftaccess.svg index 612690c3..67ee7d03 100644 --- a/icons/microsoftaccess.svg +++ b/icons/microsoftaccess.svg @@ -1 +1 @@ -Microsoft Access icon +Microsoft Access \ No newline at end of file diff --git a/icons/microsoftazure.svg b/icons/microsoftazure.svg index d6d0d2c9..b6c3e6c5 100644 --- a/icons/microsoftazure.svg +++ b/icons/microsoftazure.svg @@ -1 +1 @@ -Microsoft Azure icon \ No newline at end of file +Microsoft Azure \ No newline at end of file diff --git a/icons/microsoftbing.svg b/icons/microsoftbing.svg index f031a397..f5b787f1 100644 --- a/icons/microsoftbing.svg +++ b/icons/microsoftbing.svg @@ -1 +1 @@ -Microsoft Bing icon \ No newline at end of file +Microsoft Bing \ No newline at end of file diff --git a/icons/microsoftedge.svg b/icons/microsoftedge.svg index 49a45124..2b0cd038 100644 --- a/icons/microsoftedge.svg +++ b/icons/microsoftedge.svg @@ -1 +1 @@ -Microsoft Edge icon +Microsoft Edge \ No newline at end of file diff --git a/icons/microsoftexcel.svg b/icons/microsoftexcel.svg index 9185e954..9fc655db 100644 --- a/icons/microsoftexcel.svg +++ b/icons/microsoftexcel.svg @@ -1 +1 @@ -Microsoft Excel icon +Microsoft Excel \ No newline at end of file diff --git a/icons/microsoftexchange.svg b/icons/microsoftexchange.svg index b41278df..eee9a51c 100644 --- a/icons/microsoftexchange.svg +++ b/icons/microsoftexchange.svg @@ -1 +1 @@ -Microsoft Exchange icon \ No newline at end of file +Microsoft Exchange \ No newline at end of file diff --git a/icons/microsoftoffice.svg b/icons/microsoftoffice.svg index f93ee280..5fd536cb 100644 --- a/icons/microsoftoffice.svg +++ b/icons/microsoftoffice.svg @@ -1 +1 @@ -Microsoft Office icon \ No newline at end of file +Microsoft Office \ No newline at end of file diff --git a/icons/microsoftonedrive.svg b/icons/microsoftonedrive.svg index ce95fda0..ab8c86e7 100644 --- a/icons/microsoftonedrive.svg +++ b/icons/microsoftonedrive.svg @@ -1 +1 @@ -Microsoft OneDrive icon +Microsoft OneDrive \ No newline at end of file diff --git a/icons/microsoftonenote.svg b/icons/microsoftonenote.svg index ba4fd48d..37bdbd32 100644 --- a/icons/microsoftonenote.svg +++ b/icons/microsoftonenote.svg @@ -1 +1 @@ -Microsoft OneNote icon +Microsoft OneNote \ No newline at end of file diff --git a/icons/microsoftoutlook.svg b/icons/microsoftoutlook.svg index 3b090a42..992d11e6 100644 --- a/icons/microsoftoutlook.svg +++ b/icons/microsoftoutlook.svg @@ -1 +1 @@ -Microsoft Outlook icon +Microsoft Outlook \ No newline at end of file diff --git a/icons/microsoftpowerpoint.svg b/icons/microsoftpowerpoint.svg index 7fba1249..294fbee3 100644 --- a/icons/microsoftpowerpoint.svg +++ b/icons/microsoftpowerpoint.svg @@ -1 +1 @@ -Microsoft PowerPoint icon +Microsoft PowerPoint \ No newline at end of file diff --git a/icons/microsoftsharepoint.svg b/icons/microsoftsharepoint.svg index 2b02ccae..394786a8 100644 --- a/icons/microsoftsharepoint.svg +++ b/icons/microsoftsharepoint.svg @@ -1 +1 @@ -Microsoft SharePoint icon +Microsoft SharePoint \ No newline at end of file diff --git a/icons/microsoftsqlserver.svg b/icons/microsoftsqlserver.svg index 83fd1adc..3b3da3fc 100644 --- a/icons/microsoftsqlserver.svg +++ b/icons/microsoftsqlserver.svg @@ -1 +1 @@ -Microsoft SQL Server icon +Microsoft SQL Server \ No newline at end of file diff --git a/icons/microsoftteams.svg b/icons/microsoftteams.svg index 602c8041..dcb88a29 100644 --- a/icons/microsoftteams.svg +++ b/icons/microsoftteams.svg @@ -1 +1 @@ -Microsoft Teams icon +Microsoft Teams \ No newline at end of file diff --git a/icons/microsoftvisio.svg b/icons/microsoftvisio.svg index aa2c90cb..53f4bc17 100644 --- a/icons/microsoftvisio.svg +++ b/icons/microsoftvisio.svg @@ -1 +1 @@ -Microsoft Visio icon \ No newline at end of file +Microsoft Visio \ No newline at end of file diff --git a/icons/microsoftword.svg b/icons/microsoftword.svg index d51f089e..2838d910 100644 --- a/icons/microsoftword.svg +++ b/icons/microsoftword.svg @@ -1 +1 @@ -Microsoft Word icon +Microsoft Word \ No newline at end of file diff --git a/icons/microstrategy.svg b/icons/microstrategy.svg index 675486ef..a1ff36e3 100644 --- a/icons/microstrategy.svg +++ b/icons/microstrategy.svg @@ -1 +1 @@ -MicroStrategy icon \ No newline at end of file +MicroStrategy \ No newline at end of file diff --git a/icons/midi.svg b/icons/midi.svg index 73f13b22..b740316b 100644 --- a/icons/midi.svg +++ b/icons/midi.svg @@ -1 +1 @@ -MIDI icon +MIDI \ No newline at end of file diff --git a/icons/minds.svg b/icons/minds.svg index c2bd0afc..8a56740a 100644 --- a/icons/minds.svg +++ b/icons/minds.svg @@ -1 +1 @@ -Minds icon \ No newline at end of file +Minds \ No newline at end of file diff --git a/icons/minecraft.svg b/icons/minecraft.svg index e0c95240..1007b256 100644 --- a/icons/minecraft.svg +++ b/icons/minecraft.svg @@ -1 +1 @@ -Minecraft icon \ No newline at end of file +Minecraft \ No newline at end of file diff --git a/icons/minetest.svg b/icons/minetest.svg index 9107497f..fc14fbb2 100644 --- a/icons/minetest.svg +++ b/icons/minetest.svg @@ -1 +1 @@ -Minetest icon \ No newline at end of file +Minetest \ No newline at end of file diff --git a/icons/mini.svg b/icons/mini.svg index 66b8cfa3..a1e79cfb 100644 --- a/icons/mini.svg +++ b/icons/mini.svg @@ -1 +1 @@ -Mini icon \ No newline at end of file +Mini \ No newline at end of file diff --git a/icons/minutemailer.svg b/icons/minutemailer.svg index 1eae4a05..d1eca583 100644 --- a/icons/minutemailer.svg +++ b/icons/minutemailer.svg @@ -1 +1 @@ -Minutemailer icon \ No newline at end of file +Minutemailer \ No newline at end of file diff --git a/icons/miro.svg b/icons/miro.svg index f8cbbfb6..f8a11806 100644 --- a/icons/miro.svg +++ b/icons/miro.svg @@ -1 +1 @@ -Miro icon \ No newline at end of file +Miro \ No newline at end of file diff --git a/icons/mitsubishi.svg b/icons/mitsubishi.svg index 7984e870..323210d1 100644 --- a/icons/mitsubishi.svg +++ b/icons/mitsubishi.svg @@ -1 +1 @@ -Mitsubishi icon \ No newline at end of file +Mitsubishi \ No newline at end of file diff --git a/icons/mix.svg b/icons/mix.svg index 163bbec0..9a4f08d7 100644 --- a/icons/mix.svg +++ b/icons/mix.svg @@ -1 +1 @@ -Mix icon \ No newline at end of file +Mix \ No newline at end of file diff --git a/icons/mixcloud.svg b/icons/mixcloud.svg index 816172e7..41a0cf2b 100644 --- a/icons/mixcloud.svg +++ b/icons/mixcloud.svg @@ -1 +1 @@ -Mixcloud icon \ No newline at end of file +Mixcloud \ No newline at end of file diff --git a/icons/mobx-state-tree.svg b/icons/mobx-state-tree.svg index dd8c233d..954ab0ad 100644 --- a/icons/mobx-state-tree.svg +++ b/icons/mobx-state-tree.svg @@ -1 +1 @@ -MobX-State-Tree icon \ No newline at end of file +MobX-State-Tree \ No newline at end of file diff --git a/icons/mobx.svg b/icons/mobx.svg index 9c4c4387..2c6bf0c4 100644 --- a/icons/mobx.svg +++ b/icons/mobx.svg @@ -1 +1 @@ -MobX icon \ No newline at end of file +MobX \ No newline at end of file diff --git a/icons/mocha.svg b/icons/mocha.svg index 5b2cfbd7..b37a7141 100644 --- a/icons/mocha.svg +++ b/icons/mocha.svg @@ -1 +1 @@ -Mocha icon \ No newline at end of file +Mocha \ No newline at end of file diff --git a/icons/modx.svg b/icons/modx.svg index 18294f34..8c83d9e0 100644 --- a/icons/modx.svg +++ b/icons/modx.svg @@ -1 +1 @@ -MODX icon \ No newline at end of file +MODX \ No newline at end of file diff --git a/icons/mojangstudios.svg b/icons/mojangstudios.svg index 60919975..b3a168c6 100644 --- a/icons/mojangstudios.svg +++ b/icons/mojangstudios.svg @@ -1 +1 @@ -Mojang Studios icon \ No newline at end of file +Mojang Studios \ No newline at end of file diff --git a/icons/moleculer.svg b/icons/moleculer.svg index d1b12bd7..069c67e7 100644 --- a/icons/moleculer.svg +++ b/icons/moleculer.svg @@ -1 +1 @@ -Moleculer icon \ No newline at end of file +Moleculer \ No newline at end of file diff --git a/icons/momenteo.svg b/icons/momenteo.svg index 2eaef306..934f8dd8 100644 --- a/icons/momenteo.svg +++ b/icons/momenteo.svg @@ -1 +1 @@ -Momenteo icon \ No newline at end of file +Momenteo \ No newline at end of file diff --git a/icons/monero.svg b/icons/monero.svg index 3e7f1f66..ef468d51 100644 --- a/icons/monero.svg +++ b/icons/monero.svg @@ -1 +1 @@ -Monero icon \ No newline at end of file +Monero \ No newline at end of file diff --git a/icons/mongodb.svg b/icons/mongodb.svg index 43bf01b8..a4c81748 100644 --- a/icons/mongodb.svg +++ b/icons/mongodb.svg @@ -1 +1 @@ -MongoDB icon \ No newline at end of file +MongoDB \ No newline at end of file diff --git a/icons/monkeytie.svg b/icons/monkeytie.svg index ca33d1a7..1b64d9c4 100644 --- a/icons/monkeytie.svg +++ b/icons/monkeytie.svg @@ -1 +1 @@ -monkey tie icon \ No newline at end of file +monkey tie \ No newline at end of file diff --git a/icons/monster.svg b/icons/monster.svg index 304e57f4..6cde41d6 100644 --- a/icons/monster.svg +++ b/icons/monster.svg @@ -1 +1 @@ -Monster icon +Monster \ No newline at end of file diff --git a/icons/monzo.svg b/icons/monzo.svg index 2a930302..a795cbda 100644 --- a/icons/monzo.svg +++ b/icons/monzo.svg @@ -1 +1 @@ -Monzo icon \ No newline at end of file +Monzo \ No newline at end of file diff --git a/icons/moo.svg b/icons/moo.svg index 1922a13d..0eff470a 100644 --- a/icons/moo.svg +++ b/icons/moo.svg @@ -1 +1 @@ -Moo icon \ No newline at end of file +Moo \ No newline at end of file diff --git a/icons/moscowmetro.svg b/icons/moscowmetro.svg index 86ce57fa..5cb8060b 100644 --- a/icons/moscowmetro.svg +++ b/icons/moscowmetro.svg @@ -1 +1 @@ -Moscow Metro icon \ No newline at end of file +Moscow Metro \ No newline at end of file diff --git a/icons/motorola.svg b/icons/motorola.svg index f51b2d99..3e744bda 100644 --- a/icons/motorola.svg +++ b/icons/motorola.svg @@ -1 +1 @@ -Motorola icon \ No newline at end of file +Motorola \ No newline at end of file diff --git a/icons/mozilla.svg b/icons/mozilla.svg index 2930fae9..507eb669 100644 --- a/icons/mozilla.svg +++ b/icons/mozilla.svg @@ -1 +1 @@ -Mozilla icon \ No newline at end of file +Mozilla \ No newline at end of file diff --git a/icons/mta.svg b/icons/mta.svg index 7500b0eb..8cf29824 100644 --- a/icons/mta.svg +++ b/icons/mta.svg @@ -1 +1 @@ -MTA icon +MTA \ No newline at end of file diff --git a/icons/mtr.svg b/icons/mtr.svg index 2938717d..6008d4db 100644 --- a/icons/mtr.svg +++ b/icons/mtr.svg @@ -1 +1 @@ -MTR icon \ No newline at end of file +MTR \ No newline at end of file diff --git a/icons/mumble.svg b/icons/mumble.svg index 9d1623c9..9942ad19 100644 --- a/icons/mumble.svg +++ b/icons/mumble.svg @@ -1 +1 @@ -Mumble icon +Mumble \ No newline at end of file diff --git a/icons/musescore.svg b/icons/musescore.svg index 07282067..befa8cb0 100644 --- a/icons/musescore.svg +++ b/icons/musescore.svg @@ -1 +1 @@ -MuseScore icon \ No newline at end of file +MuseScore \ No newline at end of file diff --git a/icons/musicbrainz.svg b/icons/musicbrainz.svg index 1fab3358..877075a8 100644 --- a/icons/musicbrainz.svg +++ b/icons/musicbrainz.svg @@ -1 +1 @@ -MusicBrainz icon \ No newline at end of file +MusicBrainz \ No newline at end of file diff --git a/icons/mxlinux.svg b/icons/mxlinux.svg index adcd8b67..7805a528 100644 --- a/icons/mxlinux.svg +++ b/icons/mxlinux.svg @@ -1 +1 @@ -MX Linux icon \ No newline at end of file +MX Linux \ No newline at end of file diff --git a/icons/myanimelist.svg b/icons/myanimelist.svg index 99530038..1a097a4e 100644 --- a/icons/myanimelist.svg +++ b/icons/myanimelist.svg @@ -1 +1 @@ -MyAnimeList icon \ No newline at end of file +MyAnimeList \ No newline at end of file diff --git a/icons/myob.svg b/icons/myob.svg index ee0b0366..a0f3e520 100644 --- a/icons/myob.svg +++ b/icons/myob.svg @@ -1 +1 @@ -MYOB icon \ No newline at end of file +MYOB \ No newline at end of file diff --git a/icons/myspace.svg b/icons/myspace.svg index 39110f14..c33f7c4e 100644 --- a/icons/myspace.svg +++ b/icons/myspace.svg @@ -1 +1 @@ -Myspace icon \ No newline at end of file +Myspace \ No newline at end of file diff --git a/icons/mysql.svg b/icons/mysql.svg index 0ba8ef07..195caada 100644 --- a/icons/mysql.svg +++ b/icons/mysql.svg @@ -1 +1 @@ -MySQL icon \ No newline at end of file +MySQL \ No newline at end of file diff --git a/icons/n26.svg b/icons/n26.svg index e668bf0b..74b875e5 100644 --- a/icons/n26.svg +++ b/icons/n26.svg @@ -1 +1 @@ -N26 icon \ No newline at end of file +N26 \ No newline at end of file diff --git a/icons/namebase.svg b/icons/namebase.svg index 25c4df32..a04f13ca 100644 --- a/icons/namebase.svg +++ b/icons/namebase.svg @@ -1 +1 @@ -Namebase icon \ No newline at end of file +Namebase \ No newline at end of file diff --git a/icons/namecheap.svg b/icons/namecheap.svg index 1b9a681d..e0ce27f8 100644 --- a/icons/namecheap.svg +++ b/icons/namecheap.svg @@ -1 +1 @@ -Namecheap icon \ No newline at end of file +Namecheap \ No newline at end of file diff --git a/icons/nano.svg b/icons/nano.svg index b10ee8cf..92b92442 100644 --- a/icons/nano.svg +++ b/icons/nano.svg @@ -1 +1 @@ -Nano icon \ No newline at end of file +Nano \ No newline at end of file diff --git a/icons/nasa.svg b/icons/nasa.svg index e29c133f..8aff9ca5 100644 --- a/icons/nasa.svg +++ b/icons/nasa.svg @@ -1 +1 @@ -NASA icon \ No newline at end of file +NASA \ No newline at end of file diff --git a/icons/nationalgrid.svg b/icons/nationalgrid.svg index 4e5461ef..a3a36e55 100644 --- a/icons/nationalgrid.svg +++ b/icons/nationalgrid.svg @@ -1 +1 @@ -National Grid icon \ No newline at end of file +National Grid \ No newline at end of file diff --git a/icons/nativescript.svg b/icons/nativescript.svg index b920ac56..6a175595 100644 --- a/icons/nativescript.svg +++ b/icons/nativescript.svg @@ -1 +1 @@ -NativeScript icon \ No newline at end of file +NativeScript \ No newline at end of file diff --git a/icons/naver.svg b/icons/naver.svg index c78a1987..80e760a7 100644 --- a/icons/naver.svg +++ b/icons/naver.svg @@ -1 +1 @@ -Naver icon \ No newline at end of file +Naver \ No newline at end of file diff --git a/icons/nba.svg b/icons/nba.svg index 5436c9c5..64aa0955 100644 --- a/icons/nba.svg +++ b/icons/nba.svg @@ -1 +1 @@ -NBA icon \ No newline at end of file +NBA \ No newline at end of file diff --git a/icons/nbb.svg b/icons/nbb.svg index 4d1e4ac4..f712d0b8 100644 --- a/icons/nbb.svg +++ b/icons/nbb.svg @@ -1 +1 @@ -NBB icon \ No newline at end of file +NBB \ No newline at end of file diff --git a/icons/ndr.svg b/icons/ndr.svg index f4b18687..a5f6a558 100644 --- a/icons/ndr.svg +++ b/icons/ndr.svg @@ -1 +1 @@ -NDR icon +NDR \ No newline at end of file diff --git a/icons/nec.svg b/icons/nec.svg index c32bf096..f6264d7e 100644 --- a/icons/nec.svg +++ b/icons/nec.svg @@ -1 +1 @@ -NEC icon \ No newline at end of file +NEC \ No newline at end of file diff --git a/icons/neo4j.svg b/icons/neo4j.svg index 8bd9703d..6349ca49 100644 --- a/icons/neo4j.svg +++ b/icons/neo4j.svg @@ -1 +1 @@ -Neo4j icon \ No newline at end of file +Neo4j \ No newline at end of file diff --git a/icons/neovim.svg b/icons/neovim.svg index be8a4bb0..2975ba4e 100644 --- a/icons/neovim.svg +++ b/icons/neovim.svg @@ -1 +1 @@ -Neovim icon \ No newline at end of file +Neovim \ No newline at end of file diff --git a/icons/nestjs.svg b/icons/nestjs.svg index 57950f9e..eb4ca774 100644 --- a/icons/nestjs.svg +++ b/icons/nestjs.svg @@ -1 +1 @@ -NestJS icon \ No newline at end of file +NestJS \ No newline at end of file diff --git a/icons/netapp.svg b/icons/netapp.svg index b7fa0fe6..0e47de43 100644 --- a/icons/netapp.svg +++ b/icons/netapp.svg @@ -1 +1 @@ -NetApp icon +NetApp \ No newline at end of file diff --git a/icons/netflix.svg b/icons/netflix.svg index 686ced9a..920215bd 100644 --- a/icons/netflix.svg +++ b/icons/netflix.svg @@ -1 +1 @@ -Netflix icon \ No newline at end of file +Netflix \ No newline at end of file diff --git a/icons/netlify.svg b/icons/netlify.svg index e8e27a2c..cf0cc413 100644 --- a/icons/netlify.svg +++ b/icons/netlify.svg @@ -1 +1 @@ -Netlify icon \ No newline at end of file +Netlify \ No newline at end of file diff --git a/icons/newjapanpro-wrestling.svg b/icons/newjapanpro-wrestling.svg index 5f89314f..6f085595 100644 --- a/icons/newjapanpro-wrestling.svg +++ b/icons/newjapanpro-wrestling.svg @@ -1 +1 @@ -New Japan Pro-Wrestling icon \ No newline at end of file +New Japan Pro-Wrestling \ No newline at end of file diff --git a/icons/newrelic.svg b/icons/newrelic.svg index 56f2d0ab..bef8f7b8 100644 --- a/icons/newrelic.svg +++ b/icons/newrelic.svg @@ -1 +1 @@ -New Relic icon \ No newline at end of file +New Relic \ No newline at end of file diff --git a/icons/newyorktimes.svg b/icons/newyorktimes.svg index 31fd9936..7cfc5f37 100644 --- a/icons/newyorktimes.svg +++ b/icons/newyorktimes.svg @@ -1 +1 @@ -New York Times icon \ No newline at end of file +New York Times \ No newline at end of file diff --git a/icons/next-dot-js.svg b/icons/next-dot-js.svg index 416f7364..9972859e 100644 --- a/icons/next-dot-js.svg +++ b/icons/next-dot-js.svg @@ -1 +1 @@ -Next.js icon \ No newline at end of file +Next.js \ No newline at end of file diff --git a/icons/nextcloud.svg b/icons/nextcloud.svg index c5fec3f2..b324c8af 100644 --- a/icons/nextcloud.svg +++ b/icons/nextcloud.svg @@ -1 +1 @@ -Nextcloud icon \ No newline at end of file +Nextcloud \ No newline at end of file diff --git a/icons/nextdoor.svg b/icons/nextdoor.svg index c5f719bc..f12efd89 100644 --- a/icons/nextdoor.svg +++ b/icons/nextdoor.svg @@ -1 +1 @@ -Nextdoor icon \ No newline at end of file +Nextdoor \ No newline at end of file diff --git a/icons/nfc.svg b/icons/nfc.svg index 21e9bd2e..41f0fd29 100644 --- a/icons/nfc.svg +++ b/icons/nfc.svg @@ -1 +1 @@ -NFC icon \ No newline at end of file +NFC \ No newline at end of file diff --git a/icons/nginx.svg b/icons/nginx.svg index f8d56fac..5875410b 100644 --- a/icons/nginx.svg +++ b/icons/nginx.svg @@ -1 +1 @@ -NGINX icon \ No newline at end of file +NGINX \ No newline at end of file diff --git a/icons/ngrok.svg b/icons/ngrok.svg index 40d22a20..a708247a 100644 --- a/icons/ngrok.svg +++ b/icons/ngrok.svg @@ -1 +1 @@ -ngrok icon \ No newline at end of file +ngrok \ No newline at end of file diff --git a/icons/niconico.svg b/icons/niconico.svg index d2dc25b1..13172587 100644 --- a/icons/niconico.svg +++ b/icons/niconico.svg @@ -1 +1 @@ -niconico icon +niconico \ No newline at end of file diff --git a/icons/nim.svg b/icons/nim.svg index 14be13d7..ef84ed42 100644 --- a/icons/nim.svg +++ b/icons/nim.svg @@ -1 +1 @@ -Nim icon \ No newline at end of file +Nim \ No newline at end of file diff --git a/icons/nintendo.svg b/icons/nintendo.svg index ed09f42d..52d0163c 100644 --- a/icons/nintendo.svg +++ b/icons/nintendo.svg @@ -1 +1 @@ -Nintendo icon \ No newline at end of file +Nintendo \ No newline at end of file diff --git a/icons/nintendo3ds.svg b/icons/nintendo3ds.svg index c2ea5fd2..76fbb94f 100644 --- a/icons/nintendo3ds.svg +++ b/icons/nintendo3ds.svg @@ -1 +1 @@ -Nintendo 3DS icon \ No newline at end of file +Nintendo 3DS \ No newline at end of file diff --git a/icons/nintendogamecube.svg b/icons/nintendogamecube.svg index 2ba933a1..4c3564c8 100644 --- a/icons/nintendogamecube.svg +++ b/icons/nintendogamecube.svg @@ -1 +1 @@ -Nintendo GameCube icon \ No newline at end of file +Nintendo GameCube \ No newline at end of file diff --git a/icons/nintendonetwork.svg b/icons/nintendonetwork.svg index 4b4f8459..35b88dc0 100644 --- a/icons/nintendonetwork.svg +++ b/icons/nintendonetwork.svg @@ -1 +1 @@ -Nintendo Network icon \ No newline at end of file +Nintendo Network \ No newline at end of file diff --git a/icons/nintendoswitch.svg b/icons/nintendoswitch.svg index 98ba8d51..3f7fa716 100644 --- a/icons/nintendoswitch.svg +++ b/icons/nintendoswitch.svg @@ -1 +1 @@ -Nintendo Switch icon \ No newline at end of file +Nintendo Switch \ No newline at end of file diff --git a/icons/nissan.svg b/icons/nissan.svg index 62359da1..50e547e4 100644 --- a/icons/nissan.svg +++ b/icons/nissan.svg @@ -1 +1 @@ -Nissan icon \ No newline at end of file +Nissan \ No newline at end of file diff --git a/icons/nixos.svg b/icons/nixos.svg index 64431f2e..40e5de84 100644 --- a/icons/nixos.svg +++ b/icons/nixos.svg @@ -1 +1 @@ -NixOS icon +NixOS \ No newline at end of file diff --git a/icons/node-dot-js.svg b/icons/node-dot-js.svg index d8e43252..281c8296 100644 --- a/icons/node-dot-js.svg +++ b/icons/node-dot-js.svg @@ -1 +1 @@ -Node.js icon \ No newline at end of file +Node.js \ No newline at end of file diff --git a/icons/node-red.svg b/icons/node-red.svg index 3c2aecd1..35fc3e53 100644 --- a/icons/node-red.svg +++ b/icons/node-red.svg @@ -1 +1 @@ -Node-RED icon \ No newline at end of file +Node-RED \ No newline at end of file diff --git a/icons/nodemon.svg b/icons/nodemon.svg index c2f2e663..67b85723 100644 --- a/icons/nodemon.svg +++ b/icons/nodemon.svg @@ -1 +1 @@ -Nodemon icon \ No newline at end of file +Nodemon \ No newline at end of file diff --git a/icons/nokia.svg b/icons/nokia.svg index cf482653..6447dcb0 100644 --- a/icons/nokia.svg +++ b/icons/nokia.svg @@ -1 +1 @@ -Nokia icon \ No newline at end of file +Nokia \ No newline at end of file diff --git a/icons/norwegian.svg b/icons/norwegian.svg index a33a2aca..cfdc7ca0 100644 --- a/icons/norwegian.svg +++ b/icons/norwegian.svg @@ -1 +1 @@ -Norwegian icon \ No newline at end of file +Norwegian \ No newline at end of file diff --git a/icons/notepadplusplus.svg b/icons/notepadplusplus.svg index 61cfa26b..c19a818b 100644 --- a/icons/notepadplusplus.svg +++ b/icons/notepadplusplus.svg @@ -1 +1 @@ -Notepad++ icon \ No newline at end of file +Notepad++ \ No newline at end of file diff --git a/icons/notion.svg b/icons/notion.svg index 2e29096f..2917f42e 100644 --- a/icons/notion.svg +++ b/icons/notion.svg @@ -1 +1 @@ -Notion icon \ No newline at end of file +Notion \ No newline at end of file diff --git a/icons/notist.svg b/icons/notist.svg index 69306e7b..d3d89fb3 100644 --- a/icons/notist.svg +++ b/icons/notist.svg @@ -1 +1 @@ -Notist icon \ No newline at end of file +Notist \ No newline at end of file diff --git a/icons/nounproject.svg b/icons/nounproject.svg index 5c2fcdd1..6d0cd8e5 100644 --- a/icons/nounproject.svg +++ b/icons/nounproject.svg @@ -1 +1 @@ -Noun Project icon \ No newline at end of file +Noun Project \ No newline at end of file diff --git a/icons/npm.svg b/icons/npm.svg index befc171b..e04468d9 100644 --- a/icons/npm.svg +++ b/icons/npm.svg @@ -1 +1 @@ -npm icon \ No newline at end of file +npm \ No newline at end of file diff --git a/icons/nrwl.svg b/icons/nrwl.svg index 25aa947e..86c77cd1 100644 --- a/icons/nrwl.svg +++ b/icons/nrwl.svg @@ -1 +1 @@ -Nrwl icon \ No newline at end of file +Nrwl \ No newline at end of file diff --git a/icons/nubank.svg b/icons/nubank.svg index c7930200..59be94a2 100644 --- a/icons/nubank.svg +++ b/icons/nubank.svg @@ -1 +1 @@ -Nubank icon \ No newline at end of file +Nubank \ No newline at end of file diff --git a/icons/nucleo.svg b/icons/nucleo.svg index 6fa81a18..1c6a312a 100644 --- a/icons/nucleo.svg +++ b/icons/nucleo.svg @@ -1 +1 @@ -Nucleo icon \ No newline at end of file +Nucleo \ No newline at end of file diff --git a/icons/nuget.svg b/icons/nuget.svg index 8eb301c7..4b4f17d0 100644 --- a/icons/nuget.svg +++ b/icons/nuget.svg @@ -1 +1 @@ -NuGet icon \ No newline at end of file +NuGet \ No newline at end of file diff --git a/icons/nuke.svg b/icons/nuke.svg index e9cc6916..44c6b0e0 100644 --- a/icons/nuke.svg +++ b/icons/nuke.svg @@ -1 +1 @@ -Nuke icon \ No newline at end of file +Nuke \ No newline at end of file diff --git a/icons/numba.svg b/icons/numba.svg index 77d8c10e..2c026acd 100644 --- a/icons/numba.svg +++ b/icons/numba.svg @@ -1 +1 @@ -Numba icon \ No newline at end of file +Numba \ No newline at end of file diff --git a/icons/numpy.svg b/icons/numpy.svg index 4e17229e..5c8e8635 100644 --- a/icons/numpy.svg +++ b/icons/numpy.svg @@ -1 +1 @@ -NumPy icon \ No newline at end of file +NumPy \ No newline at end of file diff --git a/icons/nutanix.svg b/icons/nutanix.svg index 260ce378..ed5130b6 100644 --- a/icons/nutanix.svg +++ b/icons/nutanix.svg @@ -1 +1 @@ -Nutanix icon \ No newline at end of file +Nutanix \ No newline at end of file diff --git a/icons/nuxt-dot-js.svg b/icons/nuxt-dot-js.svg index 5c2f64a1..47f3a0e8 100644 --- a/icons/nuxt-dot-js.svg +++ b/icons/nuxt-dot-js.svg @@ -1 +1 @@ -Nuxt.js icon \ No newline at end of file +Nuxt.js \ No newline at end of file diff --git a/icons/nvidia.svg b/icons/nvidia.svg index 81968a10..2c7ff66f 100644 --- a/icons/nvidia.svg +++ b/icons/nvidia.svg @@ -1 +1 @@ -NVIDIA icon \ No newline at end of file +NVIDIA \ No newline at end of file diff --git a/icons/nx.svg b/icons/nx.svg index 03185ab7..93b0362a 100644 --- a/icons/nx.svg +++ b/icons/nx.svg @@ -1 +1 @@ -Nx icon \ No newline at end of file +Nx \ No newline at end of file diff --git a/icons/observable.svg b/icons/observable.svg index 7852fd7f..4ac35887 100644 --- a/icons/observable.svg +++ b/icons/observable.svg @@ -1 +1 @@ -Observable icon \ No newline at end of file +Observable \ No newline at end of file diff --git a/icons/obsstudio.svg b/icons/obsstudio.svg index 0eedefe7..9f4c85d2 100644 --- a/icons/obsstudio.svg +++ b/icons/obsstudio.svg @@ -1 +1 @@ -OBS Studio icon \ No newline at end of file +OBS Studio \ No newline at end of file diff --git a/icons/ocaml.svg b/icons/ocaml.svg index fa2102db..1084bfe2 100644 --- a/icons/ocaml.svg +++ b/icons/ocaml.svg @@ -1 +1 @@ -OCaml icon \ No newline at end of file +OCaml \ No newline at end of file diff --git a/icons/octave.svg b/icons/octave.svg index 959e875b..66010ce0 100644 --- a/icons/octave.svg +++ b/icons/octave.svg @@ -1 +1 @@ -Octave icon \ No newline at end of file +Octave \ No newline at end of file diff --git a/icons/octopusdeploy.svg b/icons/octopusdeploy.svg index c81e03e8..7d835656 100644 --- a/icons/octopusdeploy.svg +++ b/icons/octopusdeploy.svg @@ -1 +1 @@ -Octopus Deploy icon \ No newline at end of file +Octopus Deploy \ No newline at end of file diff --git a/icons/oculus.svg b/icons/oculus.svg index 3acc89bd..36b89be9 100644 --- a/icons/oculus.svg +++ b/icons/oculus.svg @@ -1 +1 @@ -Oculus icon \ No newline at end of file +Oculus \ No newline at end of file diff --git a/icons/odnoklassniki.svg b/icons/odnoklassniki.svg index 4e7803b1..836c01a0 100644 --- a/icons/odnoklassniki.svg +++ b/icons/odnoklassniki.svg @@ -1 +1 @@ -Odnoklassniki icon \ No newline at end of file +Odnoklassniki \ No newline at end of file diff --git a/icons/odysee.svg b/icons/odysee.svg index 4b51cb01..256f098b 100644 --- a/icons/odysee.svg +++ b/icons/odysee.svg @@ -1 +1 @@ -Odysee icon \ No newline at end of file +Odysee \ No newline at end of file diff --git a/icons/okcupid.svg b/icons/okcupid.svg index 920a31f0..ab50caf4 100644 --- a/icons/okcupid.svg +++ b/icons/okcupid.svg @@ -1 +1 @@ -okcupid icon \ No newline at end of file +okcupid \ No newline at end of file diff --git a/icons/okta.svg b/icons/okta.svg index 70adc87d..1b6258e0 100644 --- a/icons/okta.svg +++ b/icons/okta.svg @@ -1 +1 @@ -Okta icon \ No newline at end of file +Okta \ No newline at end of file diff --git a/icons/oneplus.svg b/icons/oneplus.svg index 94a9a00d..11c3131a 100644 --- a/icons/oneplus.svg +++ b/icons/oneplus.svg @@ -1 +1 @@ -OnePlus icon +OnePlus \ No newline at end of file diff --git a/icons/onlyfans.svg b/icons/onlyfans.svg index 17b4d302..a610c5d0 100644 --- a/icons/onlyfans.svg +++ b/icons/onlyfans.svg @@ -1 +1 @@ -OnlyFans icon \ No newline at end of file +OnlyFans \ No newline at end of file diff --git a/icons/onnx.svg b/icons/onnx.svg index 8deaeb5a..12c07089 100644 --- a/icons/onnx.svg +++ b/icons/onnx.svg @@ -1 +1 @@ -ONNX icon +ONNX \ No newline at end of file diff --git a/icons/onstar.svg b/icons/onstar.svg index 25aadd81..98b4c08c 100644 --- a/icons/onstar.svg +++ b/icons/onstar.svg @@ -1 +1 @@ -OnStar icon \ No newline at end of file +OnStar \ No newline at end of file diff --git a/icons/opel.svg b/icons/opel.svg index ce763816..8752a963 100644 --- a/icons/opel.svg +++ b/icons/opel.svg @@ -1 +1 @@ -Opel icon \ No newline at end of file +Opel \ No newline at end of file diff --git a/icons/openaccess.svg b/icons/openaccess.svg index 6aa4679a..17c94bb9 100644 --- a/icons/openaccess.svg +++ b/icons/openaccess.svg @@ -1 +1 @@ -Open Access icon \ No newline at end of file +Open Access \ No newline at end of file diff --git a/icons/openai.svg b/icons/openai.svg index 430f41cd..ebbdab0e 100644 --- a/icons/openai.svg +++ b/icons/openai.svg @@ -1 +1 @@ -OpenAI icon \ No newline at end of file +OpenAI \ No newline at end of file diff --git a/icons/openaigym.svg b/icons/openaigym.svg index d405f5f8..d9b3ad20 100644 --- a/icons/openaigym.svg +++ b/icons/openaigym.svg @@ -1 +1 @@ -OpenAI Gym icon \ No newline at end of file +OpenAI Gym \ No newline at end of file diff --git a/icons/openapiinitiative.svg b/icons/openapiinitiative.svg index bfad2e19..cefb8489 100644 --- a/icons/openapiinitiative.svg +++ b/icons/openapiinitiative.svg @@ -1 +1 @@ -OpenAPI Initiative icon \ No newline at end of file +OpenAPI Initiative \ No newline at end of file diff --git a/icons/openbadges.svg b/icons/openbadges.svg index 3b8f892e..7101ef8b 100644 --- a/icons/openbadges.svg +++ b/icons/openbadges.svg @@ -1 +1 @@ -Open Badges icon \ No newline at end of file +Open Badges \ No newline at end of file diff --git a/icons/openbsd.svg b/icons/openbsd.svg index c47dec9e..e78fbc7e 100644 --- a/icons/openbsd.svg +++ b/icons/openbsd.svg @@ -1 +1 @@ -OpenBSD icon +OpenBSD \ No newline at end of file diff --git a/icons/openbugbounty.svg b/icons/openbugbounty.svg index 46664975..8bdb457a 100644 --- a/icons/openbugbounty.svg +++ b/icons/openbugbounty.svg @@ -1 +1 @@ -Open Bug Bounty icon \ No newline at end of file +Open Bug Bounty \ No newline at end of file diff --git a/icons/opencollective.svg b/icons/opencollective.svg index ba98a24c..70e5816e 100644 --- a/icons/opencollective.svg +++ b/icons/opencollective.svg @@ -1 +1 @@ -Open Collective icon \ No newline at end of file +Open Collective \ No newline at end of file diff --git a/icons/opencontainersinitiative.svg b/icons/opencontainersinitiative.svg index 1dee4e85..567c39f0 100644 --- a/icons/opencontainersinitiative.svg +++ b/icons/opencontainersinitiative.svg @@ -1 +1 @@ -Open Containers Initiative icon +Open Containers Initiative \ No newline at end of file diff --git a/icons/opencv.svg b/icons/opencv.svg index ab227c1c..b10543e1 100644 --- a/icons/opencv.svg +++ b/icons/opencv.svg @@ -1 +1 @@ -OpenCV icon \ No newline at end of file +OpenCV \ No newline at end of file diff --git a/icons/openfaas.svg b/icons/openfaas.svg index b4550b5b..1fa59c19 100644 --- a/icons/openfaas.svg +++ b/icons/openfaas.svg @@ -1 +1 @@ -OpenFaaS icon \ No newline at end of file +OpenFaaS \ No newline at end of file diff --git a/icons/opengl.svg b/icons/opengl.svg index d5759f33..7cc818a7 100644 --- a/icons/opengl.svg +++ b/icons/opengl.svg @@ -1 +1 @@ -OpenGL icon \ No newline at end of file +OpenGL \ No newline at end of file diff --git a/icons/openid.svg b/icons/openid.svg index 5cb80f32..b76212d1 100644 --- a/icons/openid.svg +++ b/icons/openid.svg @@ -1 +1 @@ -OpenID icon \ No newline at end of file +OpenID \ No newline at end of file diff --git a/icons/openlayers.svg b/icons/openlayers.svg index 2e63e92e..1fd15f4d 100644 --- a/icons/openlayers.svg +++ b/icons/openlayers.svg @@ -1 +1 @@ -Openlayers icon \ No newline at end of file +Openlayers \ No newline at end of file diff --git a/icons/opennebula.svg b/icons/opennebula.svg index 784c91e6..3a664a60 100644 --- a/icons/opennebula.svg +++ b/icons/opennebula.svg @@ -1 +1 @@ -OpenNebula icon \ No newline at end of file +OpenNebula \ No newline at end of file diff --git a/icons/opensourceinitiative.svg b/icons/opensourceinitiative.svg index 7fa43d44..186fa100 100644 --- a/icons/opensourceinitiative.svg +++ b/icons/opensourceinitiative.svg @@ -1 +1 @@ -Open Source Initiative icon \ No newline at end of file +Open Source Initiative \ No newline at end of file diff --git a/icons/openssl.svg b/icons/openssl.svg index 7ca2a1fe..7d094ef5 100644 --- a/icons/openssl.svg +++ b/icons/openssl.svg @@ -1 +1 @@ -OpenSSL icon \ No newline at end of file +OpenSSL \ No newline at end of file diff --git a/icons/openstack.svg b/icons/openstack.svg index 83755312..45ff1021 100644 --- a/icons/openstack.svg +++ b/icons/openstack.svg @@ -1 +1 @@ -OpenStack icon \ No newline at end of file +OpenStack \ No newline at end of file diff --git a/icons/openstreetmap.svg b/icons/openstreetmap.svg index fa326771..510b6cd2 100644 --- a/icons/openstreetmap.svg +++ b/icons/openstreetmap.svg @@ -1 +1 @@ -OpenStreetMap icon \ No newline at end of file +OpenStreetMap \ No newline at end of file diff --git a/icons/opensuse.svg b/icons/opensuse.svg index a27e48a7..8ac1e8d2 100644 --- a/icons/opensuse.svg +++ b/icons/opensuse.svg @@ -1 +1 @@ -openSUSE icon \ No newline at end of file +openSUSE \ No newline at end of file diff --git a/icons/openvpn.svg b/icons/openvpn.svg index 52703a8a..198fea5d 100644 --- a/icons/openvpn.svg +++ b/icons/openvpn.svg @@ -1 +1 @@ -OpenVPN icon \ No newline at end of file +OpenVPN \ No newline at end of file diff --git a/icons/openwrt.svg b/icons/openwrt.svg index fd7f796d..71a93b5c 100644 --- a/icons/openwrt.svg +++ b/icons/openwrt.svg @@ -1 +1 @@ -OpenWrt icon +OpenWrt \ No newline at end of file diff --git a/icons/opera.svg b/icons/opera.svg index 1729ce9a..d1194ee2 100644 --- a/icons/opera.svg +++ b/icons/opera.svg @@ -1 +1 @@ -Opera icon \ No newline at end of file +Opera \ No newline at end of file diff --git a/icons/opnsense.svg b/icons/opnsense.svg index c453178c..e50a92dc 100644 --- a/icons/opnsense.svg +++ b/icons/opnsense.svg @@ -1 +1 @@ -OPNSense icon \ No newline at end of file +OPNSense \ No newline at end of file diff --git a/icons/opsgenie.svg b/icons/opsgenie.svg index 1ece5a94..3c674de6 100644 --- a/icons/opsgenie.svg +++ b/icons/opsgenie.svg @@ -1 +1 @@ -Opsgenie icon \ No newline at end of file +Opsgenie \ No newline at end of file diff --git a/icons/opslevel.svg b/icons/opslevel.svg index d2c7b6f1..da820935 100644 --- a/icons/opslevel.svg +++ b/icons/opslevel.svg @@ -1 +1 @@ -OpsLevel icon +OpsLevel \ No newline at end of file diff --git a/icons/oracle.svg b/icons/oracle.svg index 6ff7fb3c..a7b5a8d1 100644 --- a/icons/oracle.svg +++ b/icons/oracle.svg @@ -1 +1 @@ -Oracle icon \ No newline at end of file +Oracle \ No newline at end of file diff --git a/icons/orcid.svg b/icons/orcid.svg index 4ce63494..129c604b 100644 --- a/icons/orcid.svg +++ b/icons/orcid.svg @@ -1 +1 @@ -ORCID icon \ No newline at end of file +ORCID \ No newline at end of file diff --git a/icons/org.svg b/icons/org.svg index 04417641..84d7feaa 100644 --- a/icons/org.svg +++ b/icons/org.svg @@ -1 +1 @@ -Org icon +Org \ No newline at end of file diff --git a/icons/origin.svg b/icons/origin.svg index 8eb35cda..a2a6bcbb 100644 --- a/icons/origin.svg +++ b/icons/origin.svg @@ -1 +1 @@ -Origin icon \ No newline at end of file +Origin \ No newline at end of file diff --git a/icons/osano.svg b/icons/osano.svg index 147ec7b7..aa5e9dbc 100644 --- a/icons/osano.svg +++ b/icons/osano.svg @@ -1 +1 @@ -Osano icon \ No newline at end of file +Osano \ No newline at end of file diff --git a/icons/oshkosh.svg b/icons/oshkosh.svg index e1b51cb5..2ee24d1a 100644 --- a/icons/oshkosh.svg +++ b/icons/oshkosh.svg @@ -1 +1 @@ -Oshkosh icon \ No newline at end of file +Oshkosh \ No newline at end of file diff --git a/icons/osmc.svg b/icons/osmc.svg index 7f23ed7a..40711c60 100644 --- a/icons/osmc.svg +++ b/icons/osmc.svg @@ -1 +1 @@ -OSMC icon \ No newline at end of file +OSMC \ No newline at end of file diff --git a/icons/osu.svg b/icons/osu.svg index 4c7b6e51..bcbbcb61 100644 --- a/icons/osu.svg +++ b/icons/osu.svg @@ -1 +1 @@ -osu! icon \ No newline at end of file +osu! \ No newline at end of file diff --git a/icons/overcast.svg b/icons/overcast.svg index a842c2b6..d06f06f4 100644 --- a/icons/overcast.svg +++ b/icons/overcast.svg @@ -1 +1 @@ -Overcast icon \ No newline at end of file +Overcast \ No newline at end of file diff --git a/icons/overleaf.svg b/icons/overleaf.svg index f5130f29..1062127a 100644 --- a/icons/overleaf.svg +++ b/icons/overleaf.svg @@ -1 +1 @@ -Overleaf icon \ No newline at end of file +Overleaf \ No newline at end of file diff --git a/icons/ovh.svg b/icons/ovh.svg index 6bbac5d2..8e80d0eb 100644 --- a/icons/ovh.svg +++ b/icons/ovh.svg @@ -1 +1 @@ -OVH icon \ No newline at end of file +OVH \ No newline at end of file diff --git a/icons/owasp.svg b/icons/owasp.svg index 39d1fe05..d499ba67 100644 --- a/icons/owasp.svg +++ b/icons/owasp.svg @@ -1 +1 @@ -OWASP icon \ No newline at end of file +OWASP \ No newline at end of file diff --git a/icons/oxygen.svg b/icons/oxygen.svg index 1701155b..5cd57b9e 100644 --- a/icons/oxygen.svg +++ b/icons/oxygen.svg @@ -1 +1 @@ -Oxygen icon \ No newline at end of file +Oxygen \ No newline at end of file diff --git a/icons/oyo.svg b/icons/oyo.svg index 24f77184..1efc40b7 100644 --- a/icons/oyo.svg +++ b/icons/oyo.svg @@ -1 +1 @@ -OYO icon \ No newline at end of file +OYO \ No newline at end of file diff --git a/icons/p5-dot-js.svg b/icons/p5-dot-js.svg index b00404aa..5be52be4 100644 --- a/icons/p5-dot-js.svg +++ b/icons/p5-dot-js.svg @@ -1 +1 @@ -p5.js icon \ No newline at end of file +p5.js \ No newline at end of file diff --git a/icons/packagist.svg b/icons/packagist.svg index 31809b35..e1b6db7a 100644 --- a/icons/packagist.svg +++ b/icons/packagist.svg @@ -1 +1 @@ -Packagist icon \ No newline at end of file +Packagist \ No newline at end of file diff --git a/icons/pagekit.svg b/icons/pagekit.svg index d7bfec9d..b1c44811 100755 --- a/icons/pagekit.svg +++ b/icons/pagekit.svg @@ -1 +1 @@ -Pagekit icon \ No newline at end of file +Pagekit \ No newline at end of file diff --git a/icons/pagerduty.svg b/icons/pagerduty.svg index e28e95d4..13af329b 100644 --- a/icons/pagerduty.svg +++ b/icons/pagerduty.svg @@ -1 +1 @@ -PagerDuty icon \ No newline at end of file +PagerDuty \ No newline at end of file diff --git a/icons/pagespeedinsights.svg b/icons/pagespeedinsights.svg index 612dbb10..74f22274 100644 --- a/icons/pagespeedinsights.svg +++ b/icons/pagespeedinsights.svg @@ -1 +1 @@ -PageSpeed Insights icon \ No newline at end of file +PageSpeed Insights \ No newline at end of file diff --git a/icons/pagseguro.svg b/icons/pagseguro.svg index 5ff5d088..4f7f756b 100644 --- a/icons/pagseguro.svg +++ b/icons/pagseguro.svg @@ -1 +1 @@ -PagSeguro icon \ No newline at end of file +PagSeguro \ No newline at end of file diff --git a/icons/palantir.svg b/icons/palantir.svg index d7b03a8e..50be0dea 100644 --- a/icons/palantir.svg +++ b/icons/palantir.svg @@ -1 +1 @@ -Palantir icon \ No newline at end of file +Palantir \ No newline at end of file diff --git a/icons/paloaltosoftware.svg b/icons/paloaltosoftware.svg index 7bca09a9..092c4a76 100644 --- a/icons/paloaltosoftware.svg +++ b/icons/paloaltosoftware.svg @@ -1 +1 @@ -Palo Alto Software icon \ No newline at end of file +Palo Alto Software \ No newline at end of file diff --git a/icons/pandas.svg b/icons/pandas.svg index 2f517342..1b55566f 100644 --- a/icons/pandas.svg +++ b/icons/pandas.svg @@ -1 +1 @@ -pandas icon \ No newline at end of file +pandas \ No newline at end of file diff --git a/icons/pandora.svg b/icons/pandora.svg index 661cabb9..41b2413a 100644 --- a/icons/pandora.svg +++ b/icons/pandora.svg @@ -1 +1 @@ -Pandora icon +Pandora \ No newline at end of file diff --git a/icons/pantheon.svg b/icons/pantheon.svg index d72dd8d0..af21c07b 100644 --- a/icons/pantheon.svg +++ b/icons/pantheon.svg @@ -1 +1 @@ -Pantheon icon \ No newline at end of file +Pantheon \ No newline at end of file diff --git a/icons/paritysubstrate.svg b/icons/paritysubstrate.svg index e1d61c0d..3a257c7d 100644 --- a/icons/paritysubstrate.svg +++ b/icons/paritysubstrate.svg @@ -1 +1 @@ -Parity Substrate icon +Parity Substrate \ No newline at end of file diff --git a/icons/parse-dot-ly.svg b/icons/parse-dot-ly.svg index 670130b1..b1642ddb 100644 --- a/icons/parse-dot-ly.svg +++ b/icons/parse-dot-ly.svg @@ -1 +1 @@ -Parse.ly icon \ No newline at end of file +Parse.ly \ No newline at end of file diff --git a/icons/passport.svg b/icons/passport.svg index 0b600bff..4e46f886 100644 --- a/icons/passport.svg +++ b/icons/passport.svg @@ -1 +1 @@ -Passport icon \ No newline at end of file +Passport \ No newline at end of file diff --git a/icons/pastebin.svg b/icons/pastebin.svg index 620c758d..14dfd23f 100644 --- a/icons/pastebin.svg +++ b/icons/pastebin.svg @@ -1 +1 @@ -Pastebin icon \ No newline at end of file +Pastebin \ No newline at end of file diff --git a/icons/patreon.svg b/icons/patreon.svg index 1b3e1e56..7e9da740 100644 --- a/icons/patreon.svg +++ b/icons/patreon.svg @@ -1 +1 @@ -Patreon icon \ No newline at end of file +Patreon \ No newline at end of file diff --git a/icons/payoneer.svg b/icons/payoneer.svg index 99e8c46c..10a1117d 100644 --- a/icons/payoneer.svg +++ b/icons/payoneer.svg @@ -1 +1 @@ -Payoneer icon +Payoneer \ No newline at end of file diff --git a/icons/paypal.svg b/icons/paypal.svg index dd3cc4ad..535d1753 100644 --- a/icons/paypal.svg +++ b/icons/paypal.svg @@ -1 +1 @@ -PayPal icon \ No newline at end of file +PayPal \ No newline at end of file diff --git a/icons/paytm.svg b/icons/paytm.svg index 7e4fe54a..624b430f 100644 --- a/icons/paytm.svg +++ b/icons/paytm.svg @@ -1 +1 @@ -Paytm icon \ No newline at end of file +Paytm \ No newline at end of file diff --git a/icons/pcgamingwiki.svg b/icons/pcgamingwiki.svg index a92cccb2..c9bccaf5 100644 --- a/icons/pcgamingwiki.svg +++ b/icons/pcgamingwiki.svg @@ -1 +1 @@ -PCGamingWiki icon \ No newline at end of file +PCGamingWiki \ No newline at end of file diff --git a/icons/peertube.svg b/icons/peertube.svg index 798e7923..c34e315b 100644 --- a/icons/peertube.svg +++ b/icons/peertube.svg @@ -1 +1 @@ -PeerTube icon \ No newline at end of file +PeerTube \ No newline at end of file diff --git a/icons/pegasusairlines.svg b/icons/pegasusairlines.svg index 51c8dc16..90699c56 100644 --- a/icons/pegasusairlines.svg +++ b/icons/pegasusairlines.svg @@ -1 +1 @@ -Pegasus Airlines icon \ No newline at end of file +Pegasus Airlines \ No newline at end of file diff --git a/icons/pelican.svg b/icons/pelican.svg index 5508fb59..4df58d35 100644 --- a/icons/pelican.svg +++ b/icons/pelican.svg @@ -1 +1 @@ -Pelican icon \ No newline at end of file +Pelican \ No newline at end of file diff --git a/icons/peloton.svg b/icons/peloton.svg index e8301a13..d9385810 100644 --- a/icons/peloton.svg +++ b/icons/peloton.svg @@ -1 +1 @@ -Peloton icon +Peloton \ No newline at end of file diff --git a/icons/pepsi.svg b/icons/pepsi.svg index 7eec54c4..9ea41c09 100644 --- a/icons/pepsi.svg +++ b/icons/pepsi.svg @@ -1 +1 @@ -Pepsi icon \ No newline at end of file +Pepsi \ No newline at end of file diff --git a/icons/perforce.svg b/icons/perforce.svg index 4fdb91cf..d801be62 100644 --- a/icons/perforce.svg +++ b/icons/perforce.svg @@ -1 +1 @@ -Perforce icon \ No newline at end of file +Perforce \ No newline at end of file diff --git a/icons/perl.svg b/icons/perl.svg index 9f50d8a8..27385be0 100644 --- a/icons/perl.svg +++ b/icons/perl.svg @@ -1 +1 @@ -Perl icon \ No newline at end of file +Perl \ No newline at end of file diff --git a/icons/peugeot.svg b/icons/peugeot.svg index 72664d96..101e1dc2 100644 --- a/icons/peugeot.svg +++ b/icons/peugeot.svg @@ -1 +1 @@ -Peugeot icon \ No newline at end of file +Peugeot \ No newline at end of file diff --git a/icons/pexels.svg b/icons/pexels.svg index 928b980f..4c0dff1b 100644 --- a/icons/pexels.svg +++ b/icons/pexels.svg @@ -1 +1 @@ -Pexels icon +Pexels \ No newline at end of file diff --git a/icons/pfsense.svg b/icons/pfsense.svg index 18cbb224..1e530463 100644 --- a/icons/pfsense.svg +++ b/icons/pfsense.svg @@ -1 +1 @@ -pfSense icon \ No newline at end of file +pfSense \ No newline at end of file diff --git a/icons/phabricator.svg b/icons/phabricator.svg index 59521a67..2b37c36a 100644 --- a/icons/phabricator.svg +++ b/icons/phabricator.svg @@ -1 +1 @@ -Phabricator icon \ No newline at end of file +Phabricator \ No newline at end of file diff --git a/icons/philipshue.svg b/icons/philipshue.svg index e600d54e..0c34dba4 100644 --- a/icons/philipshue.svg +++ b/icons/philipshue.svg @@ -1 +1 @@ -Philips Hue icon \ No newline at end of file +Philips Hue \ No newline at end of file diff --git a/icons/phonepe.svg b/icons/phonepe.svg index 3023164c..c981c659 100644 --- a/icons/phonepe.svg +++ b/icons/phonepe.svg @@ -1 +1 @@ -PhonePe icon \ No newline at end of file +PhonePe \ No newline at end of file diff --git a/icons/photobucket.svg b/icons/photobucket.svg index 0c4f62a7..b56ff634 100644 --- a/icons/photobucket.svg +++ b/icons/photobucket.svg @@ -1 +1 @@ -Photobucket icon \ No newline at end of file +Photobucket \ No newline at end of file diff --git a/icons/photocrowd.svg b/icons/photocrowd.svg index 86a68633..a1e968bd 100644 --- a/icons/photocrowd.svg +++ b/icons/photocrowd.svg @@ -1 +1 @@ -Photocrowd icon \ No newline at end of file +Photocrowd \ No newline at end of file diff --git a/icons/photopea.svg b/icons/photopea.svg index 2a9fefdf..a361a501 100644 --- a/icons/photopea.svg +++ b/icons/photopea.svg @@ -1 +1 @@ -Photopea icon \ No newline at end of file +Photopea \ No newline at end of file diff --git a/icons/php.svg b/icons/php.svg index 4201eece..a08156af 100644 --- a/icons/php.svg +++ b/icons/php.svg @@ -1 +1 @@ -PHP icon \ No newline at end of file +PHP \ No newline at end of file diff --git a/icons/phpstorm.svg b/icons/phpstorm.svg index d8662f13..f6bf42ed 100644 --- a/icons/phpstorm.svg +++ b/icons/phpstorm.svg @@ -1 +1 @@ -PhpStorm icon \ No newline at end of file +PhpStorm \ No newline at end of file diff --git a/icons/pi-hole.svg b/icons/pi-hole.svg index 2c3d0770..06814f5b 100644 --- a/icons/pi-hole.svg +++ b/icons/pi-hole.svg @@ -1 +1 @@ -Pi-hole icon \ No newline at end of file +Pi-hole \ No newline at end of file diff --git a/icons/picarto-dot-tv.svg b/icons/picarto-dot-tv.svg index 37479f7f..ac651164 100644 --- a/icons/picarto-dot-tv.svg +++ b/icons/picarto-dot-tv.svg @@ -1 +1 @@ -Picarto.TV icon \ No newline at end of file +Picarto.TV \ No newline at end of file diff --git a/icons/picnic.svg b/icons/picnic.svg index 0bd46790..8ad8b8a5 100644 --- a/icons/picnic.svg +++ b/icons/picnic.svg @@ -1 +1 @@ -Picnic icon \ No newline at end of file +Picnic \ No newline at end of file diff --git a/icons/picpay.svg b/icons/picpay.svg index 6afbc8b2..fc54ac52 100644 --- a/icons/picpay.svg +++ b/icons/picpay.svg @@ -1 +1 @@ -PicPay icon \ No newline at end of file +PicPay \ No newline at end of file diff --git a/icons/pimcore.svg b/icons/pimcore.svg index f5d63211..5bc915f4 100644 --- a/icons/pimcore.svg +++ b/icons/pimcore.svg @@ -1 +1 @@ -Pimcore icon \ No newline at end of file +Pimcore \ No newline at end of file diff --git a/icons/pinboard.svg b/icons/pinboard.svg index ea05b9f7..4a2e55d7 100644 --- a/icons/pinboard.svg +++ b/icons/pinboard.svg @@ -1 +1 @@ -Pinboard icon \ No newline at end of file +Pinboard \ No newline at end of file diff --git a/icons/pingdom.svg b/icons/pingdom.svg index a45fc526..747cbe14 100644 --- a/icons/pingdom.svg +++ b/icons/pingdom.svg @@ -1 +1 @@ -Pingdom icon \ No newline at end of file +Pingdom \ No newline at end of file diff --git a/icons/pinterest.svg b/icons/pinterest.svg index ad07407d..2ce115c6 100644 --- a/icons/pinterest.svg +++ b/icons/pinterest.svg @@ -1 +1 @@ -Pinterest icon \ No newline at end of file +Pinterest \ No newline at end of file diff --git a/icons/pioneerdj.svg b/icons/pioneerdj.svg index b4b60a32..2ebc7efa 100644 --- a/icons/pioneerdj.svg +++ b/icons/pioneerdj.svg @@ -1 +1 @@ -Pioneer DJ icon \ No newline at end of file +Pioneer DJ \ No newline at end of file diff --git a/icons/pivotaltracker.svg b/icons/pivotaltracker.svg index 943c6fab..2a36379d 100644 --- a/icons/pivotaltracker.svg +++ b/icons/pivotaltracker.svg @@ -1 +1 @@ -Pivotal Tracker icon \ No newline at end of file +Pivotal Tracker \ No newline at end of file diff --git a/icons/piwigo.svg b/icons/piwigo.svg index 8e38c9c5..541f799d 100644 --- a/icons/piwigo.svg +++ b/icons/piwigo.svg @@ -1 +1 @@ -Piwigo icon \ No newline at end of file +Piwigo \ No newline at end of file diff --git a/icons/pixabay.svg b/icons/pixabay.svg index 1a2ff94d..5b0ca70a 100644 --- a/icons/pixabay.svg +++ b/icons/pixabay.svg @@ -1 +1 @@ -Pixabay icon +Pixabay \ No newline at end of file diff --git a/icons/pixiv.svg b/icons/pixiv.svg index 2ef7e9cb..7d18fa01 100644 --- a/icons/pixiv.svg +++ b/icons/pixiv.svg @@ -1 +1 @@ -pixiv icon \ No newline at end of file +pixiv \ No newline at end of file diff --git a/icons/pjsip.svg b/icons/pjsip.svg index 8054244c..9a847aa9 100644 --- a/icons/pjsip.svg +++ b/icons/pjsip.svg @@ -1 +1 @@ -PJSIP icon \ No newline at end of file +PJSIP \ No newline at end of file diff --git a/icons/planet.svg b/icons/planet.svg index 86f9b1ce..13f9199d 100644 --- a/icons/planet.svg +++ b/icons/planet.svg @@ -1 +1 @@ -Planet icon \ No newline at end of file +Planet \ No newline at end of file diff --git a/icons/plangrid.svg b/icons/plangrid.svg index 101936c8..5cd18368 100644 --- a/icons/plangrid.svg +++ b/icons/plangrid.svg @@ -1 +1 @@ -PlanGrid icon \ No newline at end of file +PlanGrid \ No newline at end of file diff --git a/icons/platzi.svg b/icons/platzi.svg index 5eddbd6b..6caee239 100644 --- a/icons/platzi.svg +++ b/icons/platzi.svg @@ -1 +1 @@ -Platzi icon \ No newline at end of file +Platzi \ No newline at end of file diff --git a/icons/playcanvas.svg b/icons/playcanvas.svg index 4df8d942..35348b1f 100644 --- a/icons/playcanvas.svg +++ b/icons/playcanvas.svg @@ -1 +1 @@ -PlayCanvas icon +PlayCanvas \ No newline at end of file diff --git a/icons/player-dot-me.svg b/icons/player-dot-me.svg index b809ef25..e35d2d26 100755 --- a/icons/player-dot-me.svg +++ b/icons/player-dot-me.svg @@ -1 +1 @@ -Player.me icon \ No newline at end of file +Player.me \ No newline at end of file diff --git a/icons/playerfm.svg b/icons/playerfm.svg index 361a339a..119db128 100644 --- a/icons/playerfm.svg +++ b/icons/playerfm.svg @@ -1 +1 @@ -Player FM icon \ No newline at end of file +Player FM \ No newline at end of file diff --git a/icons/playstation.svg b/icons/playstation.svg index ece14c6c..be337031 100644 --- a/icons/playstation.svg +++ b/icons/playstation.svg @@ -1 +1 @@ -PlayStation icon \ No newline at end of file +PlayStation \ No newline at end of file diff --git a/icons/playstation2.svg b/icons/playstation2.svg index 9f265209..b035cc90 100644 --- a/icons/playstation2.svg +++ b/icons/playstation2.svg @@ -1 +1 @@ -PlayStation 2 icon \ No newline at end of file +PlayStation 2 \ No newline at end of file diff --git a/icons/playstation3.svg b/icons/playstation3.svg index ae64704f..7c0f4840 100644 --- a/icons/playstation3.svg +++ b/icons/playstation3.svg @@ -1 +1 @@ -PlayStation 3 icon \ No newline at end of file +PlayStation 3 \ No newline at end of file diff --git a/icons/playstation4.svg b/icons/playstation4.svg index b57db2bb..1b49f8de 100644 --- a/icons/playstation4.svg +++ b/icons/playstation4.svg @@ -1 +1 @@ -PlayStation 4 icon \ No newline at end of file +PlayStation 4 \ No newline at end of file diff --git a/icons/playstation5.svg b/icons/playstation5.svg index 5d835e32..f759402a 100644 --- a/icons/playstation5.svg +++ b/icons/playstation5.svg @@ -1 +1 @@ -PlayStation 5 icon \ No newline at end of file +PlayStation 5 \ No newline at end of file diff --git a/icons/playstationvita.svg b/icons/playstationvita.svg index 90dc77f4..cb65a227 100644 --- a/icons/playstationvita.svg +++ b/icons/playstationvita.svg @@ -1 +1 @@ -PlayStation Vita icon \ No newline at end of file +PlayStation Vita \ No newline at end of file diff --git a/icons/pleroma.svg b/icons/pleroma.svg index c919df99..b85e10a0 100644 --- a/icons/pleroma.svg +++ b/icons/pleroma.svg @@ -1 +1 @@ -Pleroma icon \ No newline at end of file +Pleroma \ No newline at end of file diff --git a/icons/plesk.svg b/icons/plesk.svg index 88a6cbe4..cf4ef399 100644 --- a/icons/plesk.svg +++ b/icons/plesk.svg @@ -1 +1 @@ -Plesk icon \ No newline at end of file +Plesk \ No newline at end of file diff --git a/icons/plex.svg b/icons/plex.svg index d79adcfe..8e74c5e7 100644 --- a/icons/plex.svg +++ b/icons/plex.svg @@ -1 +1 @@ -Plex icon \ No newline at end of file +Plex \ No newline at end of file diff --git a/icons/plotly.svg b/icons/plotly.svg index a8414e2f..fb7eaf6e 100644 --- a/icons/plotly.svg +++ b/icons/plotly.svg @@ -1 +1 @@ -Plotly icon \ No newline at end of file +Plotly \ No newline at end of file diff --git a/icons/pluralsight.svg b/icons/pluralsight.svg index 49278652..1a19cd8a 100644 --- a/icons/pluralsight.svg +++ b/icons/pluralsight.svg @@ -1 +1 @@ -Pluralsight icon \ No newline at end of file +Pluralsight \ No newline at end of file diff --git a/icons/plurk.svg b/icons/plurk.svg index 46eabce8..e1b2905c 100644 --- a/icons/plurk.svg +++ b/icons/plurk.svg @@ -1 +1 @@ -Plurk icon \ No newline at end of file +Plurk \ No newline at end of file diff --git a/icons/pluscodes.svg b/icons/pluscodes.svg index c69f479a..cb66c915 100644 --- a/icons/pluscodes.svg +++ b/icons/pluscodes.svg @@ -1 +1 @@ -Plus Codes icon \ No newline at end of file +Plus Codes \ No newline at end of file diff --git a/icons/pm2.svg b/icons/pm2.svg index 29e0ca6d..26955309 100644 --- a/icons/pm2.svg +++ b/icons/pm2.svg @@ -1 +1 @@ -PM2 icon \ No newline at end of file +PM2 \ No newline at end of file diff --git a/icons/pnpm.svg b/icons/pnpm.svg index 66faa6e1..332a8413 100644 --- a/icons/pnpm.svg +++ b/icons/pnpm.svg @@ -1 +1 @@ -pnpm icon \ No newline at end of file +pnpm \ No newline at end of file diff --git a/icons/pocket.svg b/icons/pocket.svg index 873d0914..ce6c98d2 100644 --- a/icons/pocket.svg +++ b/icons/pocket.svg @@ -1 +1 @@ -Pocket icon \ No newline at end of file +Pocket \ No newline at end of file diff --git a/icons/pocketcasts.svg b/icons/pocketcasts.svg index e2ed016e..fb330885 100644 --- a/icons/pocketcasts.svg +++ b/icons/pocketcasts.svg @@ -1 +1 @@ -Pocket Casts icon \ No newline at end of file +Pocket Casts \ No newline at end of file diff --git a/icons/podcastaddict.svg b/icons/podcastaddict.svg index cbe729a9..d0866bb8 100644 --- a/icons/podcastaddict.svg +++ b/icons/podcastaddict.svg @@ -1 +1 @@ -Podcast Addict icon \ No newline at end of file +Podcast Addict \ No newline at end of file diff --git a/icons/podman.svg b/icons/podman.svg index 1659fe65..a921cbb9 100644 --- a/icons/podman.svg +++ b/icons/podman.svg @@ -1 +1 @@ -Podman icon \ No newline at end of file +Podman \ No newline at end of file diff --git a/icons/pointy.svg b/icons/pointy.svg index 312b1eda..2439b86f 100644 --- a/icons/pointy.svg +++ b/icons/pointy.svg @@ -1 +1 @@ -Pointy icon \ No newline at end of file +Pointy \ No newline at end of file diff --git a/icons/pokemon.svg b/icons/pokemon.svg index 60251a9d..c2849175 100644 --- a/icons/pokemon.svg +++ b/icons/pokemon.svg @@ -1 +1 @@ -Pokémon icon \ No newline at end of file +Pokémon \ No newline at end of file diff --git a/icons/poly.svg b/icons/poly.svg index 6cec1652..cecfbe48 100644 --- a/icons/poly.svg +++ b/icons/poly.svg @@ -1 +1 @@ -Poly icon \ No newline at end of file +Poly \ No newline at end of file diff --git a/icons/polymerproject.svg b/icons/polymerproject.svg index 41ddc0b0..35616a39 100644 --- a/icons/polymerproject.svg +++ b/icons/polymerproject.svg @@ -1 +1 @@ -Polymer Project icon +Polymer Project \ No newline at end of file diff --git a/icons/popos.svg b/icons/popos.svg index 7cce0023..11d31c74 100644 --- a/icons/popos.svg +++ b/icons/popos.svg @@ -1 +1 @@ -Pop!_OS icon \ No newline at end of file +Pop!_OS \ No newline at end of file diff --git a/icons/porsche.svg b/icons/porsche.svg index 2e2a822c..756c3a52 100644 --- a/icons/porsche.svg +++ b/icons/porsche.svg @@ -1 +1 @@ -Porsche icon +Porsche \ No newline at end of file diff --git a/icons/postcss.svg b/icons/postcss.svg index 736ae883..0f7a16e8 100644 --- a/icons/postcss.svg +++ b/icons/postcss.svg @@ -1 +1 @@ -PostCSS icon \ No newline at end of file +PostCSS \ No newline at end of file diff --git a/icons/postgresql.svg b/icons/postgresql.svg index 65c7f9d9..dcf75b72 100644 --- a/icons/postgresql.svg +++ b/icons/postgresql.svg @@ -1 +1 @@ -PostgreSQL icon \ No newline at end of file +PostgreSQL \ No newline at end of file diff --git a/icons/postman.svg b/icons/postman.svg index 9eb4e7f4..1a904d05 100644 --- a/icons/postman.svg +++ b/icons/postman.svg @@ -1 +1 @@ -Postman icon \ No newline at end of file +Postman \ No newline at end of file diff --git a/icons/postmates.svg b/icons/postmates.svg index 4f983941..bdae5438 100644 --- a/icons/postmates.svg +++ b/icons/postmates.svg @@ -1 +1 @@ -Postmates icon \ No newline at end of file +Postmates \ No newline at end of file diff --git a/icons/powerbi.svg b/icons/powerbi.svg index e9bb32d4..6379bf67 100644 --- a/icons/powerbi.svg +++ b/icons/powerbi.svg @@ -1 +1 @@ -Power BI icon \ No newline at end of file +Power BI \ No newline at end of file diff --git a/icons/powers.svg b/icons/powers.svg index baf25520..e0e44d01 100644 --- a/icons/powers.svg +++ b/icons/powers.svg @@ -1 +1 @@ -POWERS icon \ No newline at end of file +POWERS \ No newline at end of file diff --git a/icons/powershell.svg b/icons/powershell.svg index 66e8af22..d3fc1d24 100644 --- a/icons/powershell.svg +++ b/icons/powershell.svg @@ -1 +1 @@ -PowerShell icon \ No newline at end of file +PowerShell \ No newline at end of file diff --git a/icons/pr-dot-co.svg b/icons/pr-dot-co.svg index 4f5723a1..3a2277c3 100644 --- a/icons/pr-dot-co.svg +++ b/icons/pr-dot-co.svg @@ -1 +1 @@ -pr.co icon \ No newline at end of file +pr.co \ No newline at end of file diff --git a/icons/pre-commit.svg b/icons/pre-commit.svg index 94ac917c..8211f47d 100644 --- a/icons/pre-commit.svg +++ b/icons/pre-commit.svg @@ -1 +1 @@ -pre-commit icon \ No newline at end of file +pre-commit \ No newline at end of file diff --git a/icons/premierleague.svg b/icons/premierleague.svg index 0675428e..6da7aa8a 100644 --- a/icons/premierleague.svg +++ b/icons/premierleague.svg @@ -1 +1 @@ -Premier League icon \ No newline at end of file +Premier League \ No newline at end of file diff --git a/icons/prestashop.svg b/icons/prestashop.svg index 14e56341..57649adf 100644 --- a/icons/prestashop.svg +++ b/icons/prestashop.svg @@ -1 +1 @@ -PrestaShop icon \ No newline at end of file +PrestaShop \ No newline at end of file diff --git a/icons/presto.svg b/icons/presto.svg index 07e681e9..82629236 100644 --- a/icons/presto.svg +++ b/icons/presto.svg @@ -1 +1 @@ -Presto icon \ No newline at end of file +Presto \ No newline at end of file diff --git a/icons/prettier.svg b/icons/prettier.svg index 018b3859..5f0950a9 100644 --- a/icons/prettier.svg +++ b/icons/prettier.svg @@ -1 +1 @@ -Prettier icon \ No newline at end of file +Prettier \ No newline at end of file diff --git a/icons/prezi.svg b/icons/prezi.svg index 701ce45a..5c38bd11 100644 --- a/icons/prezi.svg +++ b/icons/prezi.svg @@ -1 +1 @@ -Prezi icon \ No newline at end of file +Prezi \ No newline at end of file diff --git a/icons/prime.svg b/icons/prime.svg index 2b4f4165..a6c3f780 100644 --- a/icons/prime.svg +++ b/icons/prime.svg @@ -1 +1 @@ -Prime icon \ No newline at end of file +Prime \ No newline at end of file diff --git a/icons/primevideo.svg b/icons/primevideo.svg index 31b68385..3dffd474 100644 --- a/icons/primevideo.svg +++ b/icons/primevideo.svg @@ -1 +1 @@ -Prime Video icon \ No newline at end of file +Prime Video \ No newline at end of file diff --git a/icons/prisma.svg b/icons/prisma.svg index 98dd30a8..3d7bdc70 100644 --- a/icons/prisma.svg +++ b/icons/prisma.svg @@ -1 +1 @@ -Prisma icon \ No newline at end of file +Prisma \ No newline at end of file diff --git a/icons/prismic.svg b/icons/prismic.svg index 23039b85..b2a8860b 100644 --- a/icons/prismic.svg +++ b/icons/prismic.svg @@ -1 +1 @@ -Prismic icon \ No newline at end of file +Prismic \ No newline at end of file diff --git a/icons/privateinternetaccess.svg b/icons/privateinternetaccess.svg index 3b19149e..ec39c269 100644 --- a/icons/privateinternetaccess.svg +++ b/icons/privateinternetaccess.svg @@ -1 +1 @@ -Private Internet Access icon \ No newline at end of file +Private Internet Access \ No newline at end of file diff --git a/icons/probot.svg b/icons/probot.svg index 44bd341c..cc1c9947 100644 --- a/icons/probot.svg +++ b/icons/probot.svg @@ -1 +1 @@ -Probot icon \ No newline at end of file +Probot \ No newline at end of file diff --git a/icons/processingfoundation.svg b/icons/processingfoundation.svg index 6c15d542..f86b00f8 100644 --- a/icons/processingfoundation.svg +++ b/icons/processingfoundation.svg @@ -1 +1 @@ -Processing Foundation icon +Processing Foundation \ No newline at end of file diff --git a/icons/processwire.svg b/icons/processwire.svg index a99b2924..87f97b16 100644 --- a/icons/processwire.svg +++ b/icons/processwire.svg @@ -1 +1 @@ -ProcessWire icon \ No newline at end of file +ProcessWire \ No newline at end of file diff --git a/icons/producthunt.svg b/icons/producthunt.svg index 117c904c..64b8cc4e 100644 --- a/icons/producthunt.svg +++ b/icons/producthunt.svg @@ -1 +1 @@ -Product Hunt icon \ No newline at end of file +Product Hunt \ No newline at end of file diff --git a/icons/progate.svg b/icons/progate.svg index 27368289..5e1dcb01 100644 --- a/icons/progate.svg +++ b/icons/progate.svg @@ -1 +1 @@ -Progate icon +Progate \ No newline at end of file diff --git a/icons/progress.svg b/icons/progress.svg index 3b4a15dd..628cfd90 100644 --- a/icons/progress.svg +++ b/icons/progress.svg @@ -1 +1 @@ -Progress icon \ No newline at end of file +Progress \ No newline at end of file diff --git a/icons/prometheus.svg b/icons/prometheus.svg index c24e16a7..32a30255 100644 --- a/icons/prometheus.svg +++ b/icons/prometheus.svg @@ -1 +1 @@ -Prometheus icon \ No newline at end of file +Prometheus \ No newline at end of file diff --git a/icons/prosieben.svg b/icons/prosieben.svg index c789f33a..1845a7c4 100644 --- a/icons/prosieben.svg +++ b/icons/prosieben.svg @@ -1 +1 @@ -ProSieben icon \ No newline at end of file +ProSieben \ No newline at end of file diff --git a/icons/proto-dot-io.svg b/icons/proto-dot-io.svg index 93b9e014..2cc1ef55 100644 --- a/icons/proto-dot-io.svg +++ b/icons/proto-dot-io.svg @@ -1 +1 @@ -Proto.io icon \ No newline at end of file +Proto.io \ No newline at end of file diff --git a/icons/protocols-dot-io.svg b/icons/protocols-dot-io.svg index c36c39a5..7b183674 100644 --- a/icons/protocols-dot-io.svg +++ b/icons/protocols-dot-io.svg @@ -1 +1 @@ -protocols.io icon \ No newline at end of file +protocols.io \ No newline at end of file diff --git a/icons/protondb.svg b/icons/protondb.svg index 7583e13b..74f0579e 100644 --- a/icons/protondb.svg +++ b/icons/protondb.svg @@ -1 +1 @@ -ProtonDB icon \ No newline at end of file +ProtonDB \ No newline at end of file diff --git a/icons/protonmail.svg b/icons/protonmail.svg index 81933881..6df8b104 100644 --- a/icons/protonmail.svg +++ b/icons/protonmail.svg @@ -1 +1 @@ -ProtonMail icon \ No newline at end of file +ProtonMail \ No newline at end of file diff --git a/icons/protonvpn.svg b/icons/protonvpn.svg index 2dada0b5..e257b015 100644 --- a/icons/protonvpn.svg +++ b/icons/protonvpn.svg @@ -1 +1 @@ -ProtonVPN icon \ No newline at end of file +ProtonVPN \ No newline at end of file diff --git a/icons/protools.svg b/icons/protools.svg index b81e7af8..19e36874 100644 --- a/icons/protools.svg +++ b/icons/protools.svg @@ -1 +1 @@ -Pro Tools icon \ No newline at end of file +Pro Tools \ No newline at end of file diff --git a/icons/proxmox.svg b/icons/proxmox.svg index 2e75aed1..395ffb8f 100644 --- a/icons/proxmox.svg +++ b/icons/proxmox.svg @@ -1 +1 @@ -Proxmox icon \ No newline at end of file +Proxmox \ No newline at end of file diff --git a/icons/publons.svg b/icons/publons.svg index 90e9ef6e..4d950e3a 100644 --- a/icons/publons.svg +++ b/icons/publons.svg @@ -1 +1 @@ -Publons icon \ No newline at end of file +Publons \ No newline at end of file diff --git a/icons/pubmed.svg b/icons/pubmed.svg index 7e745359..54c1295a 100644 --- a/icons/pubmed.svg +++ b/icons/pubmed.svg @@ -1 +1 @@ -PubMed icon +PubMed \ No newline at end of file diff --git a/icons/pug.svg b/icons/pug.svg index 2de31f94..3e041c52 100644 --- a/icons/pug.svg +++ b/icons/pug.svg @@ -1 +1 @@ -Pug icon \ No newline at end of file +Pug \ No newline at end of file diff --git a/icons/puppet.svg b/icons/puppet.svg index 2e9c8164..da6a1415 100644 --- a/icons/puppet.svg +++ b/icons/puppet.svg @@ -1 +1 @@ -Puppet icon +Puppet \ No newline at end of file diff --git a/icons/puppeteer.svg b/icons/puppeteer.svg index b21f6356..02b1f6cb 100644 --- a/icons/puppeteer.svg +++ b/icons/puppeteer.svg @@ -1 +1 @@ -Puppeteer icon \ No newline at end of file +Puppeteer \ No newline at end of file diff --git a/icons/purescript.svg b/icons/purescript.svg index c6a7b090..b398ab69 100644 --- a/icons/purescript.svg +++ b/icons/purescript.svg @@ -1 +1 @@ -PureScript icon \ No newline at end of file +PureScript \ No newline at end of file diff --git a/icons/purgecss.svg b/icons/purgecss.svg index d23140b4..e3cabb05 100644 --- a/icons/purgecss.svg +++ b/icons/purgecss.svg @@ -1 +1 @@ -PurgeCSS icon \ No newline at end of file +PurgeCSS \ No newline at end of file diff --git a/icons/purism.svg b/icons/purism.svg index 6d1d26c3..4ba59595 100644 --- a/icons/purism.svg +++ b/icons/purism.svg @@ -1 +1 @@ -Purism icon \ No newline at end of file +Purism \ No newline at end of file diff --git a/icons/pusher.svg b/icons/pusher.svg index 004c2ea1..2c432a85 100644 --- a/icons/pusher.svg +++ b/icons/pusher.svg @@ -1 +1 @@ -Pusher icon \ No newline at end of file +Pusher \ No newline at end of file diff --git a/icons/pycharm.svg b/icons/pycharm.svg index 124575d6..ff564712 100644 --- a/icons/pycharm.svg +++ b/icons/pycharm.svg @@ -1 +1 @@ -PyCharm icon \ No newline at end of file +PyCharm \ No newline at end of file diff --git a/icons/pypi.svg b/icons/pypi.svg index e519fa5d..3efd4b12 100644 --- a/icons/pypi.svg +++ b/icons/pypi.svg @@ -1 +1 @@ -PyPI icon \ No newline at end of file +PyPI \ No newline at end of file diff --git a/icons/pypy.svg b/icons/pypy.svg index 6e788af5..c7747e73 100644 --- a/icons/pypy.svg +++ b/icons/pypy.svg @@ -1 +1 @@ -PyPy icon \ No newline at end of file +PyPy \ No newline at end of file diff --git a/icons/python.svg b/icons/python.svg index e92bec2c..30587d81 100644 --- a/icons/python.svg +++ b/icons/python.svg @@ -1 +1 @@ -Python icon \ No newline at end of file +Python \ No newline at end of file diff --git a/icons/pytorch.svg b/icons/pytorch.svg index 49e4f4a1..180e006b 100644 --- a/icons/pytorch.svg +++ b/icons/pytorch.svg @@ -1 +1 @@ -PyTorch icon \ No newline at end of file +PyTorch \ No newline at end of file diff --git a/icons/pytorchlightning.svg b/icons/pytorchlightning.svg index b2df22ac..9c0f2a23 100644 --- a/icons/pytorchlightning.svg +++ b/icons/pytorchlightning.svg @@ -1 +1 @@ -PyTorch Lightning icon \ No newline at end of file +PyTorch Lightning \ No newline at end of file diff --git a/icons/pyup.svg b/icons/pyup.svg index f9d87a12..fa155d56 100644 --- a/icons/pyup.svg +++ b/icons/pyup.svg @@ -1 +1 @@ -PyUp icon \ No newline at end of file +PyUp \ No newline at end of file diff --git a/icons/qantas.svg b/icons/qantas.svg index a7a5db3b..deab9248 100644 --- a/icons/qantas.svg +++ b/icons/qantas.svg @@ -1 +1 @@ -Qantas icon \ No newline at end of file +Qantas \ No newline at end of file diff --git a/icons/qatarairways.svg b/icons/qatarairways.svg index 4009cfb9..dd216f23 100644 --- a/icons/qatarairways.svg +++ b/icons/qatarairways.svg @@ -1 +1 @@ -Qatar Airways icon \ No newline at end of file +Qatar Airways \ No newline at end of file diff --git a/icons/qemu.svg b/icons/qemu.svg index 14e6c87d..dc522ea9 100644 --- a/icons/qemu.svg +++ b/icons/qemu.svg @@ -1 +1 @@ -QEMU icon \ No newline at end of file +QEMU \ No newline at end of file diff --git a/icons/qgis.svg b/icons/qgis.svg index 2626b490..9ccbb240 100644 --- a/icons/qgis.svg +++ b/icons/qgis.svg @@ -1 +1 @@ -Qgis icon \ No newline at end of file +Qgis \ No newline at end of file diff --git a/icons/qi.svg b/icons/qi.svg index 5fff86fa..10aff80e 100644 --- a/icons/qi.svg +++ b/icons/qi.svg @@ -1 +1 @@ -Qi icon \ No newline at end of file +Qi \ No newline at end of file diff --git a/icons/qiita.svg b/icons/qiita.svg index 86939e0c..11746220 100644 --- a/icons/qiita.svg +++ b/icons/qiita.svg @@ -1 +1 @@ -Qiita icon \ No newline at end of file +Qiita \ No newline at end of file diff --git a/icons/qiskit.svg b/icons/qiskit.svg index 2f473fed..941ea987 100644 --- a/icons/qiskit.svg +++ b/icons/qiskit.svg @@ -1 +1 @@ -Qiskit icon \ No newline at end of file +Qiskit \ No newline at end of file diff --git a/icons/qiwi.svg b/icons/qiwi.svg index 36463c49..7486665b 100644 --- a/icons/qiwi.svg +++ b/icons/qiwi.svg @@ -1 +1 @@ -QIWI icon \ No newline at end of file +QIWI \ No newline at end of file diff --git a/icons/qt.svg b/icons/qt.svg index 4c38e605..54955b8b 100644 --- a/icons/qt.svg +++ b/icons/qt.svg @@ -1 +1 @@ -Qt icon \ No newline at end of file +Qt \ No newline at end of file diff --git a/icons/qualcomm.svg b/icons/qualcomm.svg index 7bb36d01..0d1bc463 100644 --- a/icons/qualcomm.svg +++ b/icons/qualcomm.svg @@ -1 +1 @@ -Qualcomm icon \ No newline at end of file +Qualcomm \ No newline at end of file diff --git a/icons/qualtrics.svg b/icons/qualtrics.svg index 59223e12..3271e44d 100644 --- a/icons/qualtrics.svg +++ b/icons/qualtrics.svg @@ -1 +1 @@ -Qualtrics icon \ No newline at end of file +Qualtrics \ No newline at end of file diff --git a/icons/quantcast.svg b/icons/quantcast.svg index 799f2a2d..c15802ef 100644 --- a/icons/quantcast.svg +++ b/icons/quantcast.svg @@ -1 +1 @@ -Quantcast icon \ No newline at end of file +Quantcast \ No newline at end of file diff --git a/icons/quantconnect.svg b/icons/quantconnect.svg index 55b32a1b..d2cf4810 100644 --- a/icons/quantconnect.svg +++ b/icons/quantconnect.svg @@ -1 +1 @@ -QuantConnect icon \ No newline at end of file +QuantConnect \ No newline at end of file diff --git a/icons/quarkus.svg b/icons/quarkus.svg index d676783c..44075de8 100644 --- a/icons/quarkus.svg +++ b/icons/quarkus.svg @@ -1 +1 @@ -Quarkus icon \ No newline at end of file +Quarkus \ No newline at end of file diff --git a/icons/quasar.svg b/icons/quasar.svg index 0856898a..fad04693 100644 --- a/icons/quasar.svg +++ b/icons/quasar.svg @@ -1 +1 @@ -Quasar icon \ No newline at end of file +Quasar \ No newline at end of file diff --git a/icons/qubesos.svg b/icons/qubesos.svg index 491fb1b9..d7031d07 100644 --- a/icons/qubesos.svg +++ b/icons/qubesos.svg @@ -1 +1 @@ -Qubes OS icon +Qubes OS \ No newline at end of file diff --git a/icons/quest.svg b/icons/quest.svg index 63bb8fa7..e53a51bc 100644 --- a/icons/quest.svg +++ b/icons/quest.svg @@ -1 +1 @@ -Quest icon \ No newline at end of file +Quest \ No newline at end of file diff --git a/icons/quickbooks.svg b/icons/quickbooks.svg index 7dc3f277..60c33be3 100644 --- a/icons/quickbooks.svg +++ b/icons/quickbooks.svg @@ -1 +1 @@ -QuickBooks icon \ No newline at end of file +QuickBooks \ No newline at end of file diff --git a/icons/quicktime.svg b/icons/quicktime.svg index 47736be0..e5413243 100644 --- a/icons/quicktime.svg +++ b/icons/quicktime.svg @@ -1 +1 @@ -QuickTime icon \ No newline at end of file +QuickTime \ No newline at end of file diff --git a/icons/quip.svg b/icons/quip.svg index 5838c08a..cde1773b 100644 --- a/icons/quip.svg +++ b/icons/quip.svg @@ -1 +1 @@ -Quip icon +Quip \ No newline at end of file diff --git a/icons/quora.svg b/icons/quora.svg index ea177650..9d49e3a6 100644 --- a/icons/quora.svg +++ b/icons/quora.svg @@ -1 +1 @@ -Quora icon \ No newline at end of file +Quora \ No newline at end of file diff --git a/icons/qwiklabs.svg b/icons/qwiklabs.svg index a4b23998..0e6f33d0 100644 --- a/icons/qwiklabs.svg +++ b/icons/qwiklabs.svg @@ -1 +1 @@ -Qwiklabs icon \ No newline at end of file +Qwiklabs \ No newline at end of file diff --git a/icons/qzone.svg b/icons/qzone.svg index bb040095..041bbd85 100644 --- a/icons/qzone.svg +++ b/icons/qzone.svg @@ -1 +1 @@ -Qzone icon \ No newline at end of file +Qzone \ No newline at end of file diff --git a/icons/r.svg b/icons/r.svg index 8bf769da..39c03e1b 100644 --- a/icons/r.svg +++ b/icons/r.svg @@ -1 +1 @@ -R icon \ No newline at end of file +R \ No newline at end of file diff --git a/icons/r3.svg b/icons/r3.svg index 91737ec1..14285b14 100644 --- a/icons/r3.svg +++ b/icons/r3.svg @@ -1 +1 @@ -R3 icon \ No newline at end of file +R3 \ No newline at end of file diff --git a/icons/rabbitmq.svg b/icons/rabbitmq.svg index cdb4f92f..27285b73 100644 --- a/icons/rabbitmq.svg +++ b/icons/rabbitmq.svg @@ -1 +1 @@ -RabbitMQ icon \ No newline at end of file +RabbitMQ \ No newline at end of file diff --git a/icons/racket.svg b/icons/racket.svg index 972bf98d..1abfec7b 100644 --- a/icons/racket.svg +++ b/icons/racket.svg @@ -1 +1 @@ -Racket icon \ No newline at end of file +Racket \ No newline at end of file diff --git a/icons/radar.svg b/icons/radar.svg index 312fb963..c59eb6d1 100644 --- a/icons/radar.svg +++ b/icons/radar.svg @@ -1 +1 @@ -Radar icon \ No newline at end of file +Radar \ No newline at end of file diff --git a/icons/radiopublic.svg b/icons/radiopublic.svg index 5d108898..67245f9a 100644 --- a/icons/radiopublic.svg +++ b/icons/radiopublic.svg @@ -1 +1 @@ -RadioPublic icon \ No newline at end of file +RadioPublic \ No newline at end of file diff --git a/icons/rainmeter.svg b/icons/rainmeter.svg index af793bd5..d4b9607b 100644 --- a/icons/rainmeter.svg +++ b/icons/rainmeter.svg @@ -1 +1 @@ -Rainmeter icon \ No newline at end of file +Rainmeter \ No newline at end of file diff --git a/icons/rakuten.svg b/icons/rakuten.svg index bab34b87..1726fd66 100644 --- a/icons/rakuten.svg +++ b/icons/rakuten.svg @@ -1 +1 @@ -Rakuten icon \ No newline at end of file +Rakuten \ No newline at end of file diff --git a/icons/ram.svg b/icons/ram.svg index d17711a0..aa6775d9 100644 --- a/icons/ram.svg +++ b/icons/ram.svg @@ -1 +1 @@ -Ram icon \ No newline at end of file +Ram \ No newline at end of file diff --git a/icons/rancher.svg b/icons/rancher.svg index addde9c6..09244b51 100644 --- a/icons/rancher.svg +++ b/icons/rancher.svg @@ -1 +1 @@ -Rancher icon \ No newline at end of file +Rancher \ No newline at end of file diff --git a/icons/raspberrypi.svg b/icons/raspberrypi.svg index d003d694..1325a023 100644 --- a/icons/raspberrypi.svg +++ b/icons/raspberrypi.svg @@ -1 +1 @@ -Raspberry Pi icon \ No newline at end of file +Raspberry Pi \ No newline at end of file diff --git a/icons/razer.svg b/icons/razer.svg index 351f213e..c42de46e 100644 --- a/icons/razer.svg +++ b/icons/razer.svg @@ -1 +1 @@ -Razer icon +Razer \ No newline at end of file diff --git a/icons/react.svg b/icons/react.svg index 2f7ddc39..60069956 100644 --- a/icons/react.svg +++ b/icons/react.svg @@ -1 +1 @@ -React icon \ No newline at end of file +React \ No newline at end of file diff --git a/icons/reactivex.svg b/icons/reactivex.svg index ceba9ba3..f9232b19 100644 --- a/icons/reactivex.svg +++ b/icons/reactivex.svg @@ -1 +1 @@ -ReactiveX icon \ No newline at end of file +ReactiveX \ No newline at end of file diff --git a/icons/reactos.svg b/icons/reactos.svg index f2bdc5b5..d58738ed 100644 --- a/icons/reactos.svg +++ b/icons/reactos.svg @@ -1 +1 @@ -ReactOS icon \ No newline at end of file +ReactOS \ No newline at end of file diff --git a/icons/reactrouter.svg b/icons/reactrouter.svg index 7f232752..b855c637 100644 --- a/icons/reactrouter.svg +++ b/icons/reactrouter.svg @@ -1 +1 @@ -React Router icon \ No newline at end of file +React Router \ No newline at end of file diff --git a/icons/readthedocs.svg b/icons/readthedocs.svg index 5e65e8dc..fdf47940 100644 --- a/icons/readthedocs.svg +++ b/icons/readthedocs.svg @@ -1 +1 @@ -Read the Docs icon \ No newline at end of file +Read the Docs \ No newline at end of file diff --git a/icons/realm.svg b/icons/realm.svg index 74dc3b33..88181570 100644 --- a/icons/realm.svg +++ b/icons/realm.svg @@ -1 +1 @@ -Realm icon \ No newline at end of file +Realm \ No newline at end of file diff --git a/icons/reason.svg b/icons/reason.svg index 98397844..fe9f5d43 100644 --- a/icons/reason.svg +++ b/icons/reason.svg @@ -1 +1 @@ -Reason icon \ No newline at end of file +Reason \ No newline at end of file diff --git a/icons/reasonstudios.svg b/icons/reasonstudios.svg index bbe89462..d70937a8 100644 --- a/icons/reasonstudios.svg +++ b/icons/reasonstudios.svg @@ -1 +1 @@ -Reason Studios icon \ No newline at end of file +Reason Studios \ No newline at end of file diff --git a/icons/redbubble.svg b/icons/redbubble.svg index 12a1ff55..d710e2ea 100644 --- a/icons/redbubble.svg +++ b/icons/redbubble.svg @@ -1 +1 @@ -Redbubble icon \ No newline at end of file +Redbubble \ No newline at end of file diff --git a/icons/reddit.svg b/icons/reddit.svg index 01ed4a29..7e4ddd18 100644 --- a/icons/reddit.svg +++ b/icons/reddit.svg @@ -1 +1 @@ -Reddit icon +Reddit \ No newline at end of file diff --git a/icons/redhat.svg b/icons/redhat.svg index 55db6c64..e9a23ca7 100644 --- a/icons/redhat.svg +++ b/icons/redhat.svg @@ -1 +1 @@ -Red Hat icon \ No newline at end of file +Red Hat \ No newline at end of file diff --git a/icons/redhatopenshift.svg b/icons/redhatopenshift.svg index e08716e2..7cb67eff 100644 --- a/icons/redhatopenshift.svg +++ b/icons/redhatopenshift.svg @@ -1 +1 @@ -Red Hat Open Shift icon \ No newline at end of file +Red Hat Open Shift \ No newline at end of file diff --git a/icons/redis.svg b/icons/redis.svg index 7376520c..e3ab9d25 100644 --- a/icons/redis.svg +++ b/icons/redis.svg @@ -1 +1 @@ -Redis icon +Redis \ No newline at end of file diff --git a/icons/redux-saga.svg b/icons/redux-saga.svg index e52e885c..2fdf8973 100644 --- a/icons/redux-saga.svg +++ b/icons/redux-saga.svg @@ -1 +1 @@ -Redux-Saga icon \ No newline at end of file +Redux-Saga \ No newline at end of file diff --git a/icons/redux.svg b/icons/redux.svg index d31470fd..f0873b4d 100644 --- a/icons/redux.svg +++ b/icons/redux.svg @@ -1 +1 @@ -Redux icon \ No newline at end of file +Redux \ No newline at end of file diff --git a/icons/redwoodjs.svg b/icons/redwoodjs.svg index 8884cc9d..2f0800b7 100644 --- a/icons/redwoodjs.svg +++ b/icons/redwoodjs.svg @@ -1 +1 @@ -RedwoodJS icon \ No newline at end of file +RedwoodJS \ No newline at end of file diff --git a/icons/relianceindustrieslimited.svg b/icons/relianceindustrieslimited.svg index cf923a7f..3b471a74 100644 --- a/icons/relianceindustrieslimited.svg +++ b/icons/relianceindustrieslimited.svg @@ -1 +1 @@ -Reliance Industries Limited icon \ No newline at end of file +Reliance Industries Limited \ No newline at end of file diff --git a/icons/renault.svg b/icons/renault.svg index e6734937..8869c92d 100644 --- a/icons/renault.svg +++ b/icons/renault.svg @@ -1 +1 @@ -Renault icon \ No newline at end of file +Renault \ No newline at end of file diff --git a/icons/renovatebot.svg b/icons/renovatebot.svg index b181c1a9..2a15653f 100644 --- a/icons/renovatebot.svg +++ b/icons/renovatebot.svg @@ -1 +1 @@ -RenovateBot icon +RenovateBot \ No newline at end of file diff --git a/icons/renpy.svg b/icons/renpy.svg index 0b13a591..241a2683 100644 --- a/icons/renpy.svg +++ b/icons/renpy.svg @@ -1 +1 @@ -Ren'Py icon \ No newline at end of file +Ren'Py \ No newline at end of file diff --git a/icons/renren.svg b/icons/renren.svg index 49a41c46..4f18ad46 100644 --- a/icons/renren.svg +++ b/icons/renren.svg @@ -1 +1 @@ -Renren icon \ No newline at end of file +Renren \ No newline at end of file diff --git a/icons/replit.svg b/icons/replit.svg index da15aea6..6baba8e4 100644 --- a/icons/replit.svg +++ b/icons/replit.svg @@ -1 +1 @@ -Replit icon \ No newline at end of file +Replit \ No newline at end of file diff --git a/icons/researchgate.svg b/icons/researchgate.svg index 97937d11..95500172 100644 --- a/icons/researchgate.svg +++ b/icons/researchgate.svg @@ -1 +1 @@ -ResearchGate icon +ResearchGate \ No newline at end of file diff --git a/icons/resurrectionremixos.svg b/icons/resurrectionremixos.svg index 52ab3dc2..9b3fac59 100644 --- a/icons/resurrectionremixos.svg +++ b/icons/resurrectionremixos.svg @@ -1 +1 @@ -Resurrection Remix OS icon \ No newline at end of file +Resurrection Remix OS \ No newline at end of file diff --git a/icons/retroarch.svg b/icons/retroarch.svg index 3b7c7315..9c35a820 100644 --- a/icons/retroarch.svg +++ b/icons/retroarch.svg @@ -1 +1 @@ -RetroArch icon \ No newline at end of file +RetroArch \ No newline at end of file diff --git a/icons/retropie.svg b/icons/retropie.svg index 4c4f1fd4..d2296a43 100644 --- a/icons/retropie.svg +++ b/icons/retropie.svg @@ -1 +1 @@ -RetroPie icon \ No newline at end of file +RetroPie \ No newline at end of file diff --git a/icons/reveal-dot-js.svg b/icons/reveal-dot-js.svg index 22b0eaa2..fe15d4e0 100644 --- a/icons/reveal-dot-js.svg +++ b/icons/reveal-dot-js.svg @@ -1 +1 @@ -reveal.js icon \ No newline at end of file +reveal.js \ No newline at end of file diff --git a/icons/reverbnation.svg b/icons/reverbnation.svg index cf18148c..605e5f6b 100644 --- a/icons/reverbnation.svg +++ b/icons/reverbnation.svg @@ -1 +1 @@ -ReverbNation icon \ No newline at end of file +ReverbNation \ No newline at end of file diff --git a/icons/revolut.svg b/icons/revolut.svg index 791ef8ba..6210fe17 100644 --- a/icons/revolut.svg +++ b/icons/revolut.svg @@ -1 +1 @@ -Revolut icon \ No newline at end of file +Revolut \ No newline at end of file diff --git a/icons/revue.svg b/icons/revue.svg index f707e4a3..b13555ca 100644 --- a/icons/revue.svg +++ b/icons/revue.svg @@ -1 +1 @@ -Revue icon \ No newline at end of file +Revue \ No newline at end of file diff --git a/icons/rewe.svg b/icons/rewe.svg index 01b2603b..0fa5563c 100644 --- a/icons/rewe.svg +++ b/icons/rewe.svg @@ -1 +1 @@ -REWE icon \ No newline at end of file +REWE \ No newline at end of file diff --git a/icons/rezgo.svg b/icons/rezgo.svg index 951e135b..edeb29fd 100644 --- a/icons/rezgo.svg +++ b/icons/rezgo.svg @@ -1 +1 @@ -Rezgo icon \ No newline at end of file +Rezgo \ No newline at end of file diff --git a/icons/rhinoceros.svg b/icons/rhinoceros.svg index a7ead921..687a1824 100644 --- a/icons/rhinoceros.svg +++ b/icons/rhinoceros.svg @@ -1 +1 @@ -Rhinoceros icon \ No newline at end of file +Rhinoceros \ No newline at end of file diff --git a/icons/rider.svg b/icons/rider.svg index 2a166be9..c1c1a5af 100644 --- a/icons/rider.svg +++ b/icons/rider.svg @@ -1 +1 @@ -Rider icon \ No newline at end of file +Rider \ No newline at end of file diff --git a/icons/ring.svg b/icons/ring.svg index 6b5ededc..830cbc11 100644 --- a/icons/ring.svg +++ b/icons/ring.svg @@ -1 +1 @@ -Ring icon \ No newline at end of file +Ring \ No newline at end of file diff --git a/icons/riotgames.svg b/icons/riotgames.svg index dedfe333..fd936c06 100644 --- a/icons/riotgames.svg +++ b/icons/riotgames.svg @@ -1 +1 @@ -Riot Games icon \ No newline at end of file +Riot Games \ No newline at end of file diff --git a/icons/ripple.svg b/icons/ripple.svg index ecb6fc86..cd5d2168 100644 --- a/icons/ripple.svg +++ b/icons/ripple.svg @@ -1 +1 @@ -Ripple icon \ No newline at end of file +Ripple \ No newline at end of file diff --git a/icons/riseup.svg b/icons/riseup.svg index 917225f5..fe3f6222 100644 --- a/icons/riseup.svg +++ b/icons/riseup.svg @@ -1 +1 @@ -Riseup icon \ No newline at end of file +Riseup \ No newline at end of file diff --git a/icons/roamresearch.svg b/icons/roamresearch.svg index c1c77df9..8f5ddd29 100644 --- a/icons/roamresearch.svg +++ b/icons/roamresearch.svg @@ -1 +1 @@ -Roam Research icon \ No newline at end of file +Roam Research \ No newline at end of file diff --git a/icons/roblox.svg b/icons/roblox.svg index 3c603865..0a51a5c6 100644 --- a/icons/roblox.svg +++ b/icons/roblox.svg @@ -1 +1 @@ -Roblox icon \ No newline at end of file +Roblox \ No newline at end of file diff --git a/icons/robotframework.svg b/icons/robotframework.svg index 21abe5ee..38aed76b 100644 --- a/icons/robotframework.svg +++ b/icons/robotframework.svg @@ -1 +1 @@ -Robot Framework icon \ No newline at end of file +Robot Framework \ No newline at end of file diff --git a/icons/rocket-dot-chat.svg b/icons/rocket-dot-chat.svg index a6dcc5c9..514e28c6 100644 --- a/icons/rocket-dot-chat.svg +++ b/icons/rocket-dot-chat.svg @@ -1 +1 @@ -Rocket.Chat icon \ No newline at end of file +Rocket.Chat \ No newline at end of file diff --git a/icons/roku.svg b/icons/roku.svg index 8f22631b..17dde5e3 100644 --- a/icons/roku.svg +++ b/icons/roku.svg @@ -1 +1 @@ -Roku icon \ No newline at end of file +Roku \ No newline at end of file diff --git a/icons/rolls-royce.svg b/icons/rolls-royce.svg index 784e1020..61d098d8 100644 --- a/icons/rolls-royce.svg +++ b/icons/rolls-royce.svg @@ -1 +1 @@ -Rolls-Royce icon \ No newline at end of file +Rolls-Royce \ No newline at end of file diff --git a/icons/rollup-dot-js.svg b/icons/rollup-dot-js.svg index d01a7d47..c974ed80 100644 --- a/icons/rollup-dot-js.svg +++ b/icons/rollup-dot-js.svg @@ -1 +1 @@ -rollup.js icon \ No newline at end of file +rollup.js \ No newline at end of file diff --git a/icons/roots.svg b/icons/roots.svg index 3aea3419..ab365f66 100644 --- a/icons/roots.svg +++ b/icons/roots.svg @@ -1 +1 @@ -Roots icon \ No newline at end of file +Roots \ No newline at end of file diff --git a/icons/rootsbedrock.svg b/icons/rootsbedrock.svg index d3a96baa..bee0e74a 100644 --- a/icons/rootsbedrock.svg +++ b/icons/rootsbedrock.svg @@ -1 +1 @@ -Roots Bedrock icon +Roots Bedrock \ No newline at end of file diff --git a/icons/rootssage.svg b/icons/rootssage.svg index 20548a30..ff562a3c 100644 --- a/icons/rootssage.svg +++ b/icons/rootssage.svg @@ -1 +1 @@ -Roots Sage icon +Roots Sage \ No newline at end of file diff --git a/icons/ros.svg b/icons/ros.svg index 5d0b618a..49108a9b 100644 --- a/icons/ros.svg +++ b/icons/ros.svg @@ -1 +1 @@ -ROS icon +ROS \ No newline at end of file diff --git a/icons/rottentomatoes.svg b/icons/rottentomatoes.svg index a4566101..b185734e 100644 --- a/icons/rottentomatoes.svg +++ b/icons/rottentomatoes.svg @@ -1 +1 @@ -Rotten Tomatoes icon \ No newline at end of file +Rotten Tomatoes \ No newline at end of file diff --git a/icons/roundcube.svg b/icons/roundcube.svg index 7ab65be3..f45cb734 100644 --- a/icons/roundcube.svg +++ b/icons/roundcube.svg @@ -1 +1 @@ -Roundcube icon \ No newline at end of file +Roundcube \ No newline at end of file diff --git a/icons/rss.svg b/icons/rss.svg index 1428e1a1..14a6f3f7 100644 --- a/icons/rss.svg +++ b/icons/rss.svg @@ -1 +1 @@ -RSS icon \ No newline at end of file +RSS \ No newline at end of file diff --git a/icons/rstudio.svg b/icons/rstudio.svg index 635acf74..d921d2f2 100644 --- a/icons/rstudio.svg +++ b/icons/rstudio.svg @@ -1 +1 @@ -RStudio icon \ No newline at end of file +RStudio \ No newline at end of file diff --git a/icons/rte.svg b/icons/rte.svg index 9c1b6ab2..1eb1922e 100644 --- a/icons/rte.svg +++ b/icons/rte.svg @@ -1 +1 @@ -RTÉ icon \ No newline at end of file +RTÉ \ No newline at end of file diff --git a/icons/rtl.svg b/icons/rtl.svg index 1abd2e27..1bbec742 100644 --- a/icons/rtl.svg +++ b/icons/rtl.svg @@ -1 +1 @@ -RTL icon \ No newline at end of file +RTL \ No newline at end of file diff --git a/icons/rtlzwei.svg b/icons/rtlzwei.svg index 4b6480a8..ed5cbc34 100644 --- a/icons/rtlzwei.svg +++ b/icons/rtlzwei.svg @@ -1 +1 @@ -RTLZWEI icon +RTLZWEI \ No newline at end of file diff --git a/icons/ruby.svg b/icons/ruby.svg index 45530b82..ed081698 100644 --- a/icons/ruby.svg +++ b/icons/ruby.svg @@ -1 +1 @@ -Ruby icon \ No newline at end of file +Ruby \ No newline at end of file diff --git a/icons/rubygems.svg b/icons/rubygems.svg index 3420b4bb..f9441c37 100644 --- a/icons/rubygems.svg +++ b/icons/rubygems.svg @@ -1 +1 @@ -RubyGems icon \ No newline at end of file +RubyGems \ No newline at end of file diff --git a/icons/rubyonrails.svg b/icons/rubyonrails.svg index 9ceffb93..1a7cfac2 100644 --- a/icons/rubyonrails.svg +++ b/icons/rubyonrails.svg @@ -1 +1 @@ -Ruby on Rails icon \ No newline at end of file +Ruby on Rails \ No newline at end of file diff --git a/icons/runkeeper.svg b/icons/runkeeper.svg index 8afba379..d10f28f0 100644 --- a/icons/runkeeper.svg +++ b/icons/runkeeper.svg @@ -1 +1 @@ -Runkeeper icon \ No newline at end of file +Runkeeper \ No newline at end of file diff --git a/icons/runkit.svg b/icons/runkit.svg index 01ebc453..fc7d0db9 100644 --- a/icons/runkit.svg +++ b/icons/runkit.svg @@ -1 +1 @@ -RunKit icon \ No newline at end of file +RunKit \ No newline at end of file diff --git a/icons/rust.svg b/icons/rust.svg index 2f6738d3..b95ce42a 100644 --- a/icons/rust.svg +++ b/icons/rust.svg @@ -1 +1 @@ -Rust icon \ No newline at end of file +Rust \ No newline at end of file diff --git a/icons/rxdb.svg b/icons/rxdb.svg index bbdb9739..c22f5843 100644 --- a/icons/rxdb.svg +++ b/icons/rxdb.svg @@ -1 +1 @@ -RxDB icon +RxDB \ No newline at end of file diff --git a/icons/ryanair.svg b/icons/ryanair.svg index d8d5db2b..505568e4 100644 --- a/icons/ryanair.svg +++ b/icons/ryanair.svg @@ -1 +1 @@ -Ryanair icon +Ryanair \ No newline at end of file diff --git a/icons/s7airlines.svg b/icons/s7airlines.svg index db998177..7fb3e60e 100644 --- a/icons/s7airlines.svg +++ b/icons/s7airlines.svg @@ -1 +1 @@ -S7 Airlines icon \ No newline at end of file +S7 Airlines \ No newline at end of file diff --git a/icons/safari.svg b/icons/safari.svg index a1ea2317..964ebbdd 100644 --- a/icons/safari.svg +++ b/icons/safari.svg @@ -1 +1 @@ -Safari icon \ No newline at end of file +Safari \ No newline at end of file diff --git a/icons/sahibinden.svg b/icons/sahibinden.svg index cb2d608d..9dbd423c 100644 --- a/icons/sahibinden.svg +++ b/icons/sahibinden.svg @@ -1 +1 @@ -Sahibinden icon \ No newline at end of file +Sahibinden \ No newline at end of file diff --git a/icons/salesforce.svg b/icons/salesforce.svg index 205610e7..5922c5bc 100644 --- a/icons/salesforce.svg +++ b/icons/salesforce.svg @@ -1 +1 @@ -Salesforce icon \ No newline at end of file +Salesforce \ No newline at end of file diff --git a/icons/saltstack.svg b/icons/saltstack.svg index de65cff6..d61d23c1 100644 --- a/icons/saltstack.svg +++ b/icons/saltstack.svg @@ -1 +1 @@ -SaltStack icon \ No newline at end of file +SaltStack \ No newline at end of file diff --git a/icons/samsung.svg b/icons/samsung.svg index b1406819..627cbf2c 100644 --- a/icons/samsung.svg +++ b/icons/samsung.svg @@ -1 +1 @@ -Samsung icon \ No newline at end of file +Samsung \ No newline at end of file diff --git a/icons/samsungpay.svg b/icons/samsungpay.svg index 4e4b804e..b4e653ad 100644 --- a/icons/samsungpay.svg +++ b/icons/samsungpay.svg @@ -1 +1 @@ -Samsung Pay icon \ No newline at end of file +Samsung Pay \ No newline at end of file diff --git a/icons/sanfranciscomunicipalrailway.svg b/icons/sanfranciscomunicipalrailway.svg index cd49725a..e1c8b4c3 100644 --- a/icons/sanfranciscomunicipalrailway.svg +++ b/icons/sanfranciscomunicipalrailway.svg @@ -1 +1 @@ -San Francisco Municipal Railway icon \ No newline at end of file +San Francisco Municipal Railway \ No newline at end of file diff --git a/icons/saopaulometro.svg b/icons/saopaulometro.svg index 239ff877..cea0c465 100644 --- a/icons/saopaulometro.svg +++ b/icons/saopaulometro.svg @@ -1 +1 @@ -São Paulo Metro icon \ No newline at end of file +São Paulo Metro \ No newline at end of file diff --git a/icons/sap.svg b/icons/sap.svg index b6a120bc..9b032ccc 100644 --- a/icons/sap.svg +++ b/icons/sap.svg @@ -1 +1 @@ -SAP icon \ No newline at end of file +SAP \ No newline at end of file diff --git a/icons/sass.svg b/icons/sass.svg index e2647c92..1a3eea2c 100644 --- a/icons/sass.svg +++ b/icons/sass.svg @@ -1 +1 @@ -Sass icon \ No newline at end of file +Sass \ No newline at end of file diff --git a/icons/sat-dot-1.svg b/icons/sat-dot-1.svg index 62b4c18f..4e046d02 100644 --- a/icons/sat-dot-1.svg +++ b/icons/sat-dot-1.svg @@ -1 +1 @@ -Sat.1 icon \ No newline at end of file +Sat.1 \ No newline at end of file diff --git a/icons/saucelabs.svg b/icons/saucelabs.svg index daa7e8bc..a0bc31c4 100644 --- a/icons/saucelabs.svg +++ b/icons/saucelabs.svg @@ -1 +1 @@ -Sauce Labs icon \ No newline at end of file +Sauce Labs \ No newline at end of file diff --git a/icons/scala.svg b/icons/scala.svg index 769a3ee5..01940a77 100644 --- a/icons/scala.svg +++ b/icons/scala.svg @@ -1 +1 @@ -Scala icon \ No newline at end of file +Scala \ No newline at end of file diff --git a/icons/scaleway.svg b/icons/scaleway.svg index 1e988748..054f2c01 100644 --- a/icons/scaleway.svg +++ b/icons/scaleway.svg @@ -1 +1 @@ -Scaleway icon \ No newline at end of file +Scaleway \ No newline at end of file diff --git a/icons/scania.svg b/icons/scania.svg index 68c127c0..26c073c0 100644 --- a/icons/scania.svg +++ b/icons/scania.svg @@ -1 +1 @@ -Scania icon +Scania \ No newline at end of file diff --git a/icons/scikit-learn.svg b/icons/scikit-learn.svg index 2e25ab3d..016b4836 100644 --- a/icons/scikit-learn.svg +++ b/icons/scikit-learn.svg @@ -1 +1 @@ -scikit-learn icon \ No newline at end of file +scikit-learn \ No newline at end of file diff --git a/icons/scipy.svg b/icons/scipy.svg index e6478455..40cbf903 100644 --- a/icons/scipy.svg +++ b/icons/scipy.svg @@ -1 +1 @@ -SciPy icon \ No newline at end of file +SciPy \ No newline at end of file diff --git a/icons/scopus.svg b/icons/scopus.svg index 59369d1a..364b71e4 100644 --- a/icons/scopus.svg +++ b/icons/scopus.svg @@ -1 +1 @@ -Scopus icon \ No newline at end of file +Scopus \ No newline at end of file diff --git a/icons/scratch.svg b/icons/scratch.svg index 110ba8a8..f820a7ac 100644 --- a/icons/scratch.svg +++ b/icons/scratch.svg @@ -1 +1 @@ -Scratch icon \ No newline at end of file +Scratch \ No newline at end of file diff --git a/icons/screencastify.svg b/icons/screencastify.svg index 9d88a2f6..a39f980b 100644 --- a/icons/screencastify.svg +++ b/icons/screencastify.svg @@ -1 +1 @@ -Screencastify icon \ No newline at end of file +Screencastify \ No newline at end of file diff --git a/icons/scribd.svg b/icons/scribd.svg index f6d1c701..a3a48695 100644 --- a/icons/scribd.svg +++ b/icons/scribd.svg @@ -1 +1 @@ -Scribd icon \ No newline at end of file +Scribd \ No newline at end of file diff --git a/icons/scrimba.svg b/icons/scrimba.svg index 708dfa54..c8a580e1 100644 --- a/icons/scrimba.svg +++ b/icons/scrimba.svg @@ -1 +1 @@ -Scrimba icon \ No newline at end of file +Scrimba \ No newline at end of file diff --git a/icons/scrollreveal.svg b/icons/scrollreveal.svg index 859f0147..a8050936 100644 --- a/icons/scrollreveal.svg +++ b/icons/scrollreveal.svg @@ -1 +1 @@ -ScrollReveal icon \ No newline at end of file +ScrollReveal \ No newline at end of file diff --git a/icons/scrumalliance.svg b/icons/scrumalliance.svg index 8b4dab19..9ec762f7 100644 --- a/icons/scrumalliance.svg +++ b/icons/scrumalliance.svg @@ -1 +1 @@ -Scrum Alliance icon \ No newline at end of file +Scrum Alliance \ No newline at end of file diff --git a/icons/scrutinizerci.svg b/icons/scrutinizerci.svg index 1d4a787b..fa2dc94a 100644 --- a/icons/scrutinizerci.svg +++ b/icons/scrutinizerci.svg @@ -1 +1 @@ -Scrutinizer CI icon \ No newline at end of file +Scrutinizer CI \ No newline at end of file diff --git a/icons/seagate.svg b/icons/seagate.svg index 39de2fd8..6dfa6087 100644 --- a/icons/seagate.svg +++ b/icons/seagate.svg @@ -1 +1 @@ -Seagate icon \ No newline at end of file +Seagate \ No newline at end of file diff --git a/icons/seat.svg b/icons/seat.svg index 4e4c01e4..174a64ff 100644 --- a/icons/seat.svg +++ b/icons/seat.svg @@ -1 +1 @@ -SEAT icon +SEAT \ No newline at end of file diff --git a/icons/sefaria.svg b/icons/sefaria.svg index 1982b102..1188af67 100644 --- a/icons/sefaria.svg +++ b/icons/sefaria.svg @@ -1 +1 @@ -Sefaria icon \ No newline at end of file +Sefaria \ No newline at end of file diff --git a/icons/sega.svg b/icons/sega.svg index 6b9049fe..4d01a0a5 100644 --- a/icons/sega.svg +++ b/icons/sega.svg @@ -1 +1 @@ -Sega icon \ No newline at end of file +Sega \ No newline at end of file diff --git a/icons/selenium.svg b/icons/selenium.svg index 3610266d..179c7bc2 100644 --- a/icons/selenium.svg +++ b/icons/selenium.svg @@ -1 +1 @@ -Selenium icon \ No newline at end of file +Selenium \ No newline at end of file diff --git a/icons/sellfy.svg b/icons/sellfy.svg index 66f36350..bd1e98b0 100644 --- a/icons/sellfy.svg +++ b/icons/sellfy.svg @@ -1 +1 @@ -Sellfy icon \ No newline at end of file +Sellfy \ No newline at end of file diff --git a/icons/semantic-release.svg b/icons/semantic-release.svg index c13dda6e..685da24c 100644 --- a/icons/semantic-release.svg +++ b/icons/semantic-release.svg @@ -1 +1 @@ -semantic-release icon \ No newline at end of file +semantic-release \ No newline at end of file diff --git a/icons/semanticuireact.svg b/icons/semanticuireact.svg index 9d50c40a..854ec27e 100644 --- a/icons/semanticuireact.svg +++ b/icons/semanticuireact.svg @@ -1 +1 @@ -Semantic UI React icon \ No newline at end of file +Semantic UI React \ No newline at end of file diff --git a/icons/semanticweb.svg b/icons/semanticweb.svg index 827995d5..faa50cac 100644 --- a/icons/semanticweb.svg +++ b/icons/semanticweb.svg @@ -1 +1 @@ -Semantic Web icon +Semantic Web \ No newline at end of file diff --git a/icons/semaphoreci.svg b/icons/semaphoreci.svg index 1bd2f267..ccf21378 100644 --- a/icons/semaphoreci.svg +++ b/icons/semaphoreci.svg @@ -1 +1 @@ -Semaphore CI icon \ No newline at end of file +Semaphore CI \ No newline at end of file diff --git a/icons/semver.svg b/icons/semver.svg index 95da6f45..288e2ed5 100644 --- a/icons/semver.svg +++ b/icons/semver.svg @@ -1 +1 @@ -SemVer icon +SemVer \ No newline at end of file diff --git a/icons/sencha.svg b/icons/sencha.svg index 3331f5b3..acbe8675 100644 --- a/icons/sencha.svg +++ b/icons/sencha.svg @@ -1 +1 @@ -Sencha icon \ No newline at end of file +Sencha \ No newline at end of file diff --git a/icons/sennheiser.svg b/icons/sennheiser.svg index 5fdf2a09..c0358e8e 100644 --- a/icons/sennheiser.svg +++ b/icons/sennheiser.svg @@ -1 +1 @@ -Sennheiser icon +Sennheiser \ No newline at end of file diff --git a/icons/sensu.svg b/icons/sensu.svg index 360a683c..a06c7da5 100644 --- a/icons/sensu.svg +++ b/icons/sensu.svg @@ -1 +1 @@ -Sensu icon \ No newline at end of file +Sensu \ No newline at end of file diff --git a/icons/sentry.svg b/icons/sentry.svg index 81c48d0d..11bb3c8a 100644 --- a/icons/sentry.svg +++ b/icons/sentry.svg @@ -1 +1 @@ -Sentry icon \ No newline at end of file +Sentry \ No newline at end of file diff --git a/icons/sepa.svg b/icons/sepa.svg index 9c7f88c8..2f53cb44 100644 --- a/icons/sepa.svg +++ b/icons/sepa.svg @@ -1 +1 @@ -SEPA icon \ No newline at end of file +SEPA \ No newline at end of file diff --git a/icons/serverfault.svg b/icons/serverfault.svg index 81a0bbd6..a7350abb 100644 --- a/icons/serverfault.svg +++ b/icons/serverfault.svg @@ -1 +1 @@ -Server Fault icon \ No newline at end of file +Server Fault \ No newline at end of file diff --git a/icons/serverless.svg b/icons/serverless.svg index bddce962..da488f20 100644 --- a/icons/serverless.svg +++ b/icons/serverless.svg @@ -1 +1 @@ -Serverless icon +Serverless \ No newline at end of file diff --git a/icons/sfml.svg b/icons/sfml.svg index 0391dffc..17f2b1dd 100644 --- a/icons/sfml.svg +++ b/icons/sfml.svg @@ -1 +1 @@ -SFML icon \ No newline at end of file +SFML \ No newline at end of file diff --git a/icons/shanghaimetro.svg b/icons/shanghaimetro.svg index bda77cfd..f35e375b 100644 --- a/icons/shanghaimetro.svg +++ b/icons/shanghaimetro.svg @@ -1 +1 @@ -Shanghai Metro icon \ No newline at end of file +Shanghai Metro \ No newline at end of file diff --git a/icons/sharp.svg b/icons/sharp.svg index f7dcdc52..22ff3cc6 100644 --- a/icons/sharp.svg +++ b/icons/sharp.svg @@ -1 +1 @@ -sharp icon \ No newline at end of file +sharp \ No newline at end of file diff --git a/icons/shazam.svg b/icons/shazam.svg index 6db55c20..932c07a0 100644 --- a/icons/shazam.svg +++ b/icons/shazam.svg @@ -1 +1 @@ -Shazam icon \ No newline at end of file +Shazam \ No newline at end of file diff --git a/icons/shell.svg b/icons/shell.svg index bbfe9dbe..d4aa2590 100644 --- a/icons/shell.svg +++ b/icons/shell.svg @@ -1 +1 @@ -Shell icon \ No newline at end of file +Shell \ No newline at end of file diff --git a/icons/shelly.svg b/icons/shelly.svg index b7927b69..0b094543 100644 --- a/icons/shelly.svg +++ b/icons/shelly.svg @@ -1 +1 @@ -Shelly icon \ No newline at end of file +Shelly \ No newline at end of file diff --git a/icons/shenzhenmetro.svg b/icons/shenzhenmetro.svg index 283d31ad..6a60c24a 100644 --- a/icons/shenzhenmetro.svg +++ b/icons/shenzhenmetro.svg @@ -1 +1 @@ -Shenzhen Metro icon \ No newline at end of file +Shenzhen Metro \ No newline at end of file diff --git a/icons/shields-dot-io.svg b/icons/shields-dot-io.svg index 30cebb4b..31dbdf14 100644 --- a/icons/shields-dot-io.svg +++ b/icons/shields-dot-io.svg @@ -1 +1 @@ -Shields.io icon +Shields.io \ No newline at end of file diff --git a/icons/shikimori.svg b/icons/shikimori.svg index 40c2c550..ff42b7d0 100644 --- a/icons/shikimori.svg +++ b/icons/shikimori.svg @@ -1 +1 @@ -Shikimori icon +Shikimori \ No newline at end of file diff --git a/icons/shopify.svg b/icons/shopify.svg index 5b028264..9a7d3777 100644 --- a/icons/shopify.svg +++ b/icons/shopify.svg @@ -1 +1 @@ -Shopify icon \ No newline at end of file +Shopify \ No newline at end of file diff --git a/icons/shopware.svg b/icons/shopware.svg index d15d8552..f86523fd 100644 --- a/icons/shopware.svg +++ b/icons/shopware.svg @@ -1 +1 @@ -Shopware icon \ No newline at end of file +Shopware \ No newline at end of file diff --git a/icons/shotcut.svg b/icons/shotcut.svg index 2bd47f4f..888640ae 100644 --- a/icons/shotcut.svg +++ b/icons/shotcut.svg @@ -1 +1 @@ -Shotcut icon \ No newline at end of file +Shotcut \ No newline at end of file diff --git a/icons/showpad.svg b/icons/showpad.svg index d839f4ab..0905c8d3 100644 --- a/icons/showpad.svg +++ b/icons/showpad.svg @@ -1 +1 @@ -Showpad icon \ No newline at end of file +Showpad \ No newline at end of file diff --git a/icons/showtime.svg b/icons/showtime.svg index f292d217..676caaf3 100644 --- a/icons/showtime.svg +++ b/icons/showtime.svg @@ -1 +1 @@ -Showtime icon +Showtime \ No newline at end of file diff --git a/icons/shutterstock.svg b/icons/shutterstock.svg index 3df8501d..0bd216bb 100644 --- a/icons/shutterstock.svg +++ b/icons/shutterstock.svg @@ -1 +1 @@ -Shutterstock icon \ No newline at end of file +Shutterstock \ No newline at end of file diff --git a/icons/siemens.svg b/icons/siemens.svg index 44e9c827..ec60e7b1 100644 --- a/icons/siemens.svg +++ b/icons/siemens.svg @@ -1 +1 @@ -Siemens icon \ No newline at end of file +Siemens \ No newline at end of file diff --git a/icons/signal.svg b/icons/signal.svg index fb701794..f79d6ecb 100644 --- a/icons/signal.svg +++ b/icons/signal.svg @@ -1 +1 @@ -Signal icon \ No newline at end of file +Signal \ No newline at end of file diff --git a/icons/simkl.svg b/icons/simkl.svg index 7e094746..e620bdda 100644 --- a/icons/simkl.svg +++ b/icons/simkl.svg @@ -1 +1 @@ -Simkl icon \ No newline at end of file +Simkl \ No newline at end of file diff --git a/icons/simpleanalytics.svg b/icons/simpleanalytics.svg index 506a059a..ac84af50 100644 --- a/icons/simpleanalytics.svg +++ b/icons/simpleanalytics.svg @@ -1 +1 @@ -Simple Analytics icon \ No newline at end of file +Simple Analytics \ No newline at end of file diff --git a/icons/simpleicons.svg b/icons/simpleicons.svg index 67bf6126..1fa7e0fd 100644 --- a/icons/simpleicons.svg +++ b/icons/simpleicons.svg @@ -1 +1 @@ -Simple Icons icon \ No newline at end of file +Simple Icons \ No newline at end of file diff --git a/icons/sinaweibo.svg b/icons/sinaweibo.svg index 0a04c706..cd789f5a 100644 --- a/icons/sinaweibo.svg +++ b/icons/sinaweibo.svg @@ -1 +1 @@ -Sina Weibo icon \ No newline at end of file +Sina Weibo \ No newline at end of file diff --git a/icons/singlestore.svg b/icons/singlestore.svg index 7884c560..2d075d2a 100644 --- a/icons/singlestore.svg +++ b/icons/singlestore.svg @@ -1 +1 @@ -SingleStore icon \ No newline at end of file +SingleStore \ No newline at end of file diff --git a/icons/sitepoint.svg b/icons/sitepoint.svg index ae222a9c..fc88f357 100644 --- a/icons/sitepoint.svg +++ b/icons/sitepoint.svg @@ -1 +1 @@ -SitePoint icon \ No newline at end of file +SitePoint \ No newline at end of file diff --git a/icons/sketch.svg b/icons/sketch.svg index 2080efdb..5b688812 100644 --- a/icons/sketch.svg +++ b/icons/sketch.svg @@ -1 +1 @@ -Sketch icon +Sketch \ No newline at end of file diff --git a/icons/sketchfab.svg b/icons/sketchfab.svg index 3152c4aa..be91a1ab 100644 --- a/icons/sketchfab.svg +++ b/icons/sketchfab.svg @@ -1 +1 @@ -Sketchfab icon \ No newline at end of file +Sketchfab \ No newline at end of file diff --git a/icons/sketchup.svg b/icons/sketchup.svg index 69e81c5e..35b1472d 100644 --- a/icons/sketchup.svg +++ b/icons/sketchup.svg @@ -1 +1 @@ -SketchUp icon \ No newline at end of file +SketchUp \ No newline at end of file diff --git a/icons/skillshare.svg b/icons/skillshare.svg index 2af2b38f..4783b5bf 100644 --- a/icons/skillshare.svg +++ b/icons/skillshare.svg @@ -1 +1 @@ -Skillshare icon \ No newline at end of file +Skillshare \ No newline at end of file diff --git a/icons/skoda.svg b/icons/skoda.svg index c2642b4a..ccbf36e6 100644 --- a/icons/skoda.svg +++ b/icons/skoda.svg @@ -1 +1 @@ -ŠKODA icon +ŠKODA \ No newline at end of file diff --git a/icons/sky.svg b/icons/sky.svg index 51eea258..8a30b2d3 100644 --- a/icons/sky.svg +++ b/icons/sky.svg @@ -1 +1 @@ -Sky icon \ No newline at end of file +Sky \ No newline at end of file diff --git a/icons/skyliner.svg b/icons/skyliner.svg index 899e7099..1f608af5 100644 --- a/icons/skyliner.svg +++ b/icons/skyliner.svg @@ -1 +1 @@ -Skyliner icon \ No newline at end of file +Skyliner \ No newline at end of file diff --git a/icons/skype.svg b/icons/skype.svg index f82379bb..21e09316 100644 --- a/icons/skype.svg +++ b/icons/skype.svg @@ -1 +1 @@ -Skype icon \ No newline at end of file +Skype \ No newline at end of file diff --git a/icons/skypeforbusiness.svg b/icons/skypeforbusiness.svg index aef7bf55..818390da 100644 --- a/icons/skypeforbusiness.svg +++ b/icons/skypeforbusiness.svg @@ -1 +1 @@ -Skype for Business icon +Skype for Business \ No newline at end of file diff --git a/icons/slack.svg b/icons/slack.svg index dbdf352b..004e2663 100644 --- a/icons/slack.svg +++ b/icons/slack.svg @@ -1 +1 @@ -Slack icon \ No newline at end of file +Slack \ No newline at end of file diff --git a/icons/slackware.svg b/icons/slackware.svg index 9ee31273..611bf809 100644 --- a/icons/slackware.svg +++ b/icons/slackware.svg @@ -1 +1 @@ -Slackware icon \ No newline at end of file +Slackware \ No newline at end of file diff --git a/icons/slashdot.svg b/icons/slashdot.svg index 09e84589..3ac16fd0 100644 --- a/icons/slashdot.svg +++ b/icons/slashdot.svg @@ -1 +1 @@ -Slashdot icon \ No newline at end of file +Slashdot \ No newline at end of file diff --git a/icons/slickpic.svg b/icons/slickpic.svg index 3c40eca6..9e294b4e 100644 --- a/icons/slickpic.svg +++ b/icons/slickpic.svg @@ -1 +1 @@ -SlickPic icon \ No newline at end of file +SlickPic \ No newline at end of file diff --git a/icons/slides.svg b/icons/slides.svg index 2a80463c..cb5b8888 100644 --- a/icons/slides.svg +++ b/icons/slides.svg @@ -1 +1 @@ -Slides icon \ No newline at end of file +Slides \ No newline at end of file diff --git a/icons/slideshare.svg b/icons/slideshare.svg index 491ea7b6..4ed07566 100644 --- a/icons/slideshare.svg +++ b/icons/slideshare.svg @@ -1 +1 @@ -SlideShare icon \ No newline at end of file +SlideShare \ No newline at end of file diff --git a/icons/smart.svg b/icons/smart.svg index c2f06b8e..78bfafeb 100644 --- a/icons/smart.svg +++ b/icons/smart.svg @@ -1 +1 @@ -smart icon \ No newline at end of file +smart \ No newline at end of file diff --git a/icons/smartthings.svg b/icons/smartthings.svg index 5289713f..f2e396e3 100644 --- a/icons/smartthings.svg +++ b/icons/smartthings.svg @@ -1 +1 @@ -SmartThings icon \ No newline at end of file +SmartThings \ No newline at end of file diff --git a/icons/smashdotgg.svg b/icons/smashdotgg.svg index 4a4bbd5b..915ad382 100644 --- a/icons/smashdotgg.svg +++ b/icons/smashdotgg.svg @@ -1 +1 @@ -smash.gg icon \ No newline at end of file +smash.gg \ No newline at end of file diff --git a/icons/smashingmagazine.svg b/icons/smashingmagazine.svg index 58b0c2d1..c8273f60 100644 --- a/icons/smashingmagazine.svg +++ b/icons/smashingmagazine.svg @@ -1 +1 @@ -Smashing Magazine icon \ No newline at end of file +Smashing Magazine \ No newline at end of file diff --git a/icons/smrt.svg b/icons/smrt.svg index 6df501ef..31c22f58 100644 --- a/icons/smrt.svg +++ b/icons/smrt.svg @@ -1 +1 @@ -SMRT icon +SMRT \ No newline at end of file diff --git a/icons/smugmug.svg b/icons/smugmug.svg index 9176b95f..0969c85b 100644 --- a/icons/smugmug.svg +++ b/icons/smugmug.svg @@ -1 +1 @@ -SmugMug icon +SmugMug \ No newline at end of file diff --git a/icons/snapchat.svg b/icons/snapchat.svg index 0a01ff77..3110fbad 100644 --- a/icons/snapchat.svg +++ b/icons/snapchat.svg @@ -1 +1 @@ -Snapchat icon \ No newline at end of file +Snapchat \ No newline at end of file diff --git a/icons/snapcraft.svg b/icons/snapcraft.svg index c97819e3..5a66b929 100644 --- a/icons/snapcraft.svg +++ b/icons/snapcraft.svg @@ -1 +1 @@ -Snapcraft icon \ No newline at end of file +Snapcraft \ No newline at end of file diff --git a/icons/snowflake.svg b/icons/snowflake.svg index f0592fc3..27742797 100644 --- a/icons/snowflake.svg +++ b/icons/snowflake.svg @@ -1 +1 @@ -Snowflake icon \ No newline at end of file +Snowflake \ No newline at end of file diff --git a/icons/snyk.svg b/icons/snyk.svg index 76920160..61139341 100644 --- a/icons/snyk.svg +++ b/icons/snyk.svg @@ -1 +1 @@ -Snyk icon \ No newline at end of file +Snyk \ No newline at end of file diff --git a/icons/society6.svg b/icons/society6.svg index 76a299ed..910b5f02 100644 --- a/icons/society6.svg +++ b/icons/society6.svg @@ -1 +1 @@ -Society6 icon \ No newline at end of file +Society6 \ No newline at end of file diff --git a/icons/socket-dot-io.svg b/icons/socket-dot-io.svg index 9984958d..41ac3d4d 100644 --- a/icons/socket-dot-io.svg +++ b/icons/socket-dot-io.svg @@ -1 +1 @@ -Socket.io icon \ No newline at end of file +Socket.io \ No newline at end of file diff --git a/icons/sogou.svg b/icons/sogou.svg index 4b5a5638..54e7cd32 100644 --- a/icons/sogou.svg +++ b/icons/sogou.svg @@ -1 +1 @@ -Sogou icon \ No newline at end of file +Sogou \ No newline at end of file diff --git a/icons/solidity.svg b/icons/solidity.svg index 1ff08daa..582fb9fb 100644 --- a/icons/solidity.svg +++ b/icons/solidity.svg @@ -1 +1 @@ -Solidity icon +Solidity \ No newline at end of file diff --git a/icons/sololearn.svg b/icons/sololearn.svg index a75495cc..3ee3ad2e 100644 --- a/icons/sololearn.svg +++ b/icons/sololearn.svg @@ -1 +1 @@ -SoloLearn icon \ No newline at end of file +SoloLearn \ No newline at end of file diff --git a/icons/solus.svg b/icons/solus.svg index 7f79d282..8d187813 100644 --- a/icons/solus.svg +++ b/icons/solus.svg @@ -1 +1 @@ -Solus icon \ No newline at end of file +Solus \ No newline at end of file diff --git a/icons/sonarcloud.svg b/icons/sonarcloud.svg index cda076d4..c57b1382 100644 --- a/icons/sonarcloud.svg +++ b/icons/sonarcloud.svg @@ -1 +1 @@ -SonarCloud icon \ No newline at end of file +SonarCloud \ No newline at end of file diff --git a/icons/sonarlint.svg b/icons/sonarlint.svg index 7d2569bd..ce196cbe 100644 --- a/icons/sonarlint.svg +++ b/icons/sonarlint.svg @@ -1 +1 @@ -SonarLint icon \ No newline at end of file +SonarLint \ No newline at end of file diff --git a/icons/sonarqube.svg b/icons/sonarqube.svg index 486eed8d..1ea28acb 100644 --- a/icons/sonarqube.svg +++ b/icons/sonarqube.svg @@ -1 +1 @@ -SonarQube icon \ No newline at end of file +SonarQube \ No newline at end of file diff --git a/icons/sonarsource.svg b/icons/sonarsource.svg index db9831b2..fce5f217 100644 --- a/icons/sonarsource.svg +++ b/icons/sonarsource.svg @@ -1 +1 @@ -SonarSource icon \ No newline at end of file +SonarSource \ No newline at end of file diff --git a/icons/songkick.svg b/icons/songkick.svg index f86c2ec0..6c05ac6c 100644 --- a/icons/songkick.svg +++ b/icons/songkick.svg @@ -1 +1 @@ -Songkick icon \ No newline at end of file +Songkick \ No newline at end of file diff --git a/icons/songoda.svg b/icons/songoda.svg index 28497d50..35da7ee9 100644 --- a/icons/songoda.svg +++ b/icons/songoda.svg @@ -1 +1 @@ -Songoda icon \ No newline at end of file +Songoda \ No newline at end of file diff --git a/icons/sonicwall.svg b/icons/sonicwall.svg index 67f6cabe..5754f81b 100644 --- a/icons/sonicwall.svg +++ b/icons/sonicwall.svg @@ -1 +1 @@ -SonicWall icon \ No newline at end of file +SonicWall \ No newline at end of file diff --git a/icons/sonos.svg b/icons/sonos.svg index 019cfca8..5655a145 100644 --- a/icons/sonos.svg +++ b/icons/sonos.svg @@ -1 +1 @@ -Sonos icon \ No newline at end of file +Sonos \ No newline at end of file diff --git a/icons/soundcloud.svg b/icons/soundcloud.svg index 04dc4969..8ef68962 100644 --- a/icons/soundcloud.svg +++ b/icons/soundcloud.svg @@ -1 +1 @@ -SoundCloud icon \ No newline at end of file +SoundCloud \ No newline at end of file diff --git a/icons/sourceengine.svg b/icons/sourceengine.svg index 05f49206..4da4253f 100644 --- a/icons/sourceengine.svg +++ b/icons/sourceengine.svg @@ -1 +1 @@ -Source Engine icon \ No newline at end of file +Source Engine \ No newline at end of file diff --git a/icons/sourceforge.svg b/icons/sourceforge.svg index 97a71dd9..ea16d6c8 100644 --- a/icons/sourceforge.svg +++ b/icons/sourceforge.svg @@ -1 +1 @@ -SourceForge icon +SourceForge \ No newline at end of file diff --git a/icons/sourcegraph.svg b/icons/sourcegraph.svg index 72c67ff8..71bb3b69 100644 --- a/icons/sourcegraph.svg +++ b/icons/sourcegraph.svg @@ -1 +1 @@ -Sourcegraph icon \ No newline at end of file +Sourcegraph \ No newline at end of file diff --git a/icons/southwestairlines.svg b/icons/southwestairlines.svg index 6c9079f6..07cd97ef 100644 --- a/icons/southwestairlines.svg +++ b/icons/southwestairlines.svg @@ -1 +1 @@ -Southwest Airlines icon \ No newline at end of file +Southwest Airlines \ No newline at end of file diff --git a/icons/spacemacs.svg b/icons/spacemacs.svg index a301c6c9..3b667c4c 100644 --- a/icons/spacemacs.svg +++ b/icons/spacemacs.svg @@ -1 +1 @@ -Spacemacs icon \ No newline at end of file +Spacemacs \ No newline at end of file diff --git a/icons/spacex.svg b/icons/spacex.svg index 87da5dff..c5b382a5 100644 --- a/icons/spacex.svg +++ b/icons/spacex.svg @@ -1 +1 @@ -SpaceX icon \ No newline at end of file +SpaceX \ No newline at end of file diff --git a/icons/sparkar.svg b/icons/sparkar.svg index c668807e..22078280 100644 --- a/icons/sparkar.svg +++ b/icons/sparkar.svg @@ -1 +1 @@ -Spark AR icon \ No newline at end of file +Spark AR \ No newline at end of file diff --git a/icons/sparkasse.svg b/icons/sparkasse.svg index 88dc6068..3b5df589 100644 --- a/icons/sparkasse.svg +++ b/icons/sparkasse.svg @@ -1 +1 @@ -Sparkasse icon \ No newline at end of file +Sparkasse \ No newline at end of file diff --git a/icons/sparkfun.svg b/icons/sparkfun.svg index c6adb27e..82b5aab1 100644 --- a/icons/sparkfun.svg +++ b/icons/sparkfun.svg @@ -1 +1 @@ -SparkFun icon \ No newline at end of file +SparkFun \ No newline at end of file diff --git a/icons/sparkpost.svg b/icons/sparkpost.svg index fc593817..d43d9779 100644 --- a/icons/sparkpost.svg +++ b/icons/sparkpost.svg @@ -1 +1 @@ -SparkPost icon \ No newline at end of file +SparkPost \ No newline at end of file diff --git a/icons/spdx.svg b/icons/spdx.svg index a4bab39a..b8e9b9e3 100644 --- a/icons/spdx.svg +++ b/icons/spdx.svg @@ -1 +1 @@ -SPDX icon \ No newline at end of file +SPDX \ No newline at end of file diff --git a/icons/speakerdeck.svg b/icons/speakerdeck.svg index c5751819..7e27048d 100644 --- a/icons/speakerdeck.svg +++ b/icons/speakerdeck.svg @@ -1 +1 @@ -Speaker Deck icon \ No newline at end of file +Speaker Deck \ No newline at end of file diff --git a/icons/spectrum.svg b/icons/spectrum.svg index f55e4b95..94fe5da6 100644 --- a/icons/spectrum.svg +++ b/icons/spectrum.svg @@ -1 +1 @@ -Spectrum icon +Spectrum \ No newline at end of file diff --git a/icons/speedtest.svg b/icons/speedtest.svg index 3cd9aa19..e4ba7729 100644 --- a/icons/speedtest.svg +++ b/icons/speedtest.svg @@ -1 +1 @@ -Speedtest icon \ No newline at end of file +Speedtest \ No newline at end of file diff --git a/icons/spinnaker.svg b/icons/spinnaker.svg index 3bc02c0b..9ab9aa5b 100644 --- a/icons/spinnaker.svg +++ b/icons/spinnaker.svg @@ -1 +1 @@ -Spinnaker icon \ No newline at end of file +Spinnaker \ No newline at end of file diff --git a/icons/spinrilla.svg b/icons/spinrilla.svg index c4c27cec..7dbbc156 100644 --- a/icons/spinrilla.svg +++ b/icons/spinrilla.svg @@ -1 +1 @@ -Spinrilla icon \ No newline at end of file +Spinrilla \ No newline at end of file diff --git a/icons/splunk.svg b/icons/splunk.svg index aabe42ea..fde4ffb9 100644 --- a/icons/splunk.svg +++ b/icons/splunk.svg @@ -1 +1 @@ -Splunk icon \ No newline at end of file +Splunk \ No newline at end of file diff --git a/icons/spotify.svg b/icons/spotify.svg index aca3621c..8d4d095f 100644 --- a/icons/spotify.svg +++ b/icons/spotify.svg @@ -1 +1 @@ -Spotify icon \ No newline at end of file +Spotify \ No newline at end of file diff --git a/icons/spotlight.svg b/icons/spotlight.svg index 9d71aea5..defd6cc5 100644 --- a/icons/spotlight.svg +++ b/icons/spotlight.svg @@ -1 +1 @@ -Spotlight icon \ No newline at end of file +Spotlight \ No newline at end of file diff --git a/icons/spreaker.svg b/icons/spreaker.svg index 80e20287..7342dcba 100644 --- a/icons/spreaker.svg +++ b/icons/spreaker.svg @@ -1 +1 @@ -Spreaker icon \ No newline at end of file +Spreaker \ No newline at end of file diff --git a/icons/spring.svg b/icons/spring.svg index d9385203..bfbd69d9 100644 --- a/icons/spring.svg +++ b/icons/spring.svg @@ -1 +1 @@ -Spring icon \ No newline at end of file +Spring \ No newline at end of file diff --git a/icons/springboot.svg b/icons/springboot.svg index 083d6f8c..7f2e01c5 100644 --- a/icons/springboot.svg +++ b/icons/springboot.svg @@ -1 +1 @@ -Spring Boot icon \ No newline at end of file +Spring Boot \ No newline at end of file diff --git a/icons/spyderide.svg b/icons/spyderide.svg index 447703c7..77226168 100644 --- a/icons/spyderide.svg +++ b/icons/spyderide.svg @@ -1 +1 @@ -Spyder IDE icon \ No newline at end of file +Spyder IDE \ No newline at end of file diff --git a/icons/sqlite.svg b/icons/sqlite.svg index 7fde5f0b..a776ea18 100644 --- a/icons/sqlite.svg +++ b/icons/sqlite.svg @@ -1 +1 @@ -SQLite icon \ No newline at end of file +SQLite \ No newline at end of file diff --git a/icons/square.svg b/icons/square.svg index 5f752c16..f798f10d 100644 --- a/icons/square.svg +++ b/icons/square.svg @@ -1 +1 @@ -Square icon +Square \ No newline at end of file diff --git a/icons/squareenix.svg b/icons/squareenix.svg index 0a7cbc97..0e2996c9 100644 --- a/icons/squareenix.svg +++ b/icons/squareenix.svg @@ -1 +1 @@ -Square Enix icon \ No newline at end of file +Square Enix \ No newline at end of file diff --git a/icons/squarespace.svg b/icons/squarespace.svg index fe15d6e6..f98104d6 100644 --- a/icons/squarespace.svg +++ b/icons/squarespace.svg @@ -1 +1 @@ -Squarespace icon \ No newline at end of file +Squarespace \ No newline at end of file diff --git a/icons/ssrn.svg b/icons/ssrn.svg index 0061f97e..49876b11 100644 --- a/icons/ssrn.svg +++ b/icons/ssrn.svg @@ -1 +1 @@ -SSRN icon \ No newline at end of file +SSRN \ No newline at end of file diff --git a/icons/stackbit.svg b/icons/stackbit.svg index 6a6079e3..2f6c5eb6 100644 --- a/icons/stackbit.svg +++ b/icons/stackbit.svg @@ -1 +1 @@ -Stackbit icon \ No newline at end of file +Stackbit \ No newline at end of file diff --git a/icons/stackexchange.svg b/icons/stackexchange.svg index eed94d4b..b6e80af0 100644 --- a/icons/stackexchange.svg +++ b/icons/stackexchange.svg @@ -1 +1 @@ -Stack Exchange icon \ No newline at end of file +Stack Exchange \ No newline at end of file diff --git a/icons/stackoverflow.svg b/icons/stackoverflow.svg index 52111051..ab838082 100644 --- a/icons/stackoverflow.svg +++ b/icons/stackoverflow.svg @@ -1 +1 @@ -Stack Overflow icon \ No newline at end of file +Stack Overflow \ No newline at end of file diff --git a/icons/stackpath.svg b/icons/stackpath.svg index 5fa15320..af2eeffc 100644 --- a/icons/stackpath.svg +++ b/icons/stackpath.svg @@ -1 +1 @@ -StackPath icon \ No newline at end of file +StackPath \ No newline at end of file diff --git a/icons/stackshare.svg b/icons/stackshare.svg index 406756ea..cfd0ce54 100644 --- a/icons/stackshare.svg +++ b/icons/stackshare.svg @@ -1 +1 @@ -StackShare icon \ No newline at end of file +StackShare \ No newline at end of file diff --git a/icons/stadia.svg b/icons/stadia.svg index 62116f80..287855a6 100644 --- a/icons/stadia.svg +++ b/icons/stadia.svg @@ -1 +1 @@ -Stadia icon \ No newline at end of file +Stadia \ No newline at end of file diff --git a/icons/staffbase.svg b/icons/staffbase.svg index c8a3e9c9..feb16d87 100644 --- a/icons/staffbase.svg +++ b/icons/staffbase.svg @@ -1 +1 @@ -Staffbase icon \ No newline at end of file +Staffbase \ No newline at end of file diff --git a/icons/starlingbank.svg b/icons/starlingbank.svg index 9fd7669b..64fa9a49 100644 --- a/icons/starlingbank.svg +++ b/icons/starlingbank.svg @@ -1 +1 @@ -Starling Bank icon \ No newline at end of file +Starling Bank \ No newline at end of file diff --git a/icons/starship.svg b/icons/starship.svg index 6eedaf04..59941620 100644 --- a/icons/starship.svg +++ b/icons/starship.svg @@ -1 +1 @@ -Starship icon \ No newline at end of file +Starship \ No newline at end of file diff --git a/icons/startrek.svg b/icons/startrek.svg index 08e75ec4..28fae151 100644 --- a/icons/startrek.svg +++ b/icons/startrek.svg @@ -1 +1 @@ -Star Trek icon \ No newline at end of file +Star Trek \ No newline at end of file diff --git a/icons/starz.svg b/icons/starz.svg index a17f6a9c..75aa7d04 100644 --- a/icons/starz.svg +++ b/icons/starz.svg @@ -1 +1 @@ -STARZ icon \ No newline at end of file +STARZ \ No newline at end of file diff --git a/icons/statamic.svg b/icons/statamic.svg index c8856f31..ed7ea322 100644 --- a/icons/statamic.svg +++ b/icons/statamic.svg @@ -1 +1 @@ -Statamic icon \ No newline at end of file +Statamic \ No newline at end of file diff --git a/icons/statuspage.svg b/icons/statuspage.svg index 548b60da..891c34f8 100644 --- a/icons/statuspage.svg +++ b/icons/statuspage.svg @@ -1 +1 @@ -Statuspage icon \ No newline at end of file +Statuspage \ No newline at end of file diff --git a/icons/statuspal.svg b/icons/statuspal.svg index 0d3b747a..5b67756c 100644 --- a/icons/statuspal.svg +++ b/icons/statuspal.svg @@ -1 +1 @@ -Statuspal icon \ No newline at end of file +Statuspal \ No newline at end of file diff --git a/icons/steam.svg b/icons/steam.svg index 1a66672c..affefa51 100644 --- a/icons/steam.svg +++ b/icons/steam.svg @@ -1 +1 @@ -Steam icon \ No newline at end of file +Steam \ No newline at end of file diff --git a/icons/steamdb.svg b/icons/steamdb.svg index 9c2265f6..72e22d21 100644 --- a/icons/steamdb.svg +++ b/icons/steamdb.svg @@ -1 +1 @@ -SteamDB icon \ No newline at end of file +SteamDB \ No newline at end of file diff --git a/icons/steamworks.svg b/icons/steamworks.svg index 770d52c9..1382562d 100644 --- a/icons/steamworks.svg +++ b/icons/steamworks.svg @@ -1 +1 @@ -Steamworks icon \ No newline at end of file +Steamworks \ No newline at end of file diff --git a/icons/steem.svg b/icons/steem.svg index e6750f50..a0ec530d 100644 --- a/icons/steem.svg +++ b/icons/steem.svg @@ -1 +1 @@ -Steem icon \ No newline at end of file +Steem \ No newline at end of file diff --git a/icons/steemit.svg b/icons/steemit.svg index a644036a..0077e18c 100644 --- a/icons/steemit.svg +++ b/icons/steemit.svg @@ -1 +1 @@ -Steemit icon \ No newline at end of file +Steemit \ No newline at end of file diff --git a/icons/steinberg.svg b/icons/steinberg.svg index 305d3a64..82b1b133 100644 --- a/icons/steinberg.svg +++ b/icons/steinberg.svg @@ -1 +1 @@ -Steinberg icon \ No newline at end of file +Steinberg \ No newline at end of file diff --git a/icons/stellar.svg b/icons/stellar.svg index fbea48df..402b59b5 100644 --- a/icons/stellar.svg +++ b/icons/stellar.svg @@ -1 +1 @@ -Stellar icon \ No newline at end of file +Stellar \ No newline at end of file diff --git a/icons/stencyl.svg b/icons/stencyl.svg index cd8b90d7..895e3693 100644 --- a/icons/stencyl.svg +++ b/icons/stencyl.svg @@ -1 +1 @@ -Stencyl icon \ No newline at end of file +Stencyl \ No newline at end of file diff --git a/icons/stimulus.svg b/icons/stimulus.svg index b88f5ad1..17f5a8f0 100644 --- a/icons/stimulus.svg +++ b/icons/stimulus.svg @@ -1 +1 @@ -Stimulus icon \ No newline at end of file +Stimulus \ No newline at end of file diff --git a/icons/stitcher.svg b/icons/stitcher.svg index 8ef8aec0..009be134 100644 --- a/icons/stitcher.svg +++ b/icons/stitcher.svg @@ -1 +1 @@ -Stitcher icon \ No newline at end of file +Stitcher \ No newline at end of file diff --git a/icons/stmicroelectronics.svg b/icons/stmicroelectronics.svg index 98e215ee..f6deb6b3 100644 --- a/icons/stmicroelectronics.svg +++ b/icons/stmicroelectronics.svg @@ -1 +1 @@ -STMicroelectronics icon \ No newline at end of file +STMicroelectronics \ No newline at end of file diff --git a/icons/storyblok.svg b/icons/storyblok.svg index 87c8d05f..c97f6630 100644 --- a/icons/storyblok.svg +++ b/icons/storyblok.svg @@ -1 +1 @@ -Storyblok icon \ No newline at end of file +Storyblok \ No newline at end of file diff --git a/icons/storybook.svg b/icons/storybook.svg index 36658795..0096f3b8 100644 --- a/icons/storybook.svg +++ b/icons/storybook.svg @@ -1 +1 @@ -Storybook icon \ No newline at end of file +Storybook \ No newline at end of file diff --git a/icons/strapi.svg b/icons/strapi.svg index 18e7430f..21e1883f 100644 --- a/icons/strapi.svg +++ b/icons/strapi.svg @@ -1 +1 @@ -Strapi icon \ No newline at end of file +Strapi \ No newline at end of file diff --git a/icons/strava.svg b/icons/strava.svg index 3172153b..e01de50e 100644 --- a/icons/strava.svg +++ b/icons/strava.svg @@ -1 +1 @@ -Strava icon \ No newline at end of file +Strava \ No newline at end of file diff --git a/icons/streamlit.svg b/icons/streamlit.svg index 7281c164..b0f70fca 100644 --- a/icons/streamlit.svg +++ b/icons/streamlit.svg @@ -1 +1 @@ -Streamlit icon +Streamlit \ No newline at end of file diff --git a/icons/stripe.svg b/icons/stripe.svg index 02cb0902..8ebadf74 100644 --- a/icons/stripe.svg +++ b/icons/stripe.svg @@ -1 +1 @@ -Stripe icon \ No newline at end of file +Stripe \ No newline at end of file diff --git a/icons/strongswan.svg b/icons/strongswan.svg index f540f3c6..01eefc0d 100644 --- a/icons/strongswan.svg +++ b/icons/strongswan.svg @@ -1 +1 @@ -strongSwan icon \ No newline at end of file +strongSwan \ No newline at end of file diff --git a/icons/stubhub.svg b/icons/stubhub.svg index 1d41edb3..b367e8b1 100644 --- a/icons/stubhub.svg +++ b/icons/stubhub.svg @@ -1 +1 @@ -StubHub icon \ No newline at end of file +StubHub \ No newline at end of file diff --git a/icons/styled-components.svg b/icons/styled-components.svg index 28dd269e..f0562e2d 100644 --- a/icons/styled-components.svg +++ b/icons/styled-components.svg @@ -1 +1 @@ -styled-components icon \ No newline at end of file +styled-components \ No newline at end of file diff --git a/icons/stylelint.svg b/icons/stylelint.svg index b60fd624..69306540 100644 --- a/icons/stylelint.svg +++ b/icons/stylelint.svg @@ -1 +1 @@ -stylelint icon \ No newline at end of file +stylelint \ No newline at end of file diff --git a/icons/styleshare.svg b/icons/styleshare.svg index 715df271..625491f6 100644 --- a/icons/styleshare.svg +++ b/icons/styleshare.svg @@ -1 +1 @@ -StyleShare icon \ No newline at end of file +StyleShare \ No newline at end of file diff --git a/icons/stylus.svg b/icons/stylus.svg index 0bc71d2d..062da315 100644 --- a/icons/stylus.svg +++ b/icons/stylus.svg @@ -1 +1 @@ -Stylus icon \ No newline at end of file +Stylus \ No newline at end of file diff --git a/icons/subaru.svg b/icons/subaru.svg index 262aaf84..d1e300d7 100644 --- a/icons/subaru.svg +++ b/icons/subaru.svg @@ -1 +1 @@ -Subaru icon \ No newline at end of file +Subaru \ No newline at end of file diff --git a/icons/sublimetext.svg b/icons/sublimetext.svg index e1b70730..8499dc4e 100644 --- a/icons/sublimetext.svg +++ b/icons/sublimetext.svg @@ -1 +1 @@ -Sublime Text icon \ No newline at end of file +Sublime Text \ No newline at end of file diff --git a/icons/substack.svg b/icons/substack.svg index b5209ad5..117bf5cf 100644 --- a/icons/substack.svg +++ b/icons/substack.svg @@ -1 +1 @@ -Substack icon \ No newline at end of file +Substack \ No newline at end of file diff --git a/icons/subversion.svg b/icons/subversion.svg index d0874d10..019a77de 100644 --- a/icons/subversion.svg +++ b/icons/subversion.svg @@ -1 +1 @@ -Subversion icon \ No newline at end of file +Subversion \ No newline at end of file diff --git a/icons/suckless.svg b/icons/suckless.svg index 6ceddf83..4c8d50bf 100644 --- a/icons/suckless.svg +++ b/icons/suckless.svg @@ -1 +1 @@ -suckless icon +suckless \ No newline at end of file diff --git a/icons/sumologic.svg b/icons/sumologic.svg index 974b0eaa..a0b04f1a 100644 --- a/icons/sumologic.svg +++ b/icons/sumologic.svg @@ -1 +1 @@ -Sumo Logic icon \ No newline at end of file +Sumo Logic \ No newline at end of file diff --git a/icons/supabase.svg b/icons/supabase.svg index cbee3f85..e986ff16 100644 --- a/icons/supabase.svg +++ b/icons/supabase.svg @@ -1 +1 @@ -Supabase icon \ No newline at end of file +Supabase \ No newline at end of file diff --git a/icons/superuser.svg b/icons/superuser.svg index 0f6cfad6..f3294325 100644 --- a/icons/superuser.svg +++ b/icons/superuser.svg @@ -1 +1 @@ -Super User icon \ No newline at end of file +Super User \ No newline at end of file diff --git a/icons/surveymonkey.svg b/icons/surveymonkey.svg index 71d6ae66..49b56411 100644 --- a/icons/surveymonkey.svg +++ b/icons/surveymonkey.svg @@ -1 +1 @@ -SurveyMonkey icon \ No newline at end of file +SurveyMonkey \ No newline at end of file diff --git a/icons/suse.svg b/icons/suse.svg index 32750c66..a4e474a1 100644 --- a/icons/suse.svg +++ b/icons/suse.svg @@ -1 +1 @@ -SUSE icon \ No newline at end of file +SUSE \ No newline at end of file diff --git a/icons/suzuki.svg b/icons/suzuki.svg index afe927a8..ec495157 100644 --- a/icons/suzuki.svg +++ b/icons/suzuki.svg @@ -1 +1 @@ -Suzuki icon \ No newline at end of file +Suzuki \ No newline at end of file diff --git a/icons/svelte.svg b/icons/svelte.svg index 8955f5c2..f6c55e8a 100644 --- a/icons/svelte.svg +++ b/icons/svelte.svg @@ -1 +1 @@ -Svelte icon \ No newline at end of file +Svelte \ No newline at end of file diff --git a/icons/svg.svg b/icons/svg.svg index 7fe4377d..1e3fa08c 100644 --- a/icons/svg.svg +++ b/icons/svg.svg @@ -1 +1 @@ -SVG icon \ No newline at end of file +SVG \ No newline at end of file diff --git a/icons/svgo.svg b/icons/svgo.svg index 1fae4331..919fb9a7 100644 --- a/icons/svgo.svg +++ b/icons/svgo.svg @@ -1 +1 @@ -SVGO icon \ No newline at end of file +SVGO \ No newline at end of file diff --git a/icons/swagger.svg b/icons/swagger.svg index 97acf09b..8f831af5 100644 --- a/icons/swagger.svg +++ b/icons/swagger.svg @@ -1 +1 @@ -Swagger icon \ No newline at end of file +Swagger \ No newline at end of file diff --git a/icons/swarm.svg b/icons/swarm.svg index 39708da3..89be4406 100644 --- a/icons/swarm.svg +++ b/icons/swarm.svg @@ -1 +1 @@ -Swarm icon \ No newline at end of file +Swarm \ No newline at end of file diff --git a/icons/swift.svg b/icons/swift.svg index 2e3703fa..60b4ac57 100644 --- a/icons/swift.svg +++ b/icons/swift.svg @@ -1 +1 @@ -Swift icon \ No newline at end of file +Swift \ No newline at end of file diff --git a/icons/swiggy.svg b/icons/swiggy.svg index 8d68ceb1..1938e48a 100644 --- a/icons/swiggy.svg +++ b/icons/swiggy.svg @@ -1 +1 @@ -Swiggy icon \ No newline at end of file +Swiggy \ No newline at end of file diff --git a/icons/swiper.svg b/icons/swiper.svg index fe167a4a..10d9af38 100644 --- a/icons/swiper.svg +++ b/icons/swiper.svg @@ -1 +1 @@ -Swiper icon \ No newline at end of file +Swiper \ No newline at end of file diff --git a/icons/symantec.svg b/icons/symantec.svg index deafa341..79f17f0c 100644 --- a/icons/symantec.svg +++ b/icons/symantec.svg @@ -1 +1 @@ -Symantec icon \ No newline at end of file +Symantec \ No newline at end of file diff --git a/icons/symfony.svg b/icons/symfony.svg index a3995a56..05cb4cb8 100644 --- a/icons/symfony.svg +++ b/icons/symfony.svg @@ -1 +1 @@ -Symfony icon \ No newline at end of file +Symfony \ No newline at end of file diff --git a/icons/symphony.svg b/icons/symphony.svg index 6276ea07..ec2caa59 100644 --- a/icons/symphony.svg +++ b/icons/symphony.svg @@ -1 +1 @@ -Symphony icon \ No newline at end of file +Symphony \ No newline at end of file diff --git a/icons/sympy.svg b/icons/sympy.svg index 45b2eaf6..98a40ab6 100644 --- a/icons/sympy.svg +++ b/icons/sympy.svg @@ -1 +1 @@ -SymPy icon \ No newline at end of file +SymPy \ No newline at end of file diff --git a/icons/synology.svg b/icons/synology.svg index 3d8a53f5..dd2aa9af 100644 --- a/icons/synology.svg +++ b/icons/synology.svg @@ -1 +1 @@ -Synology icon \ No newline at end of file +Synology \ No newline at end of file diff --git a/icons/t-mobile.svg b/icons/t-mobile.svg index d6c86844..bd6b1f1d 100644 --- a/icons/t-mobile.svg +++ b/icons/t-mobile.svg @@ -1 +1 @@ -T-Mobile icon \ No newline at end of file +T-Mobile \ No newline at end of file diff --git a/icons/tableau.svg b/icons/tableau.svg index 6d902e67..0c24b37b 100644 --- a/icons/tableau.svg +++ b/icons/tableau.svg @@ -1 +1 @@ -Tableau icon \ No newline at end of file +Tableau \ No newline at end of file diff --git a/icons/tado.svg b/icons/tado.svg index e1ed5b02..f71561cf 100644 --- a/icons/tado.svg +++ b/icons/tado.svg @@ -1 +1 @@ -tado° icon \ No newline at end of file +tado° \ No newline at end of file diff --git a/icons/tails.svg b/icons/tails.svg index 5b389981..729a51dd 100644 --- a/icons/tails.svg +++ b/icons/tails.svg @@ -1 +1 @@ -Tails icon \ No newline at end of file +Tails \ No newline at end of file diff --git a/icons/tailwindcss.svg b/icons/tailwindcss.svg index 41e1ccc2..38b493fd 100644 --- a/icons/tailwindcss.svg +++ b/icons/tailwindcss.svg @@ -1 +1 @@ -Tailwind CSS icon \ No newline at end of file +Tailwind CSS \ No newline at end of file diff --git a/icons/talend.svg b/icons/talend.svg index df97508d..7b4b7b62 100644 --- a/icons/talend.svg +++ b/icons/talend.svg @@ -1 +1 @@ -Talend icon \ No newline at end of file +Talend \ No newline at end of file diff --git a/icons/tampermonkey.svg b/icons/tampermonkey.svg index 59b5ef72..05cc9498 100644 --- a/icons/tampermonkey.svg +++ b/icons/tampermonkey.svg @@ -1 +1 @@ -Tampermonkey icon \ No newline at end of file +Tampermonkey \ No newline at end of file diff --git a/icons/taobao.svg b/icons/taobao.svg index 3ede26b3..f35f4279 100644 --- a/icons/taobao.svg +++ b/icons/taobao.svg @@ -1 +1 @@ -Taobao icon \ No newline at end of file +Taobao \ No newline at end of file diff --git a/icons/tapas.svg b/icons/tapas.svg index 35728019..7c27574a 100644 --- a/icons/tapas.svg +++ b/icons/tapas.svg @@ -1 +1 @@ -Tapas icon \ No newline at end of file +Tapas \ No newline at end of file diff --git a/icons/tasmota.svg b/icons/tasmota.svg index 6a42ced8..80b4b7f3 100644 --- a/icons/tasmota.svg +++ b/icons/tasmota.svg @@ -1 +1 @@ -Tasmota icon \ No newline at end of file +Tasmota \ No newline at end of file diff --git a/icons/tata.svg b/icons/tata.svg index c099ca7c..28713514 100644 --- a/icons/tata.svg +++ b/icons/tata.svg @@ -1 +1 @@ -Tata icon +Tata \ No newline at end of file diff --git a/icons/taxbuzz.svg b/icons/taxbuzz.svg index 577a5cb1..37117a43 100644 --- a/icons/taxbuzz.svg +++ b/icons/taxbuzz.svg @@ -1 +1 @@ -TaxBuzz icon \ No newline at end of file +TaxBuzz \ No newline at end of file diff --git a/icons/teamcity.svg b/icons/teamcity.svg index 3aa0ebe6..7d8ac5e2 100644 --- a/icons/teamcity.svg +++ b/icons/teamcity.svg @@ -1 +1 @@ -TeamCity icon \ No newline at end of file +TeamCity \ No newline at end of file diff --git a/icons/teamspeak.svg b/icons/teamspeak.svg index c96a8142..f9e4ca10 100644 --- a/icons/teamspeak.svg +++ b/icons/teamspeak.svg @@ -1 +1 @@ -TeamSpeak icon \ No newline at end of file +TeamSpeak \ No newline at end of file diff --git a/icons/teamviewer.svg b/icons/teamviewer.svg index 0716db34..4388146f 100644 --- a/icons/teamviewer.svg +++ b/icons/teamviewer.svg @@ -1 +1 @@ -TeamViewer icon \ No newline at end of file +TeamViewer \ No newline at end of file diff --git a/icons/ted.svg b/icons/ted.svg index 764961ec..1634274b 100644 --- a/icons/ted.svg +++ b/icons/ted.svg @@ -1 +1 @@ -TED icon \ No newline at end of file +TED \ No newline at end of file diff --git a/icons/teespring.svg b/icons/teespring.svg index a141099b..a150a4be 100644 --- a/icons/teespring.svg +++ b/icons/teespring.svg @@ -1 +1 @@ -Teespring icon \ No newline at end of file +Teespring \ No newline at end of file diff --git a/icons/tekton.svg b/icons/tekton.svg index d5e217c1..4695572c 100644 --- a/icons/tekton.svg +++ b/icons/tekton.svg @@ -1 +1 @@ -Tekton icon \ No newline at end of file +Tekton \ No newline at end of file diff --git a/icons/tele5.svg b/icons/tele5.svg index 18142384..540b186b 100644 --- a/icons/tele5.svg +++ b/icons/tele5.svg @@ -1 +1 @@ -TELE5 icon \ No newline at end of file +TELE5 \ No newline at end of file diff --git a/icons/telegram.svg b/icons/telegram.svg index b6df9921..c46b0ed7 100644 --- a/icons/telegram.svg +++ b/icons/telegram.svg @@ -1 +1 @@ -Telegram icon \ No newline at end of file +Telegram \ No newline at end of file diff --git a/icons/telegraph.svg b/icons/telegraph.svg index 77b21f0d..116d1ad6 100644 --- a/icons/telegraph.svg +++ b/icons/telegraph.svg @@ -1 +1 @@ -Telegraph icon \ No newline at end of file +Telegraph \ No newline at end of file diff --git a/icons/tencentqq.svg b/icons/tencentqq.svg index db1de521..b80e052f 100644 --- a/icons/tencentqq.svg +++ b/icons/tencentqq.svg @@ -1 +1 @@ -Tencent QQ icon \ No newline at end of file +Tencent QQ \ No newline at end of file diff --git a/icons/tensorflow.svg b/icons/tensorflow.svg index 9a47cc8f..9b8df1b9 100644 --- a/icons/tensorflow.svg +++ b/icons/tensorflow.svg @@ -1 +1 @@ -TensorFlow icon \ No newline at end of file +TensorFlow \ No newline at end of file diff --git a/icons/teradata.svg b/icons/teradata.svg index ebf3f42c..70fceb38 100644 --- a/icons/teradata.svg +++ b/icons/teradata.svg @@ -1 +1 @@ -Teradata icon +Teradata \ No newline at end of file diff --git a/icons/teratail.svg b/icons/teratail.svg index 667a18a3..3d0f8924 100644 --- a/icons/teratail.svg +++ b/icons/teratail.svg @@ -1 +1 @@ -teratail icon \ No newline at end of file +teratail \ No newline at end of file diff --git a/icons/terraform.svg b/icons/terraform.svg index cefa260b..7aafae13 100644 --- a/icons/terraform.svg +++ b/icons/terraform.svg @@ -1 +1 @@ -Terraform icon \ No newline at end of file +Terraform \ No newline at end of file diff --git a/icons/tesla.svg b/icons/tesla.svg index 52a05846..77e66012 100644 --- a/icons/tesla.svg +++ b/icons/tesla.svg @@ -1 +1 @@ -Tesla icon \ No newline at end of file +Tesla \ No newline at end of file diff --git a/icons/testin.svg b/icons/testin.svg index 894ac09f..8ee49e36 100644 --- a/icons/testin.svg +++ b/icons/testin.svg @@ -1 +1 @@ -Testin icon \ No newline at end of file +Testin \ No newline at end of file diff --git a/icons/testinglibrary.svg b/icons/testinglibrary.svg index c543ff5b..45bf49c3 100644 --- a/icons/testinglibrary.svg +++ b/icons/testinglibrary.svg @@ -1 +1 @@ -Testing Library icon \ No newline at end of file +Testing Library \ No newline at end of file diff --git a/icons/textpattern.svg b/icons/textpattern.svg index 3411873b..3cc712bb 100644 --- a/icons/textpattern.svg +++ b/icons/textpattern.svg @@ -1 +1 @@ -Textpattern icon \ No newline at end of file +Textpattern \ No newline at end of file diff --git a/icons/theconversation.svg b/icons/theconversation.svg index e729cda1..efb9d3a2 100644 --- a/icons/theconversation.svg +++ b/icons/theconversation.svg @@ -1 +1 @@ -The Conversation icon \ No newline at end of file +The Conversation \ No newline at end of file diff --git a/icons/theirishtimes.svg b/icons/theirishtimes.svg index 65fa4408..727a39b9 100644 --- a/icons/theirishtimes.svg +++ b/icons/theirishtimes.svg @@ -1 +1 @@ -The Irish Times icon \ No newline at end of file +The Irish Times \ No newline at end of file diff --git a/icons/themighty.svg b/icons/themighty.svg index beeef19f..641bef3a 100644 --- a/icons/themighty.svg +++ b/icons/themighty.svg @@ -1 +1 @@ -The Mighty icon \ No newline at end of file +The Mighty \ No newline at end of file diff --git a/icons/themodelsresource.svg b/icons/themodelsresource.svg index ebffac11..7231b5f0 100644 --- a/icons/themodelsresource.svg +++ b/icons/themodelsresource.svg @@ -1 +1 @@ -The Models Resource icon \ No newline at end of file +The Models Resource \ No newline at end of file diff --git a/icons/themoviedatabase.svg b/icons/themoviedatabase.svg index 6de2fbcd..a51ecd6f 100644 --- a/icons/themoviedatabase.svg +++ b/icons/themoviedatabase.svg @@ -1 +1 @@ -The Movie Database icon \ No newline at end of file +The Movie Database \ No newline at end of file diff --git a/icons/theregister.svg b/icons/theregister.svg index 30f52db2..34138251 100644 --- a/icons/theregister.svg +++ b/icons/theregister.svg @@ -1 +1 @@ -The Register icon \ No newline at end of file +The Register \ No newline at end of file diff --git a/icons/thesoundsresource.svg b/icons/thesoundsresource.svg index 50442278..17fd2172 100644 --- a/icons/thesoundsresource.svg +++ b/icons/thesoundsresource.svg @@ -1 +1 @@ -The Sounds Resource icon \ No newline at end of file +The Sounds Resource \ No newline at end of file diff --git a/icons/thespritersresource.svg b/icons/thespritersresource.svg index ccd7c2db..9bb2ee66 100644 --- a/icons/thespritersresource.svg +++ b/icons/thespritersresource.svg @@ -1 +1 @@ -The Spriters Resource icon \ No newline at end of file +The Spriters Resource \ No newline at end of file diff --git a/icons/thewashingtonpost.svg b/icons/thewashingtonpost.svg index 415a11c1..496a18b6 100644 --- a/icons/thewashingtonpost.svg +++ b/icons/thewashingtonpost.svg @@ -1 +1 @@ -The Washington Post icon \ No newline at end of file +The Washington Post \ No newline at end of file diff --git a/icons/thingiverse.svg b/icons/thingiverse.svg index adf80d85..60af4a1f 100644 --- a/icons/thingiverse.svg +++ b/icons/thingiverse.svg @@ -1 +1 @@ -Thingiverse icon \ No newline at end of file +Thingiverse \ No newline at end of file diff --git a/icons/thinkpad.svg b/icons/thinkpad.svg index 8c3a53f9..7660bfb8 100644 --- a/icons/thinkpad.svg +++ b/icons/thinkpad.svg @@ -1 +1 @@ -ThinkPad icon \ No newline at end of file +ThinkPad \ No newline at end of file diff --git a/icons/three-dot-js.svg b/icons/three-dot-js.svg index e5ab636d..a7f18290 100644 --- a/icons/three-dot-js.svg +++ b/icons/three-dot-js.svg @@ -1 +1 @@ -Three.js icon \ No newline at end of file +Three.js \ No newline at end of file diff --git a/icons/threema.svg b/icons/threema.svg index 6446efcb..f39652ca 100644 --- a/icons/threema.svg +++ b/icons/threema.svg @@ -1 +1 @@ -Threema icon \ No newline at end of file +Threema \ No newline at end of file diff --git a/icons/thumbtack.svg b/icons/thumbtack.svg index 448ceb21..3b0eb080 100644 --- a/icons/thumbtack.svg +++ b/icons/thumbtack.svg @@ -1 +1 @@ -Thumbtack icon \ No newline at end of file +Thumbtack \ No newline at end of file diff --git a/icons/thunderbird.svg b/icons/thunderbird.svg index 8a20c447..6ad95a53 100644 --- a/icons/thunderbird.svg +++ b/icons/thunderbird.svg @@ -1 +1 @@ -Thunderbird icon \ No newline at end of file +Thunderbird \ No newline at end of file diff --git a/icons/thymeleaf.svg b/icons/thymeleaf.svg index a14fbaa0..fe18b610 100644 --- a/icons/thymeleaf.svg +++ b/icons/thymeleaf.svg @@ -1 +1 @@ -Thymeleaf icon \ No newline at end of file +Thymeleaf \ No newline at end of file diff --git a/icons/ticketmaster.svg b/icons/ticketmaster.svg index 38a93a94..529f349c 100644 --- a/icons/ticketmaster.svg +++ b/icons/ticketmaster.svg @@ -1 +1 @@ -Ticketmaster icon \ No newline at end of file +Ticketmaster \ No newline at end of file diff --git a/icons/tidal.svg b/icons/tidal.svg index c73fb89d..65623bb9 100644 --- a/icons/tidal.svg +++ b/icons/tidal.svg @@ -1 +1 @@ -Tidal icon \ No newline at end of file +Tidal \ No newline at end of file diff --git a/icons/tide.svg b/icons/tide.svg index 2182d2f0..8cc817ed 100644 --- a/icons/tide.svg +++ b/icons/tide.svg @@ -1 +1 @@ -Tide icon +Tide \ No newline at end of file diff --git a/icons/tietoevry.svg b/icons/tietoevry.svg index 136df74c..18bfe658 100644 --- a/icons/tietoevry.svg +++ b/icons/tietoevry.svg @@ -1 +1 @@ -TietoEVRY icon \ No newline at end of file +TietoEVRY \ No newline at end of file diff --git a/icons/tiktok.svg b/icons/tiktok.svg index 31af892e..57ce3ae5 100644 --- a/icons/tiktok.svg +++ b/icons/tiktok.svg @@ -1 +1 @@ -TikTok icon \ No newline at end of file +TikTok \ No newline at end of file diff --git a/icons/tile.svg b/icons/tile.svg index eaf36ece..1fcf8dc6 100644 --- a/icons/tile.svg +++ b/icons/tile.svg @@ -1 +1 @@ -Tile icon \ No newline at end of file +Tile \ No newline at end of file diff --git a/icons/timescale.svg b/icons/timescale.svg index 3b4f8718..b8e2234d 100644 --- a/icons/timescale.svg +++ b/icons/timescale.svg @@ -1 +1 @@ -Timescale icon \ No newline at end of file +Timescale \ No newline at end of file diff --git a/icons/tinder.svg b/icons/tinder.svg index 133fd01d..193bdf09 100644 --- a/icons/tinder.svg +++ b/icons/tinder.svg @@ -1 +1 @@ -Tinder icon \ No newline at end of file +Tinder \ No newline at end of file diff --git a/icons/tinyletter.svg b/icons/tinyletter.svg index 92cbfe9f..564ef6eb 100644 --- a/icons/tinyletter.svg +++ b/icons/tinyletter.svg @@ -1 +1 @@ -TinyLetter icon \ No newline at end of file +TinyLetter \ No newline at end of file diff --git a/icons/tmux.svg b/icons/tmux.svg index debbf46d..34b2ea1b 100644 --- a/icons/tmux.svg +++ b/icons/tmux.svg @@ -1 +1 @@ -tmux icon \ No newline at end of file +tmux \ No newline at end of file diff --git a/icons/todoist.svg b/icons/todoist.svg index 7e6070c5..8b53ff6c 100644 --- a/icons/todoist.svg +++ b/icons/todoist.svg @@ -1 +1 @@ -Todoist icon \ No newline at end of file +Todoist \ No newline at end of file diff --git a/icons/toggl.svg b/icons/toggl.svg index 065ea577..af37ab00 100644 --- a/icons/toggl.svg +++ b/icons/toggl.svg @@ -1 +1 @@ -Toggl icon \ No newline at end of file +Toggl \ No newline at end of file diff --git a/icons/tokyometro.svg b/icons/tokyometro.svg index 0c2506f8..d0e1733e 100644 --- a/icons/tokyometro.svg +++ b/icons/tokyometro.svg @@ -1 +1 @@ -Tokyo Metro icon \ No newline at end of file +Tokyo Metro \ No newline at end of file diff --git a/icons/tomorrowland.svg b/icons/tomorrowland.svg index 513c94cd..db0890f2 100644 --- a/icons/tomorrowland.svg +++ b/icons/tomorrowland.svg @@ -1 +1 @@ -Tomorrowland icon +Tomorrowland \ No newline at end of file diff --git a/icons/topcoder.svg b/icons/topcoder.svg index f4125bd2..93862f26 100644 --- a/icons/topcoder.svg +++ b/icons/topcoder.svg @@ -1 +1 @@ -Topcoder icon \ No newline at end of file +Topcoder \ No newline at end of file diff --git a/icons/toptal.svg b/icons/toptal.svg index 778a1997..edb6eb1e 100644 --- a/icons/toptal.svg +++ b/icons/toptal.svg @@ -1 +1 @@ -Toptal icon \ No newline at end of file +Toptal \ No newline at end of file diff --git a/icons/torbrowser.svg b/icons/torbrowser.svg index 05e299c0..1e4e810d 100644 --- a/icons/torbrowser.svg +++ b/icons/torbrowser.svg @@ -1 +1 @@ -Tor Browser icon \ No newline at end of file +Tor Browser \ No newline at end of file diff --git a/icons/torproject.svg b/icons/torproject.svg index 637b14df..2af1961e 100644 --- a/icons/torproject.svg +++ b/icons/torproject.svg @@ -1 +1 @@ -Tor Project icon \ No newline at end of file +Tor Project \ No newline at end of file diff --git a/icons/toshiba.svg b/icons/toshiba.svg index 5d214528..23304c21 100644 --- a/icons/toshiba.svg +++ b/icons/toshiba.svg @@ -1 +1 @@ -Toshiba icon \ No newline at end of file +Toshiba \ No newline at end of file diff --git a/icons/toyota.svg b/icons/toyota.svg index 9622f38a..3e9381d5 100644 --- a/icons/toyota.svg +++ b/icons/toyota.svg @@ -1 +1 @@ -Toyota icon \ No newline at end of file +Toyota \ No newline at end of file diff --git a/icons/tp-link.svg b/icons/tp-link.svg index d2633a79..b760ca37 100644 --- a/icons/tp-link.svg +++ b/icons/tp-link.svg @@ -1 +1 @@ -TP-Link icon \ No newline at end of file +TP-Link \ No newline at end of file diff --git a/icons/tqdm.svg b/icons/tqdm.svg index 2f9dff7d..752b0be5 100644 --- a/icons/tqdm.svg +++ b/icons/tqdm.svg @@ -1 +1 @@ -tqdm icon \ No newline at end of file +tqdm \ No newline at end of file diff --git a/icons/trainerroad.svg b/icons/trainerroad.svg index 93d05b97..bec451b1 100644 --- a/icons/trainerroad.svg +++ b/icons/trainerroad.svg @@ -1 +1 @@ -TrainerRoad icon \ No newline at end of file +TrainerRoad \ No newline at end of file diff --git a/icons/trakt.svg b/icons/trakt.svg index 1aa2da2c..90f807f2 100644 --- a/icons/trakt.svg +++ b/icons/trakt.svg @@ -1 +1 @@ -Trakt icon \ No newline at end of file +Trakt \ No newline at end of file diff --git a/icons/transferwise.svg b/icons/transferwise.svg index 0fc3cd32..03babcef 100644 --- a/icons/transferwise.svg +++ b/icons/transferwise.svg @@ -1 +1 @@ -TransferWise icon \ No newline at end of file +TransferWise \ No newline at end of file diff --git a/icons/transportforireland.svg b/icons/transportforireland.svg index 9be5f9a0..138611ca 100644 --- a/icons/transportforireland.svg +++ b/icons/transportforireland.svg @@ -1 +1 @@ -Transport for Ireland icon +Transport for Ireland \ No newline at end of file diff --git a/icons/transportforlondon.svg b/icons/transportforlondon.svg index c1b5e809..a1bf0796 100644 --- a/icons/transportforlondon.svg +++ b/icons/transportforlondon.svg @@ -1 +1 @@ -Transport for London icon \ No newline at end of file +Transport for London \ No newline at end of file diff --git a/icons/travisci.svg b/icons/travisci.svg index 88d3238e..c12bae8e 100644 --- a/icons/travisci.svg +++ b/icons/travisci.svg @@ -1 +1 @@ -Travis CI icon \ No newline at end of file +Travis CI \ No newline at end of file diff --git a/icons/treehouse.svg b/icons/treehouse.svg index 0994f5c4..3ea5ef76 100644 --- a/icons/treehouse.svg +++ b/icons/treehouse.svg @@ -1 +1 @@ -Treehouse icon \ No newline at end of file +Treehouse \ No newline at end of file diff --git a/icons/trello.svg b/icons/trello.svg index 7938c1c1..aa0121e3 100644 --- a/icons/trello.svg +++ b/icons/trello.svg @@ -1 +1 @@ -Trello icon \ No newline at end of file +Trello \ No newline at end of file diff --git a/icons/trendmicro.svg b/icons/trendmicro.svg index 59aef0da..40402def 100644 --- a/icons/trendmicro.svg +++ b/icons/trendmicro.svg @@ -1 +1 @@ -Trend Micro icon +Trend Micro \ No newline at end of file diff --git a/icons/treyarch.svg b/icons/treyarch.svg index 936eae1c..7e7eb66b 100644 --- a/icons/treyarch.svg +++ b/icons/treyarch.svg @@ -1 +1 @@ -Treyarch icon \ No newline at end of file +Treyarch \ No newline at end of file diff --git a/icons/triller.svg b/icons/triller.svg index 6c0f90b7..14b2a5c9 100644 --- a/icons/triller.svg +++ b/icons/triller.svg @@ -1 +1 @@ -Triller icon \ No newline at end of file +Triller \ No newline at end of file diff --git a/icons/trino.svg b/icons/trino.svg index 9cf57efe..e960ed22 100644 --- a/icons/trino.svg +++ b/icons/trino.svg @@ -1 +1 @@ -Trino icon \ No newline at end of file +Trino \ No newline at end of file diff --git a/icons/trip-dot-com.svg b/icons/trip-dot-com.svg index 790ce79e..41fa2521 100644 --- a/icons/trip-dot-com.svg +++ b/icons/trip-dot-com.svg @@ -1 +1 @@ -Trip.com icon \ No newline at end of file +Trip.com \ No newline at end of file diff --git a/icons/tripadvisor.svg b/icons/tripadvisor.svg index 62ea1be1..e30a07b4 100644 --- a/icons/tripadvisor.svg +++ b/icons/tripadvisor.svg @@ -1 +1 @@ -Tripadvisor icon +Tripadvisor \ No newline at end of file diff --git a/icons/trove.svg b/icons/trove.svg index 26d3477d..12378412 100644 --- a/icons/trove.svg +++ b/icons/trove.svg @@ -1 +1 @@ -Trove icon \ No newline at end of file +Trove \ No newline at end of file diff --git a/icons/truenas.svg b/icons/truenas.svg index f4bb42c8..603b8368 100644 --- a/icons/truenas.svg +++ b/icons/truenas.svg @@ -1 +1 @@ -TrueNAS icon \ No newline at end of file +TrueNAS \ No newline at end of file diff --git a/icons/trulia.svg b/icons/trulia.svg index a85db1fa..b9be9d89 100644 --- a/icons/trulia.svg +++ b/icons/trulia.svg @@ -1 +1 @@ -Trulia icon \ No newline at end of file +Trulia \ No newline at end of file diff --git a/icons/trustedshops.svg b/icons/trustedshops.svg index b3d1e09a..e2e69364 100644 --- a/icons/trustedshops.svg +++ b/icons/trustedshops.svg @@ -1 +1 @@ -Trusted Shops icon \ No newline at end of file +Trusted Shops \ No newline at end of file diff --git a/icons/trustpilot.svg b/icons/trustpilot.svg index 935536f6..89619a69 100644 --- a/icons/trustpilot.svg +++ b/icons/trustpilot.svg @@ -1 +1 @@ -Trustpilot icon \ No newline at end of file +Trustpilot \ No newline at end of file diff --git a/icons/tryhackme.svg b/icons/tryhackme.svg index bc8c500b..bd6b08ef 100644 --- a/icons/tryhackme.svg +++ b/icons/tryhackme.svg @@ -1 +1 @@ -TryHackMe icon \ No newline at end of file +TryHackMe \ No newline at end of file diff --git a/icons/tryitonline.svg b/icons/tryitonline.svg index 2101c676..d08b3e54 100644 --- a/icons/tryitonline.svg +++ b/icons/tryitonline.svg @@ -1 +1 @@ -Try It Online icon \ No newline at end of file +Try It Online \ No newline at end of file diff --git a/icons/ts-node.svg b/icons/ts-node.svg index afa3a043..5cc1aadb 100644 --- a/icons/ts-node.svg +++ b/icons/ts-node.svg @@ -1 +1 @@ -ts-node icon \ No newline at end of file +ts-node \ No newline at end of file diff --git a/icons/tui.svg b/icons/tui.svg index 06e239a8..4476a53d 100644 --- a/icons/tui.svg +++ b/icons/tui.svg @@ -1 +1 @@ -TUI icon \ No newline at end of file +TUI \ No newline at end of file diff --git a/icons/tumblr.svg b/icons/tumblr.svg index 46811dde..c6547f8a 100644 --- a/icons/tumblr.svg +++ b/icons/tumblr.svg @@ -1 +1 @@ -Tumblr icon \ No newline at end of file +Tumblr \ No newline at end of file diff --git a/icons/tunein.svg b/icons/tunein.svg index 30704696..6b74705e 100644 --- a/icons/tunein.svg +++ b/icons/tunein.svg @@ -1 +1 @@ -TuneIn icon \ No newline at end of file +TuneIn \ No newline at end of file diff --git a/icons/turbosquid.svg b/icons/turbosquid.svg index 3de61e94..7ea4cd89 100644 --- a/icons/turbosquid.svg +++ b/icons/turbosquid.svg @@ -1 +1 @@ -TurboSquid icon \ No newline at end of file +TurboSquid \ No newline at end of file diff --git a/icons/turkishairlines.svg b/icons/turkishairlines.svg index 67220493..54dda18d 100644 --- a/icons/turkishairlines.svg +++ b/icons/turkishairlines.svg @@ -1 +1 @@ -Turkish Airlines icon \ No newline at end of file +Turkish Airlines \ No newline at end of file diff --git a/icons/tutanota.svg b/icons/tutanota.svg index 203f7e80..cf0ae286 100644 --- a/icons/tutanota.svg +++ b/icons/tutanota.svg @@ -1 +1 @@ -Tutanota icon \ No newline at end of file +Tutanota \ No newline at end of file diff --git a/icons/tvtime.svg b/icons/tvtime.svg index ee1c0449..87dbd17b 100644 --- a/icons/tvtime.svg +++ b/icons/tvtime.svg @@ -1 +1 @@ -TV Time icon \ No newline at end of file +TV Time \ No newline at end of file diff --git a/icons/twilio.svg b/icons/twilio.svg index 028d4d39..2b8f075d 100644 --- a/icons/twilio.svg +++ b/icons/twilio.svg @@ -1 +1 @@ -Twilio icon \ No newline at end of file +Twilio \ No newline at end of file diff --git a/icons/twitch.svg b/icons/twitch.svg index b4ff31f2..8aaa4a9a 100644 --- a/icons/twitch.svg +++ b/icons/twitch.svg @@ -1 +1 @@ -Twitch icon +Twitch \ No newline at end of file diff --git a/icons/twitter.svg b/icons/twitter.svg index 9950f9f0..45bd20c1 100644 --- a/icons/twitter.svg +++ b/icons/twitter.svg @@ -1 +1 @@ -Twitter icon \ No newline at end of file +Twitter \ No newline at end of file diff --git a/icons/twoo.svg b/icons/twoo.svg index 6dded592..0840bf6a 100644 --- a/icons/twoo.svg +++ b/icons/twoo.svg @@ -1 +1 @@ -Twoo icon \ No newline at end of file +Twoo \ No newline at end of file diff --git a/icons/typescript.svg b/icons/typescript.svg index c03597ea..e8beb740 100644 --- a/icons/typescript.svg +++ b/icons/typescript.svg @@ -1 +1 @@ -TypeScript icon \ No newline at end of file +TypeScript \ No newline at end of file diff --git a/icons/typo3.svg b/icons/typo3.svg index 1addd98f..280bf6b3 100644 --- a/icons/typo3.svg +++ b/icons/typo3.svg @@ -1 +1 @@ -TYPO3 icon \ No newline at end of file +TYPO3 \ No newline at end of file diff --git a/icons/uber.svg b/icons/uber.svg index 9a5a0a1b..08e1bbb2 100644 --- a/icons/uber.svg +++ b/icons/uber.svg @@ -1 +1 @@ -Uber icon \ No newline at end of file +Uber \ No newline at end of file diff --git a/icons/ubereats.svg b/icons/ubereats.svg index 23463020..c8f60fe0 100644 --- a/icons/ubereats.svg +++ b/icons/ubereats.svg @@ -1 +1 @@ -Uber Eats icon \ No newline at end of file +Uber Eats \ No newline at end of file diff --git a/icons/ubiquiti.svg b/icons/ubiquiti.svg index b673a7d4..89817246 100644 --- a/icons/ubiquiti.svg +++ b/icons/ubiquiti.svg @@ -1 +1 @@ -Ubiquiti icon +Ubiquiti \ No newline at end of file diff --git a/icons/ubisoft.svg b/icons/ubisoft.svg index 945bebd6..c1c69620 100644 --- a/icons/ubisoft.svg +++ b/icons/ubisoft.svg @@ -1 +1 @@ -Ubisoft icon \ No newline at end of file +Ubisoft \ No newline at end of file diff --git a/icons/ublockorigin.svg b/icons/ublockorigin.svg index 2f4e79d4..e4470ba5 100644 --- a/icons/ublockorigin.svg +++ b/icons/ublockorigin.svg @@ -1 +1 @@ -uBlock Origin icon \ No newline at end of file +uBlock Origin \ No newline at end of file diff --git a/icons/ubuntu.svg b/icons/ubuntu.svg index a7092e60..a2917063 100644 --- a/icons/ubuntu.svg +++ b/icons/ubuntu.svg @@ -1 +1 @@ -Ubuntu icon \ No newline at end of file +Ubuntu \ No newline at end of file diff --git a/icons/udacity.svg b/icons/udacity.svg index b885b3cb..d1c2f1fe 100644 --- a/icons/udacity.svg +++ b/icons/udacity.svg @@ -1 +1 @@ -Udacity icon \ No newline at end of file +Udacity \ No newline at end of file diff --git a/icons/udemy.svg b/icons/udemy.svg index 7ee7d75a..36515918 100644 --- a/icons/udemy.svg +++ b/icons/udemy.svg @@ -1 +1 @@ -Udemy icon \ No newline at end of file +Udemy \ No newline at end of file diff --git a/icons/ufc.svg b/icons/ufc.svg index eae1fc9e..639f5adf 100644 --- a/icons/ufc.svg +++ b/icons/ufc.svg @@ -1 +1 @@ -UFC icon \ No newline at end of file +UFC \ No newline at end of file diff --git a/icons/uikit.svg b/icons/uikit.svg index 3122d678..2020085e 100755 --- a/icons/uikit.svg +++ b/icons/uikit.svg @@ -1 +1 @@ -UIkit icon \ No newline at end of file +UIkit \ No newline at end of file diff --git a/icons/ulule.svg b/icons/ulule.svg index 1809e7cc..5cc0a51d 100644 --- a/icons/ulule.svg +++ b/icons/ulule.svg @@ -1 +1 @@ -Ulule icon \ No newline at end of file +Ulule \ No newline at end of file diff --git a/icons/umbraco.svg b/icons/umbraco.svg index b5265669..582c432a 100644 --- a/icons/umbraco.svg +++ b/icons/umbraco.svg @@ -1 +1 @@ -Umbraco icon \ No newline at end of file +Umbraco \ No newline at end of file diff --git a/icons/unacademy.svg b/icons/unacademy.svg index 4715f8e8..e5152b6a 100644 --- a/icons/unacademy.svg +++ b/icons/unacademy.svg @@ -1 +1 @@ -Unacademy icon \ No newline at end of file +Unacademy \ No newline at end of file diff --git a/icons/undertale.svg b/icons/undertale.svg index 2fe31e7b..a1bb38b5 100644 --- a/icons/undertale.svg +++ b/icons/undertale.svg @@ -1 +1 @@ -Undertale icon \ No newline at end of file +Undertale \ No newline at end of file diff --git a/icons/unicode.svg b/icons/unicode.svg index 8584008e..ef33b412 100644 --- a/icons/unicode.svg +++ b/icons/unicode.svg @@ -1 +1 @@ -Unicode icon +Unicode \ No newline at end of file diff --git a/icons/unilever.svg b/icons/unilever.svg index 9ca7c705..baabb38b 100644 --- a/icons/unilever.svg +++ b/icons/unilever.svg @@ -1 +1 @@ -Unilever icon \ No newline at end of file +Unilever \ No newline at end of file diff --git a/icons/unitedairlines.svg b/icons/unitedairlines.svg index 9319bc62..2958b7ce 100644 --- a/icons/unitedairlines.svg +++ b/icons/unitedairlines.svg @@ -1 +1 @@ -United Airlines icon \ No newline at end of file +United Airlines \ No newline at end of file diff --git a/icons/unity.svg b/icons/unity.svg index 36624772..135d234f 100644 --- a/icons/unity.svg +++ b/icons/unity.svg @@ -1 +1 @@ -Unity icon \ No newline at end of file +Unity \ No newline at end of file diff --git a/icons/unraid.svg b/icons/unraid.svg index c384ee26..98609b05 100644 --- a/icons/unraid.svg +++ b/icons/unraid.svg @@ -1 +1 @@ -Unraid icon \ No newline at end of file +Unraid \ No newline at end of file diff --git a/icons/unrealengine.svg b/icons/unrealengine.svg index 7e23f2ff..db261c26 100644 --- a/icons/unrealengine.svg +++ b/icons/unrealengine.svg @@ -1 +1 @@ -Unreal Engine icon \ No newline at end of file +Unreal Engine \ No newline at end of file diff --git a/icons/unsplash.svg b/icons/unsplash.svg index c0c9e552..bea663f5 100644 --- a/icons/unsplash.svg +++ b/icons/unsplash.svg @@ -1 +1 @@ -Unsplash icon \ No newline at end of file +Unsplash \ No newline at end of file diff --git a/icons/untangle.svg b/icons/untangle.svg index ec7537ef..5cdc19b9 100644 --- a/icons/untangle.svg +++ b/icons/untangle.svg @@ -1 +1 @@ -Untangle icon +Untangle \ No newline at end of file diff --git a/icons/untappd.svg b/icons/untappd.svg index cccaee8f..8ce2c4f7 100644 --- a/icons/untappd.svg +++ b/icons/untappd.svg @@ -1 +1 @@ -Untappd icon \ No newline at end of file +Untappd \ No newline at end of file diff --git a/icons/upcloud.svg b/icons/upcloud.svg index faa47ad3..bae90b9f 100644 --- a/icons/upcloud.svg +++ b/icons/upcloud.svg @@ -1 +1 @@ -UpCloud icon \ No newline at end of file +UpCloud \ No newline at end of file diff --git a/icons/uplabs.svg b/icons/uplabs.svg index 87596164..cd7881ed 100644 --- a/icons/uplabs.svg +++ b/icons/uplabs.svg @@ -1 +1 @@ -UpLabs icon \ No newline at end of file +UpLabs \ No newline at end of file diff --git a/icons/uploaded.svg b/icons/uploaded.svg index b62084ee..7d64147e 100644 --- a/icons/uploaded.svg +++ b/icons/uploaded.svg @@ -1 +1 @@ -Uploaded icon \ No newline at end of file +Uploaded \ No newline at end of file diff --git a/icons/ups.svg b/icons/ups.svg index b1e6c649..91fc58f9 100644 --- a/icons/ups.svg +++ b/icons/ups.svg @@ -1 +1 @@ -UPS icon \ No newline at end of file +UPS \ No newline at end of file diff --git a/icons/upwork.svg b/icons/upwork.svg index 0ca6209d..5416f7d2 100644 --- a/icons/upwork.svg +++ b/icons/upwork.svg @@ -1 +1 @@ -Upwork icon \ No newline at end of file +Upwork \ No newline at end of file diff --git a/icons/usps.svg b/icons/usps.svg index 5c800793..bae93a51 100644 --- a/icons/usps.svg +++ b/icons/usps.svg @@ -1 +1 @@ -USPS icon \ No newline at end of file +USPS \ No newline at end of file diff --git a/icons/v.svg b/icons/v.svg index ace290c9..6fd0c5c0 100644 --- a/icons/v.svg +++ b/icons/v.svg @@ -1 +1 @@ -V icon \ No newline at end of file +V \ No newline at end of file diff --git a/icons/v8.svg b/icons/v8.svg index 36eef48d..1cd1b809 100644 --- a/icons/v8.svg +++ b/icons/v8.svg @@ -1 +1 @@ -V8 icon \ No newline at end of file +V8 \ No newline at end of file diff --git a/icons/vaadin.svg b/icons/vaadin.svg index f38600d8..28666bfc 100644 --- a/icons/vaadin.svg +++ b/icons/vaadin.svg @@ -1 +1 @@ -Vaadin icon \ No newline at end of file +Vaadin \ No newline at end of file diff --git a/icons/vagrant.svg b/icons/vagrant.svg index c0cf65ee..e596f901 100644 --- a/icons/vagrant.svg +++ b/icons/vagrant.svg @@ -1 +1 @@ -Vagrant icon \ No newline at end of file +Vagrant \ No newline at end of file diff --git a/icons/valve.svg b/icons/valve.svg index 3e86801c..b290c756 100644 --- a/icons/valve.svg +++ b/icons/valve.svg @@ -1 +1 @@ -Valve icon \ No newline at end of file +Valve \ No newline at end of file diff --git a/icons/vapor.svg b/icons/vapor.svg index 9e571bec..8f224cfb 100644 --- a/icons/vapor.svg +++ b/icons/vapor.svg @@ -1 +1 @@ -Vapor icon \ No newline at end of file +Vapor \ No newline at end of file diff --git a/icons/vault.svg b/icons/vault.svg index 476732ac..d5be8c74 100644 --- a/icons/vault.svg +++ b/icons/vault.svg @@ -1 +1 @@ -Vault icon \ No newline at end of file +Vault \ No newline at end of file diff --git a/icons/vauxhall.svg b/icons/vauxhall.svg index 04984d72..82147941 100644 --- a/icons/vauxhall.svg +++ b/icons/vauxhall.svg @@ -1 +1 @@ -Vauxhall icon \ No newline at end of file +Vauxhall \ No newline at end of file diff --git a/icons/vbulletin.svg b/icons/vbulletin.svg index 193fe3b5..b4aece94 100644 --- a/icons/vbulletin.svg +++ b/icons/vbulletin.svg @@ -1 +1 @@ -vBulletin icon \ No newline at end of file +vBulletin \ No newline at end of file diff --git a/icons/vectorlogozone.svg b/icons/vectorlogozone.svg index 7f6564d6..8cf91774 100644 --- a/icons/vectorlogozone.svg +++ b/icons/vectorlogozone.svg @@ -1 +1 @@ -Vector Logo Zone icon \ No newline at end of file +Vector Logo Zone \ No newline at end of file diff --git a/icons/vectorworks.svg b/icons/vectorworks.svg index 297cfcc1..106cd308 100644 --- a/icons/vectorworks.svg +++ b/icons/vectorworks.svg @@ -1 +1 @@ -Vectorworks icon +Vectorworks \ No newline at end of file diff --git a/icons/veeam.svg b/icons/veeam.svg index a5b470b4..bfff1e77 100644 --- a/icons/veeam.svg +++ b/icons/veeam.svg @@ -1 +1 @@ -Veeam icon \ No newline at end of file +Veeam \ No newline at end of file diff --git a/icons/veepee.svg b/icons/veepee.svg index d7ff425c..2892ba5e 100644 --- a/icons/veepee.svg +++ b/icons/veepee.svg @@ -1 +1 @@ -Veepee icon \ No newline at end of file +Veepee \ No newline at end of file diff --git a/icons/venmo.svg b/icons/venmo.svg index 8c8419c7..6cb8821f 100644 --- a/icons/venmo.svg +++ b/icons/venmo.svg @@ -1 +1 @@ -Venmo icon \ No newline at end of file +Venmo \ No newline at end of file diff --git a/icons/vercel.svg b/icons/vercel.svg index 60d5b52e..6cd3196a 100644 --- a/icons/vercel.svg +++ b/icons/vercel.svg @@ -1 +1 @@ -Vercel icon \ No newline at end of file +Vercel \ No newline at end of file diff --git a/icons/verdaccio.svg b/icons/verdaccio.svg index b621a731..52ca4dc9 100644 --- a/icons/verdaccio.svg +++ b/icons/verdaccio.svg @@ -1 +1 @@ -Verdaccio icon \ No newline at end of file +Verdaccio \ No newline at end of file diff --git a/icons/veritas.svg b/icons/veritas.svg index 5596e905..c55234a4 100644 --- a/icons/veritas.svg +++ b/icons/veritas.svg @@ -1 +1 @@ -Veritas icon +Veritas \ No newline at end of file diff --git a/icons/verizon.svg b/icons/verizon.svg index d007db50..b59a8241 100644 --- a/icons/verizon.svg +++ b/icons/verizon.svg @@ -1 +1 @@ -Verizon icon \ No newline at end of file +Verizon \ No newline at end of file diff --git a/icons/vfairs.svg b/icons/vfairs.svg index f7f6e040..9b09226a 100644 --- a/icons/vfairs.svg +++ b/icons/vfairs.svg @@ -1 +1 @@ -vFairs icon \ No newline at end of file +vFairs \ No newline at end of file diff --git a/icons/viadeo.svg b/icons/viadeo.svg index 70fbfa9f..7f663710 100644 --- a/icons/viadeo.svg +++ b/icons/viadeo.svg @@ -1 +1 @@ -Viadeo icon \ No newline at end of file +Viadeo \ No newline at end of file diff --git a/icons/viber.svg b/icons/viber.svg index 1de04764..dfb1eedc 100644 --- a/icons/viber.svg +++ b/icons/viber.svg @@ -1 +1 @@ -Viber icon \ No newline at end of file +Viber \ No newline at end of file diff --git a/icons/vim.svg b/icons/vim.svg index 1a08ed51..2155d714 100644 --- a/icons/vim.svg +++ b/icons/vim.svg @@ -1 +1 @@ -Vim icon \ No newline at end of file +Vim \ No newline at end of file diff --git a/icons/vimeo.svg b/icons/vimeo.svg index 13167c9b..cecbfccc 100644 --- a/icons/vimeo.svg +++ b/icons/vimeo.svg @@ -1 +1 @@ -Vimeo icon \ No newline at end of file +Vimeo \ No newline at end of file diff --git a/icons/vimeolivestream.svg b/icons/vimeolivestream.svg index 54741b86..2dbaa23e 100644 --- a/icons/vimeolivestream.svg +++ b/icons/vimeolivestream.svg @@ -1 +1 @@ -Vimeo Livestream icon \ No newline at end of file +Vimeo Livestream \ No newline at end of file diff --git a/icons/virtualbox.svg b/icons/virtualbox.svg index 9a359e77..23ab845d 100644 --- a/icons/virtualbox.svg +++ b/icons/virtualbox.svg @@ -1 +1 @@ -VirtualBox icon +VirtualBox \ No newline at end of file diff --git a/icons/virustotal.svg b/icons/virustotal.svg index 8ce696df..b1271ea0 100644 --- a/icons/virustotal.svg +++ b/icons/virustotal.svg @@ -1 +1 @@ -VirusTotal icon \ No newline at end of file +VirusTotal \ No newline at end of file diff --git a/icons/visa.svg b/icons/visa.svg index a58536e5..6a652706 100644 --- a/icons/visa.svg +++ b/icons/visa.svg @@ -1 +1 @@ -Visa icon \ No newline at end of file +Visa \ No newline at end of file diff --git a/icons/visualstudio.svg b/icons/visualstudio.svg index 529eb411..2bdbc2ce 100644 --- a/icons/visualstudio.svg +++ b/icons/visualstudio.svg @@ -1 +1 @@ -Visual Studio icon \ No newline at end of file +Visual Studio \ No newline at end of file diff --git a/icons/visualstudiocode.svg b/icons/visualstudiocode.svg index f091d172..51ed6bd9 100644 --- a/icons/visualstudiocode.svg +++ b/icons/visualstudiocode.svg @@ -1 +1 @@ -Visual Studio Code icon \ No newline at end of file +Visual Studio Code \ No newline at end of file diff --git a/icons/vite.svg b/icons/vite.svg index 12ac8d07..54ea8f98 100644 --- a/icons/vite.svg +++ b/icons/vite.svg @@ -1 +1 @@ -Vite icon \ No newline at end of file +Vite \ No newline at end of file diff --git a/icons/vivaldi.svg b/icons/vivaldi.svg index d459ce28..167e8ad6 100644 --- a/icons/vivaldi.svg +++ b/icons/vivaldi.svg @@ -1 +1 @@ -Vivaldi icon \ No newline at end of file +Vivaldi \ No newline at end of file diff --git a/icons/vivino.svg b/icons/vivino.svg index 1b2eea01..99bd77fc 100644 --- a/icons/vivino.svg +++ b/icons/vivino.svg @@ -1 +1 @@ -Vivino icon \ No newline at end of file +Vivino \ No newline at end of file diff --git a/icons/vk.svg b/icons/vk.svg index 7f0ad25d..5ebad73b 100644 --- a/icons/vk.svg +++ b/icons/vk.svg @@ -1 +1 @@ -VK icon \ No newline at end of file +VK \ No newline at end of file diff --git a/icons/vlcmediaplayer.svg b/icons/vlcmediaplayer.svg index 9a1b9020..a46f9dcf 100644 --- a/icons/vlcmediaplayer.svg +++ b/icons/vlcmediaplayer.svg @@ -1 +1 @@ -VLC media player icon \ No newline at end of file +VLC media player \ No newline at end of file diff --git a/icons/vmware.svg b/icons/vmware.svg index 07ee62b5..efc0a1a1 100644 --- a/icons/vmware.svg +++ b/icons/vmware.svg @@ -1 +1 @@ -VMware icon +VMware \ No newline at end of file diff --git a/icons/vodafone.svg b/icons/vodafone.svg index 693d2f1a..f882e2fe 100644 --- a/icons/vodafone.svg +++ b/icons/vodafone.svg @@ -1 +1 @@ -Vodafone icon +Vodafone \ No newline at end of file diff --git a/icons/volkswagen.svg b/icons/volkswagen.svg index 64006d71..0f3e6638 100644 --- a/icons/volkswagen.svg +++ b/icons/volkswagen.svg @@ -1 +1 @@ -Volkswagen icon +Volkswagen \ No newline at end of file diff --git a/icons/volvo.svg b/icons/volvo.svg index 10f06446..65d08206 100644 --- a/icons/volvo.svg +++ b/icons/volvo.svg @@ -1 +1 @@ -Volvo icon \ No newline at end of file +Volvo \ No newline at end of file diff --git a/icons/vonage.svg b/icons/vonage.svg index 1828ac2e..22ac95f2 100644 --- a/icons/vonage.svg +++ b/icons/vonage.svg @@ -1 +1 @@ -Vonage icon \ No newline at end of file +Vonage \ No newline at end of file diff --git a/icons/vox.svg b/icons/vox.svg index 1ba057f6..88654541 100644 --- a/icons/vox.svg +++ b/icons/vox.svg @@ -1 +1 @@ -VOX icon \ No newline at end of file +VOX \ No newline at end of file diff --git a/icons/vsco.svg b/icons/vsco.svg index 3107cf7a..49fdcfae 100644 --- a/icons/vsco.svg +++ b/icons/vsco.svg @@ -1 +1 @@ -VSCO icon \ No newline at end of file +VSCO \ No newline at end of file diff --git a/icons/vue-dot-js.svg b/icons/vue-dot-js.svg index 6604fd28..46110dc0 100644 --- a/icons/vue-dot-js.svg +++ b/icons/vue-dot-js.svg @@ -1 +1 @@ -Vue.js icon \ No newline at end of file +Vue.js \ No newline at end of file diff --git a/icons/vuetify.svg b/icons/vuetify.svg index a146dd5b..171e4c13 100644 --- a/icons/vuetify.svg +++ b/icons/vuetify.svg @@ -1 +1 @@ -Vuetify icon \ No newline at end of file +Vuetify \ No newline at end of file diff --git a/icons/vulkan.svg b/icons/vulkan.svg index d80756fd..007b012e 100644 --- a/icons/vulkan.svg +++ b/icons/vulkan.svg @@ -1 +1 @@ -Vulkan icon \ No newline at end of file +Vulkan \ No newline at end of file diff --git a/icons/vultr.svg b/icons/vultr.svg index acfa4556..3748088d 100644 --- a/icons/vultr.svg +++ b/icons/vultr.svg @@ -1 +1 @@ -Vultr icon \ No newline at end of file +Vultr \ No newline at end of file diff --git a/icons/w3c.svg b/icons/w3c.svg index 8fb231aa..66fe8a37 100644 --- a/icons/w3c.svg +++ b/icons/w3c.svg @@ -1 +1 @@ -W3C icon \ No newline at end of file +W3C \ No newline at end of file diff --git a/icons/wagtail.svg b/icons/wagtail.svg index 0124847f..fe611610 100644 --- a/icons/wagtail.svg +++ b/icons/wagtail.svg @@ -1 +1 @@ -Wagtail icon \ No newline at end of file +Wagtail \ No newline at end of file diff --git a/icons/wakatime.svg b/icons/wakatime.svg index 3baf3f61..aca27478 100644 --- a/icons/wakatime.svg +++ b/icons/wakatime.svg @@ -1 +1 @@ -WakaTime icon \ No newline at end of file +WakaTime \ No newline at end of file diff --git a/icons/walkman.svg b/icons/walkman.svg index 7e67048a..6741927c 100644 --- a/icons/walkman.svg +++ b/icons/walkman.svg @@ -1 +1 @@ -WALKMAN icon \ No newline at end of file +WALKMAN \ No newline at end of file diff --git a/icons/wappalyzer.svg b/icons/wappalyzer.svg index 6c63ca14..4358388d 100644 --- a/icons/wappalyzer.svg +++ b/icons/wappalyzer.svg @@ -1 +1 @@ -Wappalyzer icon \ No newline at end of file +Wappalyzer \ No newline at end of file diff --git a/icons/warnerbros-dot.svg b/icons/warnerbros-dot.svg index 668eb2cc..865c41ef 100644 --- a/icons/warnerbros-dot.svg +++ b/icons/warnerbros-dot.svg @@ -1 +1 @@ -Warner Bros. icon \ No newline at end of file +Warner Bros. \ No newline at end of file diff --git a/icons/wattpad.svg b/icons/wattpad.svg index cb0af487..51853c8c 100644 --- a/icons/wattpad.svg +++ b/icons/wattpad.svg @@ -1 +1 @@ -Wattpad icon \ No newline at end of file +Wattpad \ No newline at end of file diff --git a/icons/waze.svg b/icons/waze.svg index 644a5284..d4861136 100644 --- a/icons/waze.svg +++ b/icons/waze.svg @@ -1 +1 @@ -Waze icon \ No newline at end of file +Waze \ No newline at end of file diff --git a/icons/wearos.svg b/icons/wearos.svg index 9c4db74f..2887797c 100644 --- a/icons/wearos.svg +++ b/icons/wearos.svg @@ -1 +1 @@ -Wear OS icon +Wear OS \ No newline at end of file diff --git a/icons/weasyl.svg b/icons/weasyl.svg index 7fcb484a..2291bd6e 100644 --- a/icons/weasyl.svg +++ b/icons/weasyl.svg @@ -1 +1 @@ -Weasyl icon \ No newline at end of file +Weasyl \ No newline at end of file diff --git a/icons/webassembly.svg b/icons/webassembly.svg index f220d68a..9a9b3d9c 100644 --- a/icons/webassembly.svg +++ b/icons/webassembly.svg @@ -1 +1 @@ -WebAssembly icon \ No newline at end of file +WebAssembly \ No newline at end of file diff --git a/icons/webauthn.svg b/icons/webauthn.svg index e01f356e..c0e29c19 100644 --- a/icons/webauthn.svg +++ b/icons/webauthn.svg @@ -1 +1 @@ -WebAuthn icon \ No newline at end of file +WebAuthn \ No newline at end of file diff --git a/icons/webcomponents-dot-org.svg b/icons/webcomponents-dot-org.svg index 79d2b025..fad0f552 100644 --- a/icons/webcomponents-dot-org.svg +++ b/icons/webcomponents-dot-org.svg @@ -1 +1 @@ -webcomponents.org icon \ No newline at end of file +webcomponents.org \ No newline at end of file diff --git a/icons/webdriverio.svg b/icons/webdriverio.svg index e17f470a..9372ec11 100644 --- a/icons/webdriverio.svg +++ b/icons/webdriverio.svg @@ -1 +1 @@ -WebdriverIO icon \ No newline at end of file +WebdriverIO \ No newline at end of file diff --git a/icons/webflow.svg b/icons/webflow.svg index 1ef6d9ff..2f16cc4b 100644 --- a/icons/webflow.svg +++ b/icons/webflow.svg @@ -1 +1 @@ -Webflow icon \ No newline at end of file +Webflow \ No newline at end of file diff --git a/icons/webgl.svg b/icons/webgl.svg index 9c9bcb92..a7a40b12 100644 --- a/icons/webgl.svg +++ b/icons/webgl.svg @@ -1 +1 @@ -WebGL icon \ No newline at end of file +WebGL \ No newline at end of file diff --git a/icons/webhint.svg b/icons/webhint.svg index c43fe615..514fe904 100644 --- a/icons/webhint.svg +++ b/icons/webhint.svg @@ -1 +1 @@ -webhint icon \ No newline at end of file +webhint \ No newline at end of file diff --git a/icons/weblate.svg b/icons/weblate.svg index b4e1fca0..abab5a5b 100644 --- a/icons/weblate.svg +++ b/icons/weblate.svg @@ -1 +1 @@ -Weblate icon \ No newline at end of file +Weblate \ No newline at end of file diff --git a/icons/webmin.svg b/icons/webmin.svg index 3c70ecc7..e54572b5 100644 --- a/icons/webmin.svg +++ b/icons/webmin.svg @@ -1 +1 @@ -Webmin icon \ No newline at end of file +Webmin \ No newline at end of file diff --git a/icons/webmoney.svg b/icons/webmoney.svg index a3c91c62..ed71daa1 100644 --- a/icons/webmoney.svg +++ b/icons/webmoney.svg @@ -1 +1 @@ -WebMoney icon \ No newline at end of file +WebMoney \ No newline at end of file diff --git a/icons/webpack.svg b/icons/webpack.svg index 26f7ba44..754217d3 100644 --- a/icons/webpack.svg +++ b/icons/webpack.svg @@ -1 +1 @@ -Webpack icon \ No newline at end of file +Webpack \ No newline at end of file diff --git a/icons/webrtc.svg b/icons/webrtc.svg index 701b9bb4..b4a95b6d 100644 --- a/icons/webrtc.svg +++ b/icons/webrtc.svg @@ -1 +1 @@ -WebRTC icon +WebRTC \ No newline at end of file diff --git a/icons/webstorm.svg b/icons/webstorm.svg index 9a3c0434..df4670c5 100644 --- a/icons/webstorm.svg +++ b/icons/webstorm.svg @@ -1 +1 @@ -WebStorm icon \ No newline at end of file +WebStorm \ No newline at end of file diff --git a/icons/webtoon.svg b/icons/webtoon.svg index 27a10e3a..13804fe0 100644 --- a/icons/webtoon.svg +++ b/icons/webtoon.svg @@ -1 +1 @@ -WEBTOON icon \ No newline at end of file +WEBTOON \ No newline at end of file diff --git a/icons/wechat.svg b/icons/wechat.svg index 1667459d..c3eb6c4a 100644 --- a/icons/wechat.svg +++ b/icons/wechat.svg @@ -1 +1 @@ -WeChat icon \ No newline at end of file +WeChat \ No newline at end of file diff --git a/icons/weights-and-biases.svg b/icons/weights-and-biases.svg index d1be5065..4f42a27c 100644 --- a/icons/weights-and-biases.svg +++ b/icons/weights-and-biases.svg @@ -1 +1 @@ -Weights & Biases icon \ No newline at end of file +Weights & Biases \ No newline at end of file diff --git a/icons/wemo.svg b/icons/wemo.svg index cfbda2c0..1d48fc65 100644 --- a/icons/wemo.svg +++ b/icons/wemo.svg @@ -1 +1 @@ -WEMO icon \ No newline at end of file +WEMO \ No newline at end of file diff --git a/icons/wetransfer.svg b/icons/wetransfer.svg index f27eff85..7f3159a6 100644 --- a/icons/wetransfer.svg +++ b/icons/wetransfer.svg @@ -1 +1 @@ -WeTransfer icon \ No newline at end of file +WeTransfer \ No newline at end of file diff --git a/icons/whatsapp.svg b/icons/whatsapp.svg index 83c7bebf..2a6c69fd 100644 --- a/icons/whatsapp.svg +++ b/icons/whatsapp.svg @@ -1 +1 @@ -WhatsApp icon \ No newline at end of file +WhatsApp \ No newline at end of file diff --git a/icons/wheniwork.svg b/icons/wheniwork.svg index c4c31162..bb2308ee 100644 --- a/icons/wheniwork.svg +++ b/icons/wheniwork.svg @@ -1 +1 @@ -When I Work icon \ No newline at end of file +When I Work \ No newline at end of file diff --git a/icons/whitesource.svg b/icons/whitesource.svg index 55af3f37..95a9b0ad 100644 --- a/icons/whitesource.svg +++ b/icons/whitesource.svg @@ -1 +1 @@ -WhiteSource icon \ No newline at end of file +WhiteSource \ No newline at end of file diff --git a/icons/wii.svg b/icons/wii.svg index 8e89b306..def2969e 100644 --- a/icons/wii.svg +++ b/icons/wii.svg @@ -1 +1 @@ -Wii icon \ No newline at end of file +Wii \ No newline at end of file diff --git a/icons/wiiu.svg b/icons/wiiu.svg index 750cfc75..d3eae433 100644 --- a/icons/wiiu.svg +++ b/icons/wiiu.svg @@ -1 +1 @@ -Wii U icon \ No newline at end of file +Wii U \ No newline at end of file diff --git a/icons/wikidata.svg b/icons/wikidata.svg index 11da970e..6654d87c 100644 --- a/icons/wikidata.svg +++ b/icons/wikidata.svg @@ -1 +1 @@ -Wikidata icon \ No newline at end of file +Wikidata \ No newline at end of file diff --git a/icons/wikimediacommons.svg b/icons/wikimediacommons.svg index 6657dc0b..f029b220 100644 --- a/icons/wikimediacommons.svg +++ b/icons/wikimediacommons.svg @@ -1 +1 @@ -Wikimedia Commons icon \ No newline at end of file +Wikimedia Commons \ No newline at end of file diff --git a/icons/wikipedia.svg b/icons/wikipedia.svg index 2f971ff7..bc270c19 100644 --- a/icons/wikipedia.svg +++ b/icons/wikipedia.svg @@ -1 +1 @@ -Wikipedia icon \ No newline at end of file +Wikipedia \ No newline at end of file diff --git a/icons/wikiquote.svg b/icons/wikiquote.svg index 3ff8b6b8..9acb4cd7 100644 --- a/icons/wikiquote.svg +++ b/icons/wikiquote.svg @@ -1 +1 @@ -Wikiquote icon \ No newline at end of file +Wikiquote \ No newline at end of file diff --git a/icons/wikivoyage.svg b/icons/wikivoyage.svg index 4f5c3bac..f1152b7b 100644 --- a/icons/wikivoyage.svg +++ b/icons/wikivoyage.svg @@ -1 +1 @@ -Wikivoyage icon +Wikivoyage \ No newline at end of file diff --git a/icons/windows.svg b/icons/windows.svg index 3e6c955d..78faa78c 100644 --- a/icons/windows.svg +++ b/icons/windows.svg @@ -1 +1 @@ -Windows icon \ No newline at end of file +Windows \ No newline at end of file diff --git a/icons/windows95.svg b/icons/windows95.svg index 6ed4004b..25ddebcf 100644 --- a/icons/windows95.svg +++ b/icons/windows95.svg @@ -1 +1 @@ -Windows 95 icon \ No newline at end of file +Windows 95 \ No newline at end of file diff --git a/icons/windowsterminal.svg b/icons/windowsterminal.svg index d67b2910..c8e53068 100644 --- a/icons/windowsterminal.svg +++ b/icons/windowsterminal.svg @@ -1 +1 @@ -Windows Terminal icon \ No newline at end of file +Windows Terminal \ No newline at end of file diff --git a/icons/windowsxp.svg b/icons/windowsxp.svg index 4369b7fa..5ead33eb 100644 --- a/icons/windowsxp.svg +++ b/icons/windowsxp.svg @@ -1 +1 @@ -Windows XP icon \ No newline at end of file +Windows XP \ No newline at end of file diff --git a/icons/winmate.svg b/icons/winmate.svg index ed0b8bfc..be838ed7 100644 --- a/icons/winmate.svg +++ b/icons/winmate.svg @@ -1 +1 @@ -Winmate icon \ No newline at end of file +Winmate \ No newline at end of file diff --git a/icons/wipro.svg b/icons/wipro.svg index 701f7849..79d31355 100644 --- a/icons/wipro.svg +++ b/icons/wipro.svg @@ -1 +1 @@ -Wipro icon \ No newline at end of file +Wipro \ No newline at end of file diff --git a/icons/wire.svg b/icons/wire.svg index 1387b6f3..44c9c493 100644 --- a/icons/wire.svg +++ b/icons/wire.svg @@ -1 +1 @@ -Wire icon \ No newline at end of file +Wire \ No newline at end of file diff --git a/icons/wireguard.svg b/icons/wireguard.svg index fac39dda..5df0de96 100644 --- a/icons/wireguard.svg +++ b/icons/wireguard.svg @@ -1 +1 @@ -WireGuard icon \ No newline at end of file +WireGuard \ No newline at end of file diff --git a/icons/wireshark.svg b/icons/wireshark.svg index ad1ae32d..0ee013a4 100644 --- a/icons/wireshark.svg +++ b/icons/wireshark.svg @@ -1 +1 @@ -Wireshark icon \ No newline at end of file +Wireshark \ No newline at end of file diff --git a/icons/wish.svg b/icons/wish.svg index c8ca7259..4f968579 100644 --- a/icons/wish.svg +++ b/icons/wish.svg @@ -1 +1 @@ -Wish icon \ No newline at end of file +Wish \ No newline at end of file diff --git a/icons/wistia.svg b/icons/wistia.svg index c5a7121e..e718a904 100644 --- a/icons/wistia.svg +++ b/icons/wistia.svg @@ -1 +1 @@ -Wistia icon \ No newline at end of file +Wistia \ No newline at end of file diff --git a/icons/wix.svg b/icons/wix.svg index ca640c3a..a1f6f418 100644 --- a/icons/wix.svg +++ b/icons/wix.svg @@ -1 +1 @@ -Wix icon \ No newline at end of file +Wix \ No newline at end of file diff --git a/icons/wizzair.svg b/icons/wizzair.svg index 63123571..d62a9534 100644 --- a/icons/wizzair.svg +++ b/icons/wizzair.svg @@ -1 +1 @@ -Wizz Air icon \ No newline at end of file +Wizz Air \ No newline at end of file diff --git a/icons/wolfram.svg b/icons/wolfram.svg index 72fef38b..1b2aecb5 100644 --- a/icons/wolfram.svg +++ b/icons/wolfram.svg @@ -1 +1 @@ -Wolfram icon \ No newline at end of file +Wolfram \ No newline at end of file diff --git a/icons/wolframlanguage.svg b/icons/wolframlanguage.svg index 4e743b00..151ad6c6 100644 --- a/icons/wolframlanguage.svg +++ b/icons/wolframlanguage.svg @@ -1 +1 @@ -Wolfram Language icon \ No newline at end of file +Wolfram Language \ No newline at end of file diff --git a/icons/wolframmathematica.svg b/icons/wolframmathematica.svg index 2be76cf4..c41c4858 100644 --- a/icons/wolframmathematica.svg +++ b/icons/wolframmathematica.svg @@ -1 +1 @@ -Wolfram Mathematica icon \ No newline at end of file +Wolfram Mathematica \ No newline at end of file diff --git a/icons/woo.svg b/icons/woo.svg index e3085fc1..090ffeb8 100644 --- a/icons/woo.svg +++ b/icons/woo.svg @@ -1 +1 @@ -Woo icon +Woo \ No newline at end of file diff --git a/icons/woocommerce.svg b/icons/woocommerce.svg index 9e33a0b4..cbbcf4bc 100644 --- a/icons/woocommerce.svg +++ b/icons/woocommerce.svg @@ -1 +1 @@ -WooCommerce icon +WooCommerce \ No newline at end of file diff --git a/icons/wordpress.svg b/icons/wordpress.svg index 41a187ee..08ecac10 100644 --- a/icons/wordpress.svg +++ b/icons/wordpress.svg @@ -1 +1 @@ -WordPress icon \ No newline at end of file +WordPress \ No newline at end of file diff --git a/icons/workplace.svg b/icons/workplace.svg index ec00be20..0d548832 100644 --- a/icons/workplace.svg +++ b/icons/workplace.svg @@ -1 +1 @@ -Workplace icon +Workplace \ No newline at end of file diff --git a/icons/worldhealthorganization.svg b/icons/worldhealthorganization.svg index 6d25ba71..41f7a2b0 100644 --- a/icons/worldhealthorganization.svg +++ b/icons/worldhealthorganization.svg @@ -1 +1 @@ -World Health Organization icon \ No newline at end of file +World Health Organization \ No newline at end of file diff --git a/icons/wpengine.svg b/icons/wpengine.svg index a43e7096..d9cfdf1e 100644 --- a/icons/wpengine.svg +++ b/icons/wpengine.svg @@ -1 +1 @@ -WP Engine icon \ No newline at end of file +WP Engine \ No newline at end of file diff --git a/icons/wprocket.svg b/icons/wprocket.svg index 145d7e94..2dbfb761 100644 --- a/icons/wprocket.svg +++ b/icons/wprocket.svg @@ -1 +1 @@ -WP Rocket icon +WP Rocket \ No newline at end of file diff --git a/icons/write-dot-as.svg b/icons/write-dot-as.svg index ee41b6d1..db33f7f8 100644 --- a/icons/write-dot-as.svg +++ b/icons/write-dot-as.svg @@ -1 +1 @@ -write.as icon \ No newline at end of file +write.as \ No newline at end of file diff --git a/icons/wwe.svg b/icons/wwe.svg index 38886753..79ed5b16 100644 --- a/icons/wwe.svg +++ b/icons/wwe.svg @@ -1 +1 @@ -WWE icon \ No newline at end of file +WWE \ No newline at end of file diff --git a/icons/wwise.svg b/icons/wwise.svg index 63451cf7..6f8fe561 100644 --- a/icons/wwise.svg +++ b/icons/wwise.svg @@ -1 +1 @@ -Wwise icon \ No newline at end of file +Wwise \ No newline at end of file diff --git a/icons/x-dot-org.svg b/icons/x-dot-org.svg index 57e1d41f..cd46af8a 100644 --- a/icons/x-dot-org.svg +++ b/icons/x-dot-org.svg @@ -1 +1 @@ -X.Org icon \ No newline at end of file +X.Org \ No newline at end of file diff --git a/icons/xamarin.svg b/icons/xamarin.svg index 39667695..21a29999 100644 --- a/icons/xamarin.svg +++ b/icons/xamarin.svg @@ -1 +1 @@ -Xamarin icon +Xamarin \ No newline at end of file diff --git a/icons/xaml.svg b/icons/xaml.svg index 4f96f51b..c615818e 100644 --- a/icons/xaml.svg +++ b/icons/xaml.svg @@ -1 +1 @@ -XAML icon \ No newline at end of file +XAML \ No newline at end of file diff --git a/icons/xampp.svg b/icons/xampp.svg index e2d1d1d7..e0bba962 100644 --- a/icons/xampp.svg +++ b/icons/xampp.svg @@ -1 +1 @@ -XAMPP icon \ No newline at end of file +XAMPP \ No newline at end of file diff --git a/icons/xbox.svg b/icons/xbox.svg index e70af1cf..85a9689a 100644 --- a/icons/xbox.svg +++ b/icons/xbox.svg @@ -1 +1 @@ -Xbox icon \ No newline at end of file +Xbox \ No newline at end of file diff --git a/icons/xcode.svg b/icons/xcode.svg index 0263f93a..c10eb77c 100644 --- a/icons/xcode.svg +++ b/icons/xcode.svg @@ -1 +1 @@ -Xcode icon \ No newline at end of file +Xcode \ No newline at end of file diff --git a/icons/xdadevelopers.svg b/icons/xdadevelopers.svg index 22de0dae..0466d878 100644 --- a/icons/xdadevelopers.svg +++ b/icons/xdadevelopers.svg @@ -1 +1 @@ -XDA Developers icon +XDA Developers \ No newline at end of file diff --git a/icons/xero.svg b/icons/xero.svg index d6097798..88dbc2fd 100644 --- a/icons/xero.svg +++ b/icons/xero.svg @@ -1 +1 @@ -Xero icon \ No newline at end of file +Xero \ No newline at end of file diff --git a/icons/xfce.svg b/icons/xfce.svg index 2f36f0b5..7ff824a8 100644 --- a/icons/xfce.svg +++ b/icons/xfce.svg @@ -1 +1 @@ -XFCE icon \ No newline at end of file +XFCE \ No newline at end of file diff --git a/icons/xiaomi.svg b/icons/xiaomi.svg index 98b11414..f08eae5b 100644 --- a/icons/xiaomi.svg +++ b/icons/xiaomi.svg @@ -1 +1 @@ -Xiaomi icon \ No newline at end of file +Xiaomi \ No newline at end of file diff --git a/icons/xilinx.svg b/icons/xilinx.svg index 30f35770..622cca38 100644 --- a/icons/xilinx.svg +++ b/icons/xilinx.svg @@ -1 +1 @@ -Xilinx icon \ No newline at end of file +Xilinx \ No newline at end of file diff --git a/icons/xing.svg b/icons/xing.svg index 0f53c796..43e874a2 100644 --- a/icons/xing.svg +++ b/icons/xing.svg @@ -1 +1 @@ -Xing icon \ No newline at end of file +Xing \ No newline at end of file diff --git a/icons/xmpp.svg b/icons/xmpp.svg index 0daf641a..77785928 100644 --- a/icons/xmpp.svg +++ b/icons/xmpp.svg @@ -1 +1 @@ -XMPP icon \ No newline at end of file +XMPP \ No newline at end of file diff --git a/icons/xrp.svg b/icons/xrp.svg index 9335c3e9..5e0d7655 100644 --- a/icons/xrp.svg +++ b/icons/xrp.svg @@ -1 +1 @@ -XRP icon \ No newline at end of file +XRP \ No newline at end of file diff --git a/icons/xsplit.svg b/icons/xsplit.svg index 6bf7bbf2..e196d59d 100644 --- a/icons/xsplit.svg +++ b/icons/xsplit.svg @@ -1 +1 @@ -XSplit icon \ No newline at end of file +XSplit \ No newline at end of file diff --git a/icons/xstate.svg b/icons/xstate.svg index f23d5890..992f3a7d 100644 --- a/icons/xstate.svg +++ b/icons/xstate.svg @@ -1 +1 @@ -XState icon \ No newline at end of file +XState \ No newline at end of file diff --git a/icons/yahoo.svg b/icons/yahoo.svg index b1066409..bafe79b6 100644 --- a/icons/yahoo.svg +++ b/icons/yahoo.svg @@ -1 +1 @@ -Yahoo! icon +Yahoo! \ No newline at end of file diff --git a/icons/yale.svg b/icons/yale.svg index 0aca8e15..e2ca43b0 100644 --- a/icons/yale.svg +++ b/icons/yale.svg @@ -1 +1 @@ -Yale icon +Yale \ No newline at end of file diff --git a/icons/yamahacorporation.svg b/icons/yamahacorporation.svg index 0c6c26db..c1981963 100644 --- a/icons/yamahacorporation.svg +++ b/icons/yamahacorporation.svg @@ -1 +1 @@ -Yamaha Corporation icon \ No newline at end of file +Yamaha Corporation \ No newline at end of file diff --git a/icons/yamahamotorcorporation.svg b/icons/yamahamotorcorporation.svg index e3f91135..c1038482 100644 --- a/icons/yamahamotorcorporation.svg +++ b/icons/yamahamotorcorporation.svg @@ -1 +1 @@ -Yamaha Motor Corporation icon \ No newline at end of file +Yamaha Motor Corporation \ No newline at end of file diff --git a/icons/yammer.svg b/icons/yammer.svg index 57c05524..3b822d83 100644 --- a/icons/yammer.svg +++ b/icons/yammer.svg @@ -1 +1 @@ -Yammer icon \ No newline at end of file +Yammer \ No newline at end of file diff --git a/icons/yarn.svg b/icons/yarn.svg index 79d00a18..072d5f4d 100644 --- a/icons/yarn.svg +++ b/icons/yarn.svg @@ -1 +1 @@ -Yarn icon \ No newline at end of file +Yarn \ No newline at end of file diff --git a/icons/ycombinator.svg b/icons/ycombinator.svg index aa8ad877..8eb0d253 100644 --- a/icons/ycombinator.svg +++ b/icons/ycombinator.svg @@ -1 +1 @@ -Y Combinator icon \ No newline at end of file +Y Combinator \ No newline at end of file diff --git a/icons/yelp.svg b/icons/yelp.svg index c5cbf2f3..ccf12651 100644 --- a/icons/yelp.svg +++ b/icons/yelp.svg @@ -1 +1 @@ -Yelp icon \ No newline at end of file +Yelp \ No newline at end of file diff --git a/icons/yoast.svg b/icons/yoast.svg index 20da11d2..9a0bdc0a 100644 --- a/icons/yoast.svg +++ b/icons/yoast.svg @@ -1 +1 @@ -Yoast icon \ No newline at end of file +Yoast \ No newline at end of file diff --git a/icons/yourtravel-dot-tv.svg b/icons/yourtravel-dot-tv.svg index 82d13574..59a51162 100644 --- a/icons/yourtravel-dot-tv.svg +++ b/icons/yourtravel-dot-tv.svg @@ -1 +1 @@ -YourTravel.TV icon \ No newline at end of file +YourTravel.TV \ No newline at end of file diff --git a/icons/youtube.svg b/icons/youtube.svg index cb1f8d2f..0492366a 100644 --- a/icons/youtube.svg +++ b/icons/youtube.svg @@ -1 +1 @@ -YouTube icon \ No newline at end of file +YouTube \ No newline at end of file diff --git a/icons/youtubegaming.svg b/icons/youtubegaming.svg index d230e76e..69730607 100644 --- a/icons/youtubegaming.svg +++ b/icons/youtubegaming.svg @@ -1 +1 @@ -YouTube Gaming icon +YouTube Gaming \ No newline at end of file diff --git a/icons/youtubemusic.svg b/icons/youtubemusic.svg index 2c9ebed1..d3225210 100644 --- a/icons/youtubemusic.svg +++ b/icons/youtubemusic.svg @@ -1 +1 @@ -YouTube Music icon \ No newline at end of file +YouTube Music \ No newline at end of file diff --git a/icons/youtubestudio.svg b/icons/youtubestudio.svg index f7d111ee..33043d35 100644 --- a/icons/youtubestudio.svg +++ b/icons/youtubestudio.svg @@ -1 +1 @@ -YouTube Studio icon \ No newline at end of file +YouTube Studio \ No newline at end of file diff --git a/icons/youtubetv.svg b/icons/youtubetv.svg index f14fb659..05fa683d 100644 --- a/icons/youtubetv.svg +++ b/icons/youtubetv.svg @@ -1 +1 @@ -YouTube TV icon \ No newline at end of file +YouTube TV \ No newline at end of file diff --git a/icons/z-wave.svg b/icons/z-wave.svg index b85a7679..2ad1d898 100644 --- a/icons/z-wave.svg +++ b/icons/z-wave.svg @@ -1 +1 @@ -Z-Wave icon +Z-Wave \ No newline at end of file diff --git a/icons/zalando.svg b/icons/zalando.svg index ee0497bd..6565822b 100644 --- a/icons/zalando.svg +++ b/icons/zalando.svg @@ -1 +1 @@ -Zalando icon \ No newline at end of file +Zalando \ No newline at end of file diff --git a/icons/zapier.svg b/icons/zapier.svg index 78cd5ee7..ade65832 100644 --- a/icons/zapier.svg +++ b/icons/zapier.svg @@ -1 +1 @@ -Zapier icon \ No newline at end of file +Zapier \ No newline at end of file diff --git a/icons/zdf.svg b/icons/zdf.svg index 6a65f7b9..46e647f2 100644 --- a/icons/zdf.svg +++ b/icons/zdf.svg @@ -1 +1 @@ -ZDF icon \ No newline at end of file +ZDF \ No newline at end of file diff --git a/icons/zelle.svg b/icons/zelle.svg index 9efa5ec5..62165d8f 100644 --- a/icons/zelle.svg +++ b/icons/zelle.svg @@ -1 +1 @@ -Zelle icon \ No newline at end of file +Zelle \ No newline at end of file diff --git a/icons/zend.svg b/icons/zend.svg index 48167cd7..a5cd9418 100644 --- a/icons/zend.svg +++ b/icons/zend.svg @@ -1 +1 @@ -Zend icon +Zend \ No newline at end of file diff --git a/icons/zendesk.svg b/icons/zendesk.svg index 356944c1..7309c345 100644 --- a/icons/zendesk.svg +++ b/icons/zendesk.svg @@ -1 +1 @@ -Zendesk icon \ No newline at end of file +Zendesk \ No newline at end of file diff --git a/icons/zendframework.svg b/icons/zendframework.svg index 00fadb18..433610fc 100644 --- a/icons/zendframework.svg +++ b/icons/zendframework.svg @@ -1 +1 @@ -Zend Framework icon +Zend Framework \ No newline at end of file diff --git a/icons/zenn.svg b/icons/zenn.svg index ba67fbef..d4327317 100644 --- a/icons/zenn.svg +++ b/icons/zenn.svg @@ -1 +1 @@ -Zenn icon \ No newline at end of file +Zenn \ No newline at end of file diff --git a/icons/zerodha.svg b/icons/zerodha.svg index b847c315..30ed55ba 100644 --- a/icons/zerodha.svg +++ b/icons/zerodha.svg @@ -1 +1 @@ -Zerodha icon \ No newline at end of file +Zerodha \ No newline at end of file diff --git a/icons/zeromq.svg b/icons/zeromq.svg index 4ecfb078..957e2b8a 100644 --- a/icons/zeromq.svg +++ b/icons/zeromq.svg @@ -1 +1 @@ -ZeroMQ icon \ No newline at end of file +ZeroMQ \ No newline at end of file diff --git a/icons/zerply.svg b/icons/zerply.svg index 0cae2235..f5bb869a 100644 --- a/icons/zerply.svg +++ b/icons/zerply.svg @@ -1 +1 @@ -Zerply icon \ No newline at end of file +Zerply \ No newline at end of file diff --git a/icons/zhihu.svg b/icons/zhihu.svg index fbe9dadb..c283d23e 100644 --- a/icons/zhihu.svg +++ b/icons/zhihu.svg @@ -1 +1 @@ -Zhihu icon \ No newline at end of file +Zhihu \ No newline at end of file diff --git a/icons/zigbee.svg b/icons/zigbee.svg index 69cb6a04..ea4cb01f 100644 --- a/icons/zigbee.svg +++ b/icons/zigbee.svg @@ -1 +1 @@ -Zigbee icon +Zigbee \ No newline at end of file diff --git a/icons/zillow.svg b/icons/zillow.svg index 155b433c..637f6aa6 100644 --- a/icons/zillow.svg +++ b/icons/zillow.svg @@ -1 +1 @@ -Zillow icon \ No newline at end of file +Zillow \ No newline at end of file diff --git a/icons/zingat.svg b/icons/zingat.svg index d56f20bd..4ed6b3e9 100644 --- a/icons/zingat.svg +++ b/icons/zingat.svg @@ -1 +1 @@ -Zingat icon \ No newline at end of file +Zingat \ No newline at end of file diff --git a/icons/zoho.svg b/icons/zoho.svg index f23885b4..6993e51b 100644 --- a/icons/zoho.svg +++ b/icons/zoho.svg @@ -1 +1 @@ -Zoho icon \ No newline at end of file +Zoho \ No newline at end of file diff --git a/icons/zoiper.svg b/icons/zoiper.svg index 6481e584..d43e6299 100644 --- a/icons/zoiper.svg +++ b/icons/zoiper.svg @@ -1 +1 @@ -Zoiper icon \ No newline at end of file +Zoiper \ No newline at end of file diff --git a/icons/zomato.svg b/icons/zomato.svg index 4f8710b9..c0beddeb 100644 --- a/icons/zomato.svg +++ b/icons/zomato.svg @@ -1 +1 @@ -Zomato icon \ No newline at end of file +Zomato \ No newline at end of file diff --git a/icons/zoom.svg b/icons/zoom.svg index c91a9322..77fdbe36 100644 --- a/icons/zoom.svg +++ b/icons/zoom.svg @@ -1 +1 @@ -Zoom icon \ No newline at end of file +Zoom \ No newline at end of file diff --git a/icons/zorin.svg b/icons/zorin.svg index 6c03d6f2..e867f61b 100644 --- a/icons/zorin.svg +++ b/icons/zorin.svg @@ -1 +1 @@ -Zorin icon \ No newline at end of file +Zorin \ No newline at end of file diff --git a/icons/zotero.svg b/icons/zotero.svg index 9966a458..07a296e7 100644 --- a/icons/zotero.svg +++ b/icons/zotero.svg @@ -1 +1 @@ -Zotero icon \ No newline at end of file +Zotero \ No newline at end of file diff --git a/icons/zulip.svg b/icons/zulip.svg index ff714df9..097ec418 100644 --- a/icons/zulip.svg +++ b/icons/zulip.svg @@ -1 +1 @@ -Zulip icon \ No newline at end of file +Zulip \ No newline at end of file