diff --git a/.svglintrc.js b/.svglintrc.js index a03cb653a..6e82fe137 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 d68004b57..21bea066f 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 415de12cc..3a937f535 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 f5f53a437..2021fc9d2 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 d2f13f971..c064f956a 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 923747dee..6a096681c 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 a7b2e822d..e581dabb1 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 429a4c0fd..2d9011390 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 3d9809920..803aa1e76 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 523e06fa4..36b94a441 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 dbced9d97..8292ff300 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 6c45af58d..a5bad8cdd 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 c102ed777..78b50279b 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 210530d65..c425e6b65 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 a7703511a..456bf0691 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 9632917de..2ac6434e5 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 b186a14d4..e536c5954 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 2dff85637..88662c659 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 79ae44f3d..ca9b2bbf7 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 1fecb3b56..5e7990a85 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 e3e3b5c9f..35aa09234 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 851c09289..8059cf7d8 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 58d6e086e..7e922955b 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 7e8ffcd2c..73a924d32 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 9ad96072e..c0c0e65b6 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 ff1c92b28..bc7ff3c0e 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 53d18dced..0c4d811b3 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 fe233b5ad..c2fc4355d 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 86dfb50a9..2b0b11380 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 5a9277221..381da2118 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 2a7f17b07..a6daf2df8 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 cbeebe420..99b17bdc2 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 559c586a9..3d329a922 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 262823f23..bbd1da896 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 86733cd2c..ff8246306 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 1d2e247d6..848571f66 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 cd6e44a48..ecc792722 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 05d16030f..66765c5d8 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 25f63826d..258742372 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 32b1b7919..c3440c12d 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 41a8bacb4..70d39b85f 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 be9858a5b..e019c1a66 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 8eb5c3f45..6c937c560 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 7721ccec4..817da18ae 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 51efeaf71..f7d77e3e0 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 5e95790cd..34cad226f 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 fd038b82c..21a2c6bb0 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 79426dd2e..d4db5bae4 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 3ee0276bc..fa17bf2b2 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 f8250579f..84b15ad54 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 cb12247f5..ec42733e0 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 72fef9b10..9ffb644b6 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 0659b7e2b..af0563723 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 278e79a1c..b9791ccc3 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 99816963e..4677c707f 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 0700ace0d..e39bfd2bf 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 a6ad30bda..f5911dbe2 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 6a546934c..a4f3ba2af 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 d1680d78d..b96b19547 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 392e6e051..7d39a649f 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 6d9f9b658..fb6350c48 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 89da5b98e..1bd4b787d 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 3461a7ead..df8575e52 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 008c88f87..95d82251e 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 9bd6d72e1..365b47159 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 3fb52ebcf..20f11ef9d 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 86a03feda..47d96503f 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 9a6299317..e0a1e9d1f 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 9089f88cd..4b65608e4 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 8672e45b7..ba363d8ad 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 a6f9c23e5..2c2266362 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 554b76a5f..0c6ed86be 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 274f1f095..4a53441c5 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 04be3b5f5..f95aefd52 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 b60d2a3f3..06cb42e96 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 349dd6e76..c554fb8a5 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 695f245c9..6cd23579d 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 d0a25168e..70316babd 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 550eda033..60fd6dfc2 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 a4357c771..9fd688c41 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 36c1287e7..3d010ed1a 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 a93bee764..31b54ad3f 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 5e9129e74..4020e5672 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 eac96bc3a..3524fb17f 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 ba17a0512..5b3fac169 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 ff6fe4bc1..e43f9ebe5 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 1fd97db23..df7ec3f95 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 079b389ee..bbbe22d15 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 e4453a415..1caba4e9b 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 c56736a47..a9ed842c8 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 827333c47..bc7c40242 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 520ccf141..22f2c4143 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 76f9d010a..b916d1b99 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 b3e56dcbb..d7c894481 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 150f1cbad..ac75cb008 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 9a4249d26..c34c98934 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 c6305f132..a7702d386 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 9ce0e5f9d..8c253827e 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 a05c7248e..7ef146e51 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 84a125c24..7cce2596b 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 c7304808f..6189bd2b9 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 cfefd7591..c995b354e 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 55bce85a8..dd6630fe9 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 70bca6f12..bb1911669 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 21847331e..e7367ce6c 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 d3cfaf07d..b4b14fc64 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 14e54ba55..db507a651 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 8d94a5601..fca23a403 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 4156272f2..5fbdea8b5 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 cfd9ccda2..76f3180a5 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 3a5899c95..1b3f05fa3 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 161eb50b0..8cc4ad0c5 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 6c5e3308d..e7ecb5f06 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 30eee56c0..221b7e4df 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 a3cac0eec..3d6cb78a1 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 5f64a5916..6cd2b8c62 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 54e41eae6..7b016ec6d 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 cb95c2191..a26217390 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 61e7aa0ca..17b35fb6e 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 39a52360c..651e36e08 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 df05e5c94..ae828a29a 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 da747a470..d38d50661 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 ce75d08e5..a4445579a 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 da92b5de5..4aa03eed3 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 1ca8ca5a8..80f09ad7a 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 4e70abb00..59fdf12ee 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 796e04113..14097016f 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 5e2eb7c65..ac4c94183 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 9f4150265..d25ef2384 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 f4b241671..4c45c5c94 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 5c438b1bc..d7c62df8b 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 1126489c1..9739f07d7 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 4bcf56d4d..0bd15581a 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 f441720d2..fb6c1f346 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 99d4970f8..8db7001d6 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 2fdce622b..de4b0d17b 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 a50d87200..ee091db6d 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 87bb722e5..186414ba2 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 e7084cafd..908afdc78 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 d52fe0354..a5586f1bf 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 5c9c3e0e0..216184d01 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 c106a55be..0da260aea 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 062907524..d70f33dd9 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 f8acfe34c..1bbf8cdb5 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 9b8c400ad..7673f6604 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 0a88541f3..9c8de9aea 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 80d4cc3ef..17f839c9d 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 768e5ca0e..0b1e2e475 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 f77b4f578..ec9b38532 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 5995b1af0..0cd3ec62d 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 f277633dd..2d4d2ac4b 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 ccfe63f1d..0e61050a0 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 e3228cf3e..ae2e066b6 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 f126b95bd..4b653ddf6 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 a1bebf9c4..0d3ccee2f 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 45bdf4d72..aad276212 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 012aacc9f..eebccc8ca 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 6141a9200..675002927 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 3adc56b2e..c426ef70b 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 6c358f4ad..944dcbcf7 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 bb44605e1..feeef75df 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 0512f0cc4..3b0e516a1 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 468cd8b62..4d34c007c 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 7227c2dd6..18ef199da 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 e6230b8a0..166ca3920 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 8f83f91f8..9be7227d9 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 e0768ae7d..875213860 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 5564ba1c9..5ba7e82f3 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 641ed5a40..c8d995731 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 3c37409f0..36252b4ef 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 0c59b03c3..c80a10f36 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 2501dcadd..633641199 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 1d3da499e..559d82a85 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 0cf3a1e5c..807cfb3ae 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 eb092a432..242c7e8ef 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 82576cbf1..6b7b27052 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 e5381463e..07ba6e35b 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 d8e54714b..db43f09d3 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 49d2be27f..669855aac 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 6944537a7..32bd0853d 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 4660b7cf2..7b81a703e 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 9a922ec60..992b6b615 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 c6f2878d6..7c57ae462 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 5a50ec206..c8a16259e 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 fb9346fbb..c8409d0b0 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 028edf864..de40f7c3a 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 0cad434b3..89fbffe70 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 2cb75aca4..d4e81af2c 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 fb308ac0d..74296d147 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 dcf133a97..796c2bb00 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 7fb69d422..35b9ee037 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 8be30ce9d..840d6f00c 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 5a22e95de..d3e659695 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 bfd3ef46f..43508c978 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 743126622..3ccf0cf55 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 aae4f9a7b..9c8896a84 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 25f5deef6..6b57a48dd 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 c6783a5b2..5cf143d8e 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 8e18f88cb..643f36036 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 9f6908cb6..3096f145d 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 36d958381..c47222e40 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 b7cb0a20a..f5171768f 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 12fdebd10..c77475a1d 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 a89d414d6..93f9eb374 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 920c87f24..f8255e094 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 738fc7908..85609335a 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 6d31bb63c..69a120835 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 945245e0e..b6e2d8f8a 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 8187e43f5..9d5584cc9 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 a07dbc7ba..458e8d013 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 02cdb87b1..1a2b30abf 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 cbbe29b17..713da37bb 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 80760b999..87b4d9bb4 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 7c250e883..28ce65f35 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 12abeb971..41ac68b55 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 226a65853..204d908f7 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 457c7b015..6c114c711 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 c06dfc65a..70b09cf7c 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 fe423b7e3..6a9779075 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 91e76a977..c44ddcc95 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 47c15f219..709560a9d 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 33f03d4cb..41d2c7426 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 b0b420073..bfae48cb1 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 3f5c85508..021041e79 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 d2f3d120b..0a2abd78a 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 9e26f2629..fbf154e58 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 50d9adf76..775ad1d44 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 0106e4310..b0c55837a 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 8ae66a966..9aaca5933 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 cd42293a3..507d893c9 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 09c2ffe69..511377f45 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 c76b4d15d..221a26335 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 12d7a7d80..1215fec0b 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 c99d05dbf..abe53d863 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 4f6c054aa..70de72ff7 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 3978e9a8e..96c619332 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 03ce567e7..e99a73d79 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 9c4deae33..d5795256b 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 3c37c35bd..d8d8e2809 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 c3d2dd822..53d012fde 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 70b73aa84..3751818f8 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 45355e49b..8b7829055 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 e22adb50e..11e51eb0e 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 83455536d..984e1f2d8 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 23cc122c2..4642efd70 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 6e6a23d7b..b4ac891be 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 ac77628a5..5a18151de 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 a0bba61d7..aa885e671 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 2a115ac2c..84218919a 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 f65e4c3dd..fa798a452 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 15892995c..a205a6bc4 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 8cba723b8..ad710c50c 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 4ef2a6b56..3877dcb63 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 c94a6e46e..f2cce7ae4 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 d556dc38c..f489c51d8 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 da34664ab..6a850b8f9 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 76e61b3c0..1d32104de 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 84727befd..dff5e40c8 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 216928546..2f6e62068 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 3f2242b52..a95c55c34 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 d535c873e..3330f4a88 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 66f0ebe63..2ba99cfaf 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 096b4e2f6..b62a839be 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 6d1e64ba2..51878868e 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 d9364c3f1..2dddb4d6a 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 c8905195c..d705d77fc 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 4a858ca63..fc75a6258 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 5b4e08d02..b863df933 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 bc8edcb54..e72dc7868 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 388f13816..34b3a13f6 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 1d2d8af60..5907816dd 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 9bd103897..ea77c7e0a 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 4972a5cb7..f3d793d09 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 560cd3a25..33ea9bea1 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 1f0b3ffa9..c101e051d 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 c6997ce8d..ba5111b9f 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 76123d4de..59afc91b5 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 878b10ac7..134fffd99 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 39d3c6d28..fa0d6c731 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 5a9211844..6bd03d136 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 9c60539df..40e838d75 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 8980c580f..bcc04b2be 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 6e07830d6..a37e6fd88 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 82e41fa79..172d031ed 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 4d9942685..3f16a9e00 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 d4aeb83e9..f79566641 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 42746c48b..32d3ced7e 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 737e73154..4a5a310d9 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 fa50fd77c..547a22586 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 0ac9fce10..ec6e79829 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 f49cc5b41..ff83e7f4c 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 a270b9aeb..744dc66f7 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 0ba212fa2..57538afc9 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 cd2cccd5e..03a3f11b7 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 e88aa7f40..e290150b5 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 48df0fddd..d1185622c 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 e94c9cbc9..87080f099 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 0827013a3..ce88b6cf7 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 cce2ee8a7..18d3938bc 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 45964bdc7..c3ef3b154 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 d143ebe10..3cc55e06a 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 879b0cf0d..658b25740 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 ba6e3468a..e27a82e92 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 7fc51a641..6eae510cb 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 b9586b084..d3f2f25c5 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 6e894e8f9..9be9cab8d 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 1da034d99..8f0e4e141 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 17358f1e2..bb41aaf53 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 8b725cbbc..c7d3dda7c 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 51ba6d4fa..9794fcc56 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 f6fdc477d..737c3a1bd 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 876301d61..946594825 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 b7311244b..c151f1bee 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 e1abd713b..4bf99cfd8 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 6c2363215..2194f93e4 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 f219b2c67..7ed25af19 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 7d4b07d8b..3a0162e74 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 3c0773647..4513b0a54 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 bfa17de62..23a86a328 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 de26d32a6..2bd0a4ca4 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 d5c033d67..823abccd2 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 05057f2d2..d561a7131 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 490118002..a1cf2d6d3 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 7f23b16b3..220591c59 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 43d1e43ef..af0d75fa7 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 73aaf2f02..430a9693d 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 0c8868b6c..c5a5cd3ab 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 f55f1c701..3ccdced22 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 5eccff4b6..dda05aa0f 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 3e32d71f7..e3636e456 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 821750566..df09a0f9f 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 56f0a0cdc..48ff39db8 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 b7dc9cefc..9662c939b 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 ff916e606..5d061565c 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 6791c4560..f2a939b20 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 3334b58fd..c56057982 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 ac630d485..3d845b77d 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 f4e1b6779..b4832329c 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 95f1b8edb..80b79122a 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 edfe8b51a..9a38cd692 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 2a9b8135f..bbf7b7eed 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 ca1f8c541..c221566ca 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 08038bf44..8e66761c1 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 51a0e34ef..8ab9c67ef 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 48eb50e3a..ecd2edd43 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 eddddd017..0b71c8f4d 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 b6d36b2d0..65db2b07f 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 4822430e9..fe0a22e6c 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 3cbc0e9c3..463c98eaf 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 6eb493adf..8824f37da 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 1976a8188..5cb88445c 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 7549ff1dc..970408815 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 a41a50a00..30df1e00b 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 da906477b..26133027d 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 8c32b2b61..4ec557cc1 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 d95027075..e795c95cd 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 76102f9d8..6d86eefc3 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 67cac871c..3ed39af01 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 98ebe69ad..466e56891 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 f0ab18144..c3ed947a5 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 bad71146c..e47377531 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 8bf8375a8..3a672c1cc 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 d104aa5fd..37d98a703 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 0bcef4d64..b9debfa37 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 f058664c3..ec64ca580 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 6c51a92a8..87507e696 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 c5dcde6b3..2ac98a7df 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 b4a99c3e4..ffbc5800c 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 17cc15d13..46d53f131 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 b33720e98..0d506be5a 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 36394fefb..d75731888 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 2f77ff8e1..2aeab8843 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 a771080a6..ca69ef207 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 bcb867251..ec56ac71e 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 1932d5e8e..0af8d45e9 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 4d26f3ab7..a33597e46 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 8d755a388..eed35f12d 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 f092030d4..86498fa57 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 a52b3c812..fe9674b21 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 c030f30bd..28e1c27d4 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 cc92f1d10..7024ab6d3 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 ead57793f..fe2f58d6a 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 9abad3aea..aca757215 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 c9cc3e950..2fde5e745 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 c4fad6e9f..d44da96c0 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 48d0688a6..174c67f55 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 ef244654a..8f9df638c 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 6344737cc..07ecb4dde 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 059127b4c..4137666e7 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 81e3ae51b..06fdf24ec 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 8f581bc8c..760325a15 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 4de9730f3..7da05180b 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 2f54be886..5ca6bec6f 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 8a1cbf113..8324db462 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 1ca2d9189..ea34ddfce 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 ebf5545c3..577e2a322 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 875ca58ba..997d5f9d5 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 8b7f0b168..095bed62c 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 fcd92bc40..96ac33285 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 cd72e298d..033f6c272 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 0ea59ad36..4b030e887 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 cbe4e4dae..c482cc3e7 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 eff55c15b..bdf03abe8 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 fc1666721..7afeaca1d 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 1e62eb80a..2ed8203c0 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 0119da003..e2a8240a7 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 9df69e82c..9f3196691 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 e3ac4a9d5..a13c8097c 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 01757c221..475e0ac31 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 dc87c3e6c..9d7be3791 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 93bbac05f..0a6e8cbba 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 11566b5cb..bdb6e414c 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 c5e3dee1e..a195155e4 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 e19b9d5f1..fafc6d5cc 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 d0c9dd1f1..9fa219878 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 fe1ba6b61..65836f7c8 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 f9d46dde2..e9a431a27 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 4fc4c895b..b8c53f67c 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 5e5d85074..7214af55b 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 a76078072..a78109c06 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 926ff15e7..99b022ad7 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 cf619ba83..6e4be6a75 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 9acf92a0c..2a5fbca2d 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 f6eee835c..82ea57d59 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 267634585..73ee172e2 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 504ed01bf..b58a23d67 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 cf1674fca..11b3e38a3 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 a1fa1e8a8..d272bbf6f 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 38e988889..89859aaf3 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 4c25508dc..954bd0823 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 298837282..336c54934 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 365e844eb..f58d7e079 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 198813a65..f06b4a2ac 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 7a82bfb9d..8c34d3632 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 52c9c20bc..276f0ca6f 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 397f8d191..306651b73 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 e272e3b2c..e5ab4cc53 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 2743eaadf..e4b18cf4f 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 1988745ae..a09418cff 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 e6340d419..db5bc40fa 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 ce337f64f..6a2995bbe 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 caad9c790..b1a91a6df 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 8c61c863e..0fd10f490 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 111193684..bcdfd8a34 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 3182dcfc8..bf35d7a36 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 f3ecd031d..a816fde28 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 f97d283b3..50185e482 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 e2e5857a2..9e9648176 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 c73e9691d..b1feedef4 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 3721df014..ce1f2980a 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 0bc43cfae..40d935b3e 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 657ec5f3d..802dcca62 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 74f651fe1..9d7796b8a 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 17a099256..af01707a4 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 db15bbb12..77efec307 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 3d5f58cea..3f5629827 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 e8a3cc058..87857af65 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 19f611f99..7bb3b9908 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 28b3a10b1..3122db032 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 576c90cc4..0021a8a7b 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 d6d90ba52..f0508ce25 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 c739cc0ca..de09f8582 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 6cbac373e..892c40646 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 a9e4d4cd4..b189a935d 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 46fdee128..89df98957 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 9f1e838c4..0f5d0c0b2 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 1ef7b2693..4005f787c 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 e7bdffa41..130a6f59f 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 ec17181e7..a2c171893 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 32beb6b68..3e66b0767 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 6a879c828..8faa25173 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 1db664491..d20efb69f 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 11c8e25f0..4a5ae9bd4 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 9b65917c9..bf1e86f90 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 e0f1f11d9..2f466f49e 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 78a908f9d..569f536bf 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 e0caad6b7..dc0a81738 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 897e2afa9..e15a0417a 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 149d8b2fa..687f5a703 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 3629570c8..10b8f6006 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 31e288275..3cd7b9ca8 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 c5942adbc..fee449216 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 eded9a22a..1781b3207 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 73d28ddb9..74d88a846 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 d40cf1bb2..904aff375 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 bb62ef40a..80a9282e0 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 4edca5a9c..d3f2cd2f4 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 502cf86d7..7e411f109 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 3d18b81f8..e39141e59 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 222c06e05..c4003942e 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 a8cca4ae1..28d51dc02 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 22c5190fb..0cbccb554 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 686638004..0e34a6c4f 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 f7f406cea..0e2e250f9 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 5652868e6..1bc13e40c 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 47fdda192..520290948 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 d8a0d9652..4b91145e7 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 f8519733a..0b79e7e55 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 0ed02f172..72639c829 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 43c90e796..8aab67234 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 3ccd1ca8b..f94da8617 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 88092a3cb..e78c02b25 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 40fb9e0d2..5bd304d93 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 e69500ffb..92e0cfdad 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 4912ac26e..63affdccb 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 ce42ca63b..60f7bf1c1 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 d21289645..0c546963a 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 7a99106b7..d5a639cc6 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 b17d638a1..1674c3c72 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 5bc6492bb..01f51ef9a 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 3778b57f4..c667e7793 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 e15b651a5..56b195b96 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 e625fc69b..5bbcb0625 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 fcf76fa0c..d9358655f 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 2f758b568..3b04590da 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 65f71e6fb..006a19dce 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 93f17863e..d66f87003 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 81477ef18..e400ea5b9 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 5c4fd7d67..2f00e5f9a 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 5175492fe..577ff803c 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 13ad70538..0d068b805 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 bd6432583..b0e0304a7 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 f5ba7e97d..e8c79f1ea 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 cf20ab083..36c82bcc3 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 32bc66aeb..fc2c96d66 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 d15a6c846..5445b132f 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 3b197763a..8664bf61e 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 8e001a4e2..ef519ccab 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 2bcd9ccf5..3a2054585 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 64a4fd5ff..c09f25973 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 62e80511a..f9ac15dcb 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 38ca54759..add820059 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 86e47af01..0e289a616 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 37db5c8f1..b4f2cf262 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 80036846e..46a6a4182 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 91cff3103..edeb4134d 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 f219edd7b..d4230b0db 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 69d4db435..9e4e7204d 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 c463cf7a1..597d30f90 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 689721a25..4ef9d677c 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 3442a7e07..5d5ce6b81 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 557e22da7..1662c3a0d 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 36c7b9a67..cd64e0b3d 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 bdb5f59ed..1c1da4790 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 817b3e6da..407c6c2eb 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 1dccd68a0..07f342be3 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 0787a72cc..06f4ce938 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 855633dfd..1e63ba875 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 045cdf200..62bd12366 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 062bb2226..4aa580b18 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 001dc37ff..3e6766652 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 44b75bc3c..a3f429195 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 057e243bb..4d4d34653 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 01d32d391..3a2025e31 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 3c04cec8c..214ee400f 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 c477a56e3..102641409 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 d69381a20..48fbb53d6 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 16d99b25b..73b85bcf8 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 2fcc3feed..1b7002b47 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 1129aba58..9f6fb507d 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 1a883d351..95ee39868 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 cd6de7084..4991d79a7 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 f73059f93..227bb5418 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 0c0df9c76..17e710dda 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 ed45d78e8..49ab1a013 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 cd3c14615..6a06daa63 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 ceceb2434..d8d9e7361 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 be103c66d..62ff88882 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 bd4cbbf0f..d4ad85738 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 501feef94..f68e9ec03 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 3c84c826f..cce4685ba 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 fa0fdc9d3..b78fd062c 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 fc6cedba0..e7c9fff23 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 97741b623..3cbc89ce4 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 d147a01ec..ae3f10237 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 6a8a66fec..3e5dd92fa 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 e6221fbf0..0c3df52aa 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 1c0cffb52..0a93114c2 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 5438f0392..a403984f3 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 1efc9b09a..6bad8b3da 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 225756098..fc7bfb796 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 2e3a9da05..a7ed3f6cb 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 2fc65b4a7..6744d0165 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 c38b7f761..226e2a985 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 54d3af187..fea680320 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 bddde4907..a21c71f32 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 0556c2118..dbe995f24 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 1f10be2d4..01212163a 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 6853c0161..7d0c676cf 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 88407390a..4e48c8794 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 a933c3f3e..c604ab6ce 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 0712d0a8e..5c8e2e772 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 c557c380a..b68c6518a 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 6e4c20812..7b301d094 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 df7a23287..71a1d58bf 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 2b6ef3d51..a20abaefc 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 6b5c6ae3d..c918af312 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 a813f57a4..aef08b771 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 026e4f962..44ae0a8e5 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 f4ab39580..cc680e560 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 df4342de4..c5788525c 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 40f52ba23..e577944ec 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 c37fc30bf..a7bebe836 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 72e4866b1..37b21c550 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 5265d9182..e5a2d4147 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 d3a3d73a6..f969b8563 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 c22aa9471..8febe9d4c 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 99e7d3a45..8a19cca39 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 d9101137b..593533c48 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 ace3a6c71..645676539 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 18a76e005..b1b0d2fe6 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 e97e61ed6..00766e688 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 b06341ccb..70efe6752 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 cf353819a..9204b77dc 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 1509f6a92..65fdd44be 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 eafef7f14..a489f3cb8 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 2f2f2da0d..64259afd1 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 1eb183c87..f31efd9b4 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 37e918e72..4f0106437 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 f68f29e7f..44d51d7f3 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 039071bf4..bd4691303 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 dce85b470..7ab88b18b 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 93c7cd165..bf05e07f7 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 c19ec0fcb..027505f97 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 ebafb9a81..4abe98c9e 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 136402783..7be106f0b 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 415a4f7ab..96f910481 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 d9b9bdf46..9f756e554 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 fe807c7df..d53466b0a 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 04160fcbe..dab6173b0 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 cf15bbe1c..d30e9ae9c 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 7b0c8dea1..05ccfa122 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 f795f6373..13af359cc 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 01b53bf27..c62e27ed3 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 4cef9d8d7..d870f7197 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 7509d1321..457e48299 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 0bc964d95..998cf324e 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 38997125e..538ec5bf2 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 3dfaf369f..bc925a351 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 0cab6463c..a0c0e1ce8 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 a1bccdc04..06d25f4a7 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 1f0ecc629..d84a8e9db 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 4cb02ddec..af4aa215e 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 996e92b49..42d202084 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 dadb9a1ea..f94da2f37 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 04ef0c3c8..d67677fc9 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 bd6226084..fbbd3bb75 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 995b920e6..9ee779ada 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 8496a395f..d826a6a64 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 e5019ea8e..5ba034e06 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 2f42d3f1a..857dd04c7 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 5ec1c06de..fa9ccf149 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 d7844bea8..4a1a82b09 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 afc1a6c09..5b8facc61 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 315149b4a..675412549 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 969913e02..0cadd56b1 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 aae88071b..cd40190fc 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 99e50574b..97aa24b22 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 5a605b888..512e29fce 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 28e9fee6e..ce6f602d6 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 d4822fbe6..d6208d079 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 72cd026f0..2eaf91554 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 a4de0bdd9..fc695ad09 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 ecdbb0a03..fcdad31b4 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 c600b29cd..101c015ae 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 3981b757c..f359adcef 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 7c2a188d5..6049d100d 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 c9cbf22b3..6c87e14aa 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 e422cb6ab..6c6519f84 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 b27ed61c1..bd1c7b60a 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 95984893a..919ac2a1a 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 86d388205..9678f11f6 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 17d6a4f65..b7b4dcc06 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 3d16a03bd..1870fe2f4 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 57c5abdac..a1a6b6915 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 046f9b9aa..6b8d63f93 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 2cee60e5b..579ef4a11 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 f8853e6fd..b953163a4 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 bf1302c0d..6e92f54ff 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 0ee1ed522..7cbe6f137 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 8e5d5ddd6..99f094418 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 e89691322..19d4da0e5 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 5847b4063..2033bd85f 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 a872c87be..948d32bd6 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 ea95a5ea7..9e005739a 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 0e11695f0..dc738bcbb 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 849fcc201..db54aad57 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 e290783f6..a1cfcdaba 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 44034240c..54c401e5e 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 e50088e34..5c393d6ab 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 c4f50374f..81ce3687e 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 eb14391ff..3ce505fc2 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 95d8c92c7..ddd9a3f35 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 f2a960926..159b50b10 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 75558ab9e..275c7c9ca 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 ecfb65eae..c16ae49c6 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 d4b4b7088..3fc33dd26 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 ab648016c..982ef891b 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 28b051fc5..49b7cbd0c 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 1d42b0a4b..6c6e9f914 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 512affec4..c7a861463 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 2087d265a..a495a6625 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 84dc0d9ef..8d460d582 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 8c919678d..3f67dc0e1 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 61d7e5076..0d284b03a 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 75a401bfe..c71470fd1 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 a11432064..ca0bdcc5c 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 e4a157733..7b31c9270 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 6a1edd457..6f87684bb 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 06d57586b..3f8aa1949 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 10621966e..355c5694d 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 4dbed3fa4..66567344c 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 93d19307f..b430c9c28 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 e47a6b5f0..c0701b2bc 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 cfc65ceda..17b789ae0 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 ca99e4e05..e92808715 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 f1350a47a..769ada9bd 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 62f246681..e60eaab88 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 2cc96bc77..d8427b1dc 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 e12414930..6720559bf 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 49927ab4f..ef1fbf19b 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 b8b1813fe..527979818 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 e6ce31e1b..f5a773780 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 1083f279c..8a1174f95 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 8574fb31e..e55874bea 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 9135c8acd..154939277 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 63c0c411f..1647e9ed6 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 5694030f7..626a5547f 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 7291b1496..8168040da 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 2f1c383ae..928349b48 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 05d98ac70..c991f6b36 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 a01345bd1..f6b379ccb 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 7d6db3f72..feb480c04 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 8d23fe76e..631c55a96 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 c0af23f39..5e32edb92 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 c29ffd8f6..2c47da73f 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 429783f53..3d8cc2c13 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 cd6ad4550..972cb46d4 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 b767aeccd..2d5688997 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 09364c496..675ab0b19 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 faac85596..d4d0d2705 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 ab2d3817f..ac7b23916 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 3561011ac..0c349913f 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 0aa80bf01..6846cca43 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 2430e4741..bdec9b57a 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 3073d2cda..44a7f8bf6 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 fc1e5b7ba..4f458716a 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 7f8c0c60d..fd9dd24ad 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 6c2a38a4b..a23596308 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 a40dba508..c5197a4fc 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 c4ed8601e..4a14bd1e4 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 617c6e7d0..49cf33e95 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 67faec0c6..5aa2385ad 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 8513241e0..1b8e373b6 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 e820d71d1..5e384f8df 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 f2c8926b3..71d0ae282 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 ffbd2fc98..fdb65a81a 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 0612c5058..ee3bef660 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 a51e7e280..df40d94c8 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 b8d79d42f..63636dd61 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 27cc31ea8..d5c819558 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 195fe54f6..82c1e6bd0 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 3e17cb934..76803fbb1 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 1d593dec5..f42c166e6 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 d2b68df44..6692acbe7 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 3b02ed5f9..387b06ec5 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 27c1d2920..e8b1e3718 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 035b073d8..c7285c09b 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 010155b35..0c72bab82 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 0d790e357..ec139748c 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 dfb18f0ed..fb89cc8b7 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 2469f7f0c..7b6bb285c 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 6d9fdcef7..b0e8eb803 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 66f5ac1f1..5126adaaf 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 9860af500..97945bb81 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 5a8cb8802..5ddb439e8 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 90a2e77f8..801a04e53 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 86c65e60c..6659f209d 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 8175f0280..045da6c3e 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 379d29e23..e2198490b 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 fbf30788f..1df488792 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 f33fddbef..92044f40d 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 6d6c5ef2a..b36e9dc8e 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 1b930dae0..e35e56008 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 4c0ede6ff..5ed60b950 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 14b54bf3d..e7c7e0757 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 0e62ab89d..f0ca01ce9 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 7c42ead3a..edb02ceac 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 ec0aaea11..a5b9d004d 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 6bc17aa4d..6bff6e192 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 93361b4d5..554b09a89 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 b7e480ca3..191636ccb 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 9417e8bc8..a1d63af04 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 8a09c8793..5c48833f4 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 5e289b7c8..4aad9f0f5 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 1c2bc69e4..734cc4169 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 3f1eacc0f..8598030be 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 5096de5ee..871354239 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 a984cf2ce..968794988 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 330d2d80f..f3bd78d74 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 1fedce131..fde05a668 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 d17530fef..a5450f4e2 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 2ce9a67c6..a11f66b3a 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 052972948..59acb1faf 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 6d1340e33..dc401a12a 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 7cdabe593..d0d9f2c76 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 ebcd50508..23d109082 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 5c0e75c49..d63bae093 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 2b00fe739..3303b05e5 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 d26e42479..94b9760cf 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 5769d706f..4c1507fa5 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 eda8789e5..409f6a869 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 e0b8ffd7e..5a687214d 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 955a780bd..3976c5207 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 21cc1886c..56fc7b6d7 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 306bdf88e..b184d83b7 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 7ba85d97a..47b79bf92 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 691b45d38..6cc5f0f21 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 a5547f1fb..3a0ec690c 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 e79a2eccf..ef29b6fc0 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 579034766..b97933df2 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 d2100f374..74e388cf4 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 8fa417645..15a82d9f3 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 735ac9b13..59c8a8706 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 850146b16..423239583 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 b5855ec4d..77ed006d3 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 b8b421f63..a16369768 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 f841ab88f..cc66028d3 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 6a8add979..ea32d6ec5 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 8a921b728..28b695136 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 117893934..cc67541de 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 db8526c9c..01e120e44 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 7df59ee12..ce67600cf 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 f99e961e5..420335683 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 7ef29d657..e2f3bfa3e 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 f334da908..1c9c2c759 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 5a0fdb391..2aaee530d 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 42d16369d..d9ecaf9f1 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 87e3428b0..bda1b3ed9 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 26fb365f9..9ec302f60 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 aa2841185..91e516239 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 1922c326b..6a4855238 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 01ce57fea..2b5fc9003 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 a99745636..e2bbcaefb 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 4e13fa044..869225ce3 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 b21d6b14d..5242d8ed8 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 499a84571..3a604d1e6 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 a7cc92647..e76489127 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 ea2bdf76a..3c36b3bbe 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 3c5c69707..f3fbf7f1a 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 9d26a0361..29233481d 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 2d5cd2e1f..a2fdef516 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 ebb559465..df73dd08c 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 a351f896f..cb015ea7b 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 fa8876c77..417c09c56 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 58aeffa98..9e034082a 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 7836202d7..1e4a3dcf2 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 f028146c9..b8391f450 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 758c1d26b..b6c0421e0 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 00169c525..384792290 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 501c609a5..209c2505d 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 d3f379743..70a564948 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 eb72be13a..09623f3e3 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 3ca238181..d21786bb4 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 1521971f2..6856229b6 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 0b1226324..5f03d1e1f 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 bd714196b..06427c4f8 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 de4dc8de9..b5138c497 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 3108b41c6..3b549ab31 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 97a764780..24b8f49f1 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 f1f4370c0..9353854ef 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 28d781f65..24330f3d8 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 62f7d51df..db9c0e9b7 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 0280a1fec..cb2b5b81d 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 72d5a7549..d09c17338 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 aada6cdbc..27a0ec770 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 712844a5c..76bfafa6c 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 7ca63874b..8e9f9b123 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 42831e999..f308f111a 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 b5a83d8c1..b4f454740 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 c199e0e4d..7bdf643c4 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 b2fbcf878..b183c7062 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 130213851..1863ca249 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 3388ae0e2..2959eb00a 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 b79e97689..30b284ced 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 306db7650..a11654e34 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 605647f2c..6a2aaf44f 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 df3a3d3a3..5b2c74a58 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 f64784495..eb5d928cf 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 9cc0f958f..f1bba42df 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 0682d4ce3..f4c2ebb93 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 97c1322c8..43608da83 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 b74edd3a0..850fef9df 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 357852cce..2f7a096ff 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 5dd48110d..c2369ea80 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 43b40736a..90bf8da6d 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 aaead5954..a99332460 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 8e55c2d06..3820d378d 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 48daac12a..a7ddcf899 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 312dde062..dbccdd0e3 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 d01438b7c..c12c2cef4 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 37bfcdad2..77ba4cc5d 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 65be5c71d..02eca2392 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 0036bc009..ac573257e 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 ee4ab4852..7fd45c065 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 c335a1a4a..1c209d970 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 7716b8d3a..dc2ea8bf7 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 4173e95c5..614c19ab1 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 782fd84f2..60f7641ed 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 315af66c8..f5ef8b4ea 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 16562523b..e4a50a9c9 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 6042a842f..3ddab7b75 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 7e43a30df..c3a0b6a2f 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 8c461158d..3d8986038 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 3e8f13fda..667f2d472 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 a6d27dffa..ddabdfbbc 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 5d63af47d..550db707d 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 3d8bd99ac..bacef4abb 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 7243e6bf0..9cc12298b 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 f0b1dc814..475ab8b07 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 5d8041dc7..4c50b1fd1 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 8c388c8e3..36f87aada 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 86d500158..b9b725d77 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 a088dd7c4..45089257d 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 a70c001bd..2bdfef285 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 2171904e9..e75fbec99 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 75b6de278..c07218cb5 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 36cf9d6f0..8f8057150 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 f9581856d..e8ca4eb72 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 368a79238..bac6fdabb 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 50c561db1..35b9f3a67 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 5bdb4d2a5..085f2b59a 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 52c176047..4f4ba3cf1 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 a9ca0a0ec..c03719a43 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 fe3ff751a..a24061ade 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 c90b546e4..c64bb5019 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 539e1e74d..760d5041b 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 a1b846951..ea85c175d 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 f1247f673..e4121ec95 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 a6c7cd878..54044754d 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 0c991f7c5..3f09168cd 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 44051c48b..49c1c1799 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 2672e5737..abeee5c7d 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 7ada0f676..3358be261 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 c5d35d2f0..cc25518cc 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 4c33dce85..9425239f6 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 77bf2e10a..392815b72 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 4b396ab78..9e4dc98c2 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 c418f3a14..0e0286231 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 3dc9f68a5..caa6e69d1 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 7b7caa879..335b11a9e 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 8ff08b0f6..c59cca185 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 de8468689..381d3d8a8 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 b7eff8e4a..31c07c086 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 7c7e78fda..50e76aeb2 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 16250efbb..a9dcf1131 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 e39a79e0e..650623dc2 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 3cd034cc7..6afe310e0 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 9adc27464..1a2ccb03f 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 eb8058817..c33556115 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 50bffcb51..8bd6ebd40 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 2f32d1496..135f711a5 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 babac8c07..4b7e5f05b 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 edf6acdaf..3d418f87e 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 1f8e3ebd1..d71ab52f6 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 6b9a779a6..fa1d0a70d 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 e7d50269c..bc393ecb7 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 ad75df1bb..c5a81c790 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 fd2134711..8e4d95e6c 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 bbdcdc109..36090d05b 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 a5b59beec..47abc2f46 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 a18fc8192..12b769b16 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 c669830f3..7a49c0ba9 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 85858224b..9830ecca3 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 d851a1a0c..fc6e8dbf6 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 90d8d2065..b18353242 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 432d4f03e..51ea92bc7 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 adf08cf95..3c63a84f9 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 7bd751da2..87630c456 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 30b4faec7..6f1e32153 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 fe656cb99..9b8c52ffe 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 87adec0e8..5e0ef8426 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 1490a0118..0f76c32fa 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 9101dd3bb..d5731852e 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 a49bfeaa6..95dab1857 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 c8b2b7099..d5663fdf0 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 f63932350..f3639cd31 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 baa5dba14..3fdce06a7 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 124970447..d99972e2a 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 ac17d7988..430ba3d3f 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 c52dafbca..fe068e7b3 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 5267f0f29..09fbaba3a 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 cf8834022..53130fa51 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 e2171036b..c56a4586b 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 bb86fe240..baab3051e 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 373b635d4..f6ca61234 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 2f8fb99fc..7fffc5389 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 9e6930d96..0601b8c68 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 22206c937..19141c72b 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 a7c4b31e3..f3ac17fd4 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 3d0011a72..9489fb6ba 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 454a7367e..c896d299c 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 52b1095f1..78d31f3f6 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 9fa602397..bb1821778 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 e9f1d9e58..c56cbe5b8 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 ef608d625..562ad3f5b 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 0666d3f2e..6600f0b06 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 f103fb3bb..b6bcb2871 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 0ac774262..f1cc00c3d 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 b2a8855e3..dbd17e85d 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 4673b92cc..f10cab7df 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 6c24399b3..7abd27377 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 47190bd8c..23d77a8e2 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 24f6f55ba..32063a0b6 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 354da62b0..98fdb4dd5 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 6ae1e223a..f6d3d179b 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 fdbbe98e9..34772020c 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 cd0f4d628..e4eead023 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 f5c4abc9b..79255e613 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 6e182ebac..d66d62638 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 198840f94..9e659a0f6 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 3748bb1b6..84e7cad52 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 e43acd252..45202a354 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 e4e127e2a..27c9a15d0 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 3361afe98..44c7c4e54 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 3da293aaf..e320c5b77 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 4b18d39c1..f5c04cadd 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 3055a56cd..fc6329a03 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 ae99750c0..21b0fefda 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 75efec049..c84d8e63c 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 0fcf86903..0b4e39cd9 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 4f0bfcc41..3d8898638 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 067c637ad..dc303ec64 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 b5c5ba156..61c03a7f8 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 4b4ccad24..1307b7b20 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 53ca65e96..6baef4a56 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 6f61f951c..eeacf2520 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 fcc1d15c2..9332deb05 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 612690c35..67ee7d030 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 d6d0d2c9d..b6c3e6c5f 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 f031a397f..f5b787f13 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 49a451240..2b0cd038e 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 9185e9542..9fc655db5 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 b41278dfa..eee9a51cf 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 f93ee2807..5fd536cbd 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 ce95fda0d..ab8c86e7a 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 ba4fd48d4..37bdbd32b 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 3b090a428..992d11e67 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 7fba12490..294fbee3d 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 2b02ccaee..394786a8b 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 83fd1adc8..3b3da3fca 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 602c80414..dcb88a297 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 aa2c90cb9..53f4bc172 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 d51f089ec..2838d910c 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 675486ef7..a1ff36e3a 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 73f13b22d..b740316b8 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 c2bd0afcc..8a56740a0 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 e0c952401..1007b256c 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 9107497f9..fc14fbb23 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 66b8cfa39..a1e79cfb3 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 1eae4a050..d1eca583b 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 f8cbbfb64..f8a11806d 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 7984e870d..323210d14 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 163bbec08..9a4f08d74 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 816172e75..41a0cf2b9 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 dd8c233df..954ab0ad2 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 9c4c43873..2c6bf0c4b 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 5b2cfbd7d..b37a7141c 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 18294f34c..8c83d9e0b 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 60919975b..b3a168c6a 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 d1b12bd7a..069c67e74 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 2eaef306e..934f8dd89 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 3e7f1f66d..ef468d513 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 43bf01b80..a4c817486 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 ca33d1a7f..1b64d9c44 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 304e57f4e..6cde41d6f 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 2a930302d..a795cbdaf 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 1922a13d6..0eff470ab 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 86ce57fa8..5cb8060b7 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 f51b2d994..3e744bda2 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 2930fae9a..507eb6695 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 7500b0ebe..8cf29824f 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 2938717dd..6008d4dbf 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 9d1623c99..9942ad192 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 072820673..befa8cb0a 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 1fab33580..877075a83 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 adcd8b672..7805a5284 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 995300384..1a097a4e2 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 ee0b03668..a0f3e520a 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 39110f149..c33f7c4e8 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 0ba8ef07c..195caada0 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 e668bf0b3..74b875e54 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 25c4df323..a04f13ca0 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 1b9a681de..e0ce27f8e 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 b10ee8cf5..92b92442b 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 e29c133fb..8aff9ca52 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 4e5461efb..a3a36e554 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 b920ac567..6a1755958 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 c78a19878..80e760a74 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 5436c9c52..64aa09553 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 4d1e4ac41..f712d0b89 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 f4b18687c..a5f6a5588 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 c32bf096d..f6264d7e2 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 8bd9703d2..6349ca49e 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 be8a4bb02..2975ba4e3 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 57950f9e3..eb4ca774b 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 b7fa0fe64..0e47de433 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 686ced9a3..920215bd2 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 e8e27a2c8..cf0cc4134 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 5f89314f0..6f0855950 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 56f2d0abb..bef8f7b80 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 31fd99363..7cfc5f378 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 416f73644..9972859e3 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 c5fec3f2e..b324c8af8 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 c5f719bc2..f12efd893 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 21e9bd2e7..41f0fd297 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 f8d56fac2..5875410bc 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 40d22a209..a708247a2 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 d2dc25b16..131725877 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 14be13d71..ef84ed421 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 ed09f42d1..52d0163c9 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 c2ea5fd27..76fbb94f8 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 2ba933a15..4c3564c82 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 4b4f84595..35b88dc05 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 98ba8d515..3f7fa7166 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 62359da17..50e547e4e 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 64431f2e9..40e5de84a 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 d8e432524..281c82962 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 3c2aecd1a..35fc3e530 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 c2f2e6639..67b857233 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 cf482653e..6447dcb08 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 a33a2aca9..cfdc7ca0f 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 61cfa26bf..c19a818b1 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 2e29096f0..2917f42ee 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 69306e7b0..d3d89fb3c 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 5c2fcdd1c..6d0cd8e59 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 befc171bd..e04468d9e 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 25aa947e3..86c77cd19 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 c7930200c..59be94a22 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 6fa81a185..1c6a312a1 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 8eb301c7d..4b4f17d0f 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 e9cc6916c..44c6b0e0c 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 77d8c10e7..2c026acd4 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 4e17229e1..5c8e86356 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 260ce3783..ed5130b66 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 5c2f64a1a..47f3a0e85 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 81968a10e..2c7ff66f8 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 03185ab74..93b0362ab 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 7852fd7ff..4ac358877 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 0eedefe75..9f4c85d26 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 fa2102db9..1084bfe28 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 959e875b2..66010ce09 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 c81e03e84..7d8356565 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 3acc89bdc..36b89be98 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 4e7803b10..836c01a09 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 4b51cb01c..256f098be 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 920a31f02..ab50caf49 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 70adc87d4..1b6258e0a 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 94a9a00d9..11c3131ad 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 17b4d3025..a610c5d04 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 8deaeb5a7..12c070895 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 25aadd81e..98b4c08c1 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 ce7638163..8752a9635 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 6aa4679a0..17c94bb93 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 430f41cdc..ebbdab0ec 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 d405f5f81..d9b3ad208 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 bfad2e194..cefb84892 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 3b8f892e6..7101ef8b3 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 c47dec9eb..e78fbc7e6 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 466649754..8bdb457a7 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 ba98a24cc..70e5816e1 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 1dee4e859..567c39f03 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 ab227c1c6..b10543e1f 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 b4550b5b2..1fa59c19b 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 d5759f33b..7cc818a79 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 5cb80f329..b76212d1f 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 2e63e92ee..1fd15f4d0 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 784c91e60..3a664a607 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 7fa43d443..186fa1008 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 7ca2a1fe6..7d094ef52 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 83755312b..45ff1021b 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 fa326771c..510b6cd2c 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 a27e48a7d..8ac1e8d21 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 52703a8a9..198fea5d1 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 fd7f796da..71a93b5cb 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 1729ce9aa..d1194ee24 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 c453178c6..e50a92dc7 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 1ece5a948..3c674de60 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 d2c7b6f16..da8209352 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 6ff7fb3cb..a7b5a8d1a 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 4ce63494a..129c604bc 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 044176414..84d7feaae 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 8eb35cdad..a2a6bcbb5 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 147ec7b70..aa5e9dbcd 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 e1b51cb53..2ee24d1a6 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 7f23ed7a3..40711c608 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 4c7b6e51d..bcbbcb613 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 a842c2b6f..d06f06f4a 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 f5130f291..1062127ae 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 6bbac5d20..8e80d0eb8 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 39d1fe051..d499ba67b 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 1701155ba..5cd57b9ec 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 24f77184a..1efc40b7e 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 b00404aa6..5be52be4e 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 31809b357..e1b6db7aa 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 d7bfec9d7..b1c448114 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 e28e95d4a..13af329b0 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 612dbb10c..74f22274c 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 5ff5d088f..4f7f756b5 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 d7b03a8e6..50be0dea0 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 7bca09a92..092c4a765 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 2f517342e..1b55566f3 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 661cabb92..41b2413a7 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 d72dd8d09..af21c07bd 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 e1d61c0d7..3a257c7d6 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 670130b1e..b1642ddba 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 0b600bff5..4e46f886a 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 620c758d9..14dfd23fa 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 1b3e1e56a..7e9da740f 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 99e8c46c9..10a1117dc 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 dd3cc4add..535d17531 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 7e4fe54a2..624b430f9 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 a92cccb24..c9bccaf53 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 798e79237..c34e315b8 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 51c8dc16f..90699c562 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 5508fb59b..4df58d350 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 e8301a134..d93858103 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 7eec54c4d..9ea41c09c 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 4fdb91cf4..d801be629 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 9f50d8a8e..27385be0f 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 72664d96c..101e1dc29 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 928b980f9..4c0dff1b1 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 18cbb2249..1e530463b 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 59521a674..2b37c36a7 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 e600d54e2..0c34dba44 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 3023164ca..c981c6593 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 0c4f62a74..b56ff634c 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 86a686338..a1e968bd8 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 2a9fefdf4..a361a5012 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 4201eecec..a08156aff 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 d8662f13f..f6bf42ede 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 2c3d07708..06814f5bf 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 37479f7fb..ac651164c 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 0bd46790f..8ad8b8a5d 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 6afbc8b26..fc54ac521 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 f5d632110..5bc915f4f 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 ea05b9f79..4a2e55d76 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 a45fc526c..747cbe146 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 ad07407de..2ce115c6d 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 b4b60a328..2ebc7efa9 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 943c6fab2..2a36379d4 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 8e38c9c51..541f799d1 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 1a2ff94d9..5b0ca70a4 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 2ef7e9cbf..7d18fa01d 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 8054244cb..9a847aa9d 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 86f9b1ce8..13f9199d7 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 101936c8d..5cd183680 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 5eddbd6bd..6caee239f 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 4df8d9427..35348b1f9 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 b809ef25a..e35d2d26e 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 361a339a6..119db128f 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 ece14c6c1..be3370316 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 9f2652093..b035cc908 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 ae64704fd..7c0f4840a 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 b57db2bb5..1b49f8de4 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 5d835e32c..f759402a9 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 90dc77f45..cb65a2274 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 c919df99c..b85e10a04 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 88a6cbe45..cf4ef399a 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 d79adcfe0..8e74c5e71 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 a8414e2f9..fb7eaf6e2 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 492786528..1a19cd8a8 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 46eabce8e..e1b2905c8 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 c69f479ac..cb66c915c 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 29e0ca6da..269553099 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 66faa6e15..332a8413a 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 873d09148..ce6c98d2c 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 e2ed016e9..fb3308857 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 cbe729a9d..d0866bb85 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 1659fe659..a921cbb9e 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 312b1edad..2439b86fd 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 60251a9df..c2849175f 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 6cec1652a..cecfbe48f 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 41ddc0b09..35616a395 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 7cce00239..11d31c749 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 2e2a822c4..756c3a52f 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 736ae8834..0f7a16e8d 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 65c7f9d94..dcf75b726 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 9eb4e7f45..1a904d055 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 4f983941c..bdae54385 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 e9bb32d44..6379bf671 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 baf255201..e0e44d01e 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 66e8af22c..d3fc1d24c 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 4f5723a10..3a2277c38 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 94ac917cd..8211f47dc 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 0675428e3..6da7aa8a6 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 14e563410..57649adf4 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 07e681e91..826292361 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 018b38596..5f0950a97 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 701ce45a6..5c38bd112 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 2b4f41658..a6c3f780b 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 31b68385f..3dffd474b 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 98dd30a83..3d7bdc70b 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 23039b850..b2a8860be 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 3b19149e5..ec39c2699 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 44bd341c5..cc1c99479 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 6c15d5425..f86b00f8a 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 a99b29242..87f97b16a 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 117c904cd..64b8cc4e5 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 27368289d..5e1dcb014 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 3b4a15dd6..628cfd901 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 c24e16a72..32a30255d 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 c789f33a6..1845a7c42 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 93b9e0147..2cc1ef554 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 c36c39a53..7b183674f 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 7583e13b8..74f0579e5 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 819338814..6df8b1048 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 2dada0b52..e257b015a 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 b81e7af80..19e368742 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 2e75aed16..395ffb8ff 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 90e9ef6ef..4d950e3ac 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 7e7453590..54c1295a0 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 2de31f94e..3e041c52c 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 2e9c81645..da6a14158 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 b21f63564..02b1f6cb4 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 c6a7b0901..b398ab69c 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 d23140b4b..e3cabb055 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 6d1d26c3d..4ba595955 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 004c2ea12..2c432a85d 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 124575d62..ff564712e 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 e519fa5d3..3efd4b12a 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 6e788af54..c7747e731 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 e92bec2c2..30587d816 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 49e4f4a1f..180e006b9 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 b2df22ac2..9c0f2a234 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 f9d87a127..fa155d562 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 a7a5db3bf..deab92485 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 4009cfb9f..dd216f23d 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 14e6c87dd..dc522ea95 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 2626b4905..9ccbb2404 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 5fff86fa4..10aff80e1 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 86939e0c9..117462205 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 2f473fedb..941ea9876 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 36463c49e..7486665b8 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 4c38e605c..54955b8b4 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 7bb36d013..0d1bc463c 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 59223e126..3271e44d1 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 799f2a2df..c15802ef7 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 55b32a1bb..d2cf4810f 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 d676783cf..44075de84 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 0856898ab..fad046934 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 491fb1b99..d7031d07c 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 63bb8fa7f..e53a51bce 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 7dc3f2774..60c33be3f 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 47736be04..e5413243c 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 5838c08aa..cde1773b5 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 ea1776508..9d49e3a60 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 a4b23998d..0e6f33d0e 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 bb040095b..041bbd85a 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 8bf769da3..39c03e1b3 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 91737ec13..14285b14b 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 cdb4f92f1..27285b73f 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 972bf98dd..1abfec7b6 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 312fb9631..c59eb6d17 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 5d1088984..67245f9ab 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 af793bd51..d4b9607b9 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 bab34b873..1726fd666 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 d17711a0a..aa6775d96 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 addde9c6d..09244b51e 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 d003d694e..1325a023b 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 351f213e8..c42de46e5 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 2f7ddc39e..600699563 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 ceba9ba37..f9232b199 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 f2bdc5b50..d58738ed3 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 7f2327525..b855c6376 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 5e65e8dc2..fdf479400 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 74dc3b333..881815707 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 98397844a..fe9f5d437 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 bbe894623..d70937a8a 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 12a1ff550..d710e2eaa 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 01ed4a290..7e4ddd188 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 55db6c641..e9a23ca71 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 e08716e26..7cb67effd 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 7376520ce..e3ab9d258 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 e52e885c8..2fdf8973a 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 d31470fd4..f0873b4d4 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 8884cc9d0..2f0800b7c 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 cf923a7f9..3b471a741 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 e67349376..8869c92d4 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 b181c1a99..2a15653fe 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 0b13a5918..241a26838 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 49a41c460..4f18ad463 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 da15aea68..6baba8e41 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 97937d116..955001729 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 52ab3dc20..9b3fac599 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 3b7c7315b..9c35a8200 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 4c4f1fd44..d2296a439 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 22b0eaa2f..fe15d4e0e 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 cf18148c5..605e5f6b7 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 791ef8baa..6210fe177 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 f707e4a3c..b13555cad 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 01b2603b3..0fa5563ca 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 951e135bf..edeb29fd6 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 a7ead9219..687a18245 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 2a166be92..c1c1a5afb 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 6b5ededc9..830cbc114 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 dedfe3333..fd936c062 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 ecb6fc86d..cd5d2168d 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 917225f52..fe3f62226 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 c1c77df9f..8f5ddd293 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 3c603865d..0a51a5c6b 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 21abe5ee9..38aed76bc 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 a6dcc5c92..514e28c67 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 8f22631b7..17dde5e36 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 784e1020e..61d098d8f 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 d01a7d47a..c974ed80b 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 3aea34191..ab365f666 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 d3a96baa0..bee0e74a9 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 20548a30c..ff562a3c7 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 5d0b618a8..49108a9b0 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 a4566101d..b185734e5 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 7ab65be36..f45cb734c 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 1428e1a16..14a6f3f76 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 635acf74c..d921d2f25 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 9c1b6ab26..1eb1922e5 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 1abd2e277..1bbec7426 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 4b6480a85..ed5cbc34b 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 45530b829..ed0816981 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 3420b4bb4..f9441c377 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 9ceffb933..1a7cfac24 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 8afba3790..d10f28f0f 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 01ebc4539..fc7d0db97 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 2f6738d38..b95ce42ae 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 bbdb97394..c22f58439 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 d8d5db2b2..505568e46 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 db9981778..7fb3e60e9 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 a1ea23178..964ebbdd3 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 cb2d608dc..9dbd423c5 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 205610e7e..5922c5bc4 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 de65cff68..d61d23c1b 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 b14068196..627cbf2c1 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 4e4b804e9..b4e653adb 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 cd49725a4..e1c8b4c3f 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 239ff877c..cea0c4659 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 b6a120bcf..9b032ccc6 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 e2647c925..1a3eea2c6 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 62b4c18fe..4e046d02b 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 daa7e8bc7..a0bc31c4b 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 769a3ee5f..01940a77e 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 1e988748e..054f2c010 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 68c127c03..26c073c0a 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 2e25ab3db..016b48365 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 e64784559..40cbf9031 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 59369d1a6..364b71e42 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 110ba8a8a..f820a7ac5 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 9d88a2f67..a39f980b9 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 f6d1c701e..a3a486953 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 708dfa549..c8a580e1d 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 859f0147c..a8050936c 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 8b4dab199..9ec762f71 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 1d4a787b6..fa2dc94a2 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 39de2fd80..6dfa6087c 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 4e4c01e43..174a64ff2 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 1982b1026..1188af673 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 6b9049fe4..4d01a0a50 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 3610266d7..179c7bc2b 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 66f36350f..bd1e98b0e 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 c13dda6e0..685da24c1 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 9d50c40af..854ec27e4 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 827995d5c..faa50cac5 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 1bd2f267b..ccf21378b 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 95da6f459..288e2ed58 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 3331f5b3d..acbe86755 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 5fdf2a098..c0358e8ed 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 360a683c1..a06c7da5c 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 81c48d0d0..11bb3c8ac 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 9c7f88c8e..2f53cb441 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 81a0bbd63..a7350abbe 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 bddce9623..da488f201 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 0391dffcb..17f2b1dd6 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 bda77cfd0..f35e375bc 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 f7dcdc526..22ff3cc6a 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 6db55c20f..932c07a0d 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 bbfe9dbe8..d4aa25906 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 b7927b69a..0b0945432 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 283d31ad6..6a60c24a8 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 30cebb4b0..31dbdf148 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 40c2c550f..ff42b7d01 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 5b0282647..9a7d37777 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 d15d85520..f86523fd9 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 2bd47f4f6..888640ae5 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 d839f4abd..0905c8d3a 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 f292d217e..676caaf3f 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 3df8501d8..0bd216bb4 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 44e9c8274..ec60e7b17 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 fb701794e..f79d6ecba 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 7e094746d..e620bddae 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 506a059a2..ac84af508 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 67bf6126e..1fa7e0fd0 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 0a04c706e..cd789f5a9 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 7884c560c..2d075d2ac 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 ae222a9ce..fc88f357f 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 2080efdb7..5b6888120 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 3152c4aa6..be91a1abf 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 69e81c5e4..35b1472da 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 2af2b38f6..4783b5bf1 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 c2642b4ab..ccbf36e60 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 51eea2588..8a30b2d3c 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 899e70998..1f608af57 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 f82379bbf..21e093167 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 aef7bf551..818390da4 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 dbdf352b5..004e26630 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 9ee312735..611bf809d 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 09e845895..3ac16fd07 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 3c40eca6d..9e294b4ef 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 2a80463c7..cb5b88888 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 491ea7b6c..4ed075664 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 c2f06b8eb..78bfafebd 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 5289713f9..f2e396e31 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 4a4bbd5b7..915ad382a 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 58b0c2d10..c8273f60f 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 6df501efb..31c22f580 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 9176b95ff..0969c85be 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 0a01ff778..3110fbada 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 c97819e3e..5a66b929a 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 f0592fc30..27742797e 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 769201607..611393413 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 76a299edb..910b5f02c 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 9984958d9..41ac3d4de 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 4b5a56389..54e7cd321 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 1ff08daaf..582fb9fbe 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 a75495ccc..3ee3ad2ef 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 7f79d2826..8d1878137 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 cda076d4e..c57b13829 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 7d2569bd7..ce196cbef 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 486eed8d2..1ea28acb1 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 db9831b26..fce5f2174 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 f86c2ec03..6c05ac6c3 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 28497d50c..35da7ee9f 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 67f6cabeb..5754f81b1 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 019cfca86..5655a1458 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 04dc4969d..8ef68962e 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 05f492063..4da4253f4 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 97a71dd9d..ea16d6c85 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 72c67ff81..71bb3b693 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 6c9079f6e..07cd97ef3 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 a301c6c9e..3b667c4c1 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 87da5dfff..c5b382a5d 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 c668807ef..220782800 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 88dc60681..3b5df5895 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 c6adb27e7..82b5aab18 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 fc5938170..d43d97796 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 a4bab39a9..b8e9b9e38 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 c5751819e..7e27048d0 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 f55e4b95b..94fe5da6c 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 3cd9aa196..e4ba77299 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 3bc02c0b7..9ab9aa5b8 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 c4c27cec9..7dbbc1566 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 aabe42eac..fde4ffb96 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 aca3621c9..8d4d095f3 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 9d71aea5d..defd6cc59 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 80e20287d..7342dcba6 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 d93852031..bfbd69d96 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 083d6f8c8..7f2e01c5b 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 447703c76..77226168c 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 7fde5f0b3..a776ea18f 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 5f752c16a..f798f10dd 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 0a7cbc97f..0e2996c9b 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 fe15d6e66..f98104d6b 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 0061f97e6..49876b11b 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 6a6079e35..2f6c5eb6a 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 eed94d4bb..b6e80af00 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 52111051c..ab838082d 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 5fa153206..af2eeffc6 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 406756ea4..cfd0ce54f 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 62116f807..287855a6c 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 c8a3e9c91..feb16d873 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 9fd7669b4..64fa9a494 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 6eedaf040..599416209 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 08e75ec42..28fae1510 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 a17f6a9c3..75aa7d041 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 c8856f31e..ed7ea3222 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 548b60da0..891c34f88 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 0d3b747a8..5b67756c1 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 1a66672c1..affefa518 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 9c2265f61..72e22d21c 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 770d52c96..1382562d9 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 e6750f508..a0ec530d1 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 a644036a2..0077e18c9 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 305d3a64b..82b1b133b 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 fbea48df6..402b59b53 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 cd8b90d74..895e3693c 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 b88f5ad18..17f5a8f00 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 8ef8aec01..009be134f 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 98e215ee2..f6deb6b36 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 87c8d05f5..c97f66307 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 36658795d..0096f3b89 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 18e7430ff..21e1883f2 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 3172153b8..e01de50e5 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 7281c164f..b0f70fcae 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 02cb09028..8ebadf74d 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 f540f3c6f..01eefc0d9 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 1d41edb3e..b367e8b1b 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 28dd269e0..f0562e2de 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 b60fd624e..69306540f 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 715df2714..625491f64 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 0bc71d2d7..062da315d 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 262aaf84b..d1e300d75 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 e1b70730b..8499dc4e4 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 b5209ad5f..117bf5cf8 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 d0874d10f..019a77de6 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 6ceddf83e..4c8d50bf9 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 974b0eaa5..a0b04f1a1 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 cbee3f85b..e986ff164 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 0f6cfad6a..f32943252 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 71d6ae66f..49b564118 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 32750c662..a4e474a1d 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 afe927a8e..ec4951577 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 8955f5c26..f6c55e8ac 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 7fe4377d8..1e3fa08c8 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 1fae43310..919fb9a7e 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 97acf09b4..8f831af57 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 39708da31..89be44069 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 2e3703fab..60b4ac573 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 8d68ceb14..1938e48aa 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 fe167a4a7..10d9af380 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 deafa341b..79f17f0c4 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 a3995a567..05cb4cb8f 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 6276ea07f..ec2caa598 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 45b2eaf69..98a40ab67 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 3d8a53f57..dd2aa9af7 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 d6c86844f..bd6b1f1d7 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 6d902e675..0c24b37b0 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 e1ed5b02d..f71561cf7 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 5b3899819..729a51ddb 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 41e1ccc23..38b493fd9 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 df97508dd..7b4b7b620 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 59b5ef727..05cc9498f 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 3ede26b38..f35f42790 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 35728019f..7c27574a0 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 6a42ced86..80b4b7f3f 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 c099ca7c1..28713514c 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 577a5cb19..37117a43a 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 3aa0ebe62..7d8ac5e21 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 c96a81421..f9e4ca10c 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 0716db34d..4388146fd 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 764961ec1..1634274b0 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 a141099bd..a150a4be5 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 d5e217c13..4695572c3 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 181423843..540b186b8 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 b6df9921a..c46b0ed70 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 77b21f0dc..116d1ad6c 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 db1de521d..b80e052f0 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 9a47cc8fd..9b8df1b9f 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 ebf3f42cb..70fceb382 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 667a18a3b..3d0f89248 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 cefa260bc..7aafae131 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 52a058464..77e66012d 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 894ac09fc..8ee49e363 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 c543ff5b9..45bf49c3f 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 3411873b5..3cc712bb0 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 e729cda1f..efb9d3a20 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 65fa44083..727a39b95 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 beeef19f4..641bef3a5 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 ebffac11d..7231b5f03 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 6de2fbcd9..a51ecd6f6 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 30f52db20..34138251c 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 50442278a..17fd21727 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 ccd7c2db2..9bb2ee660 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 415a11c14..496a18b68 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 adf80d858..60af4a1f1 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 8c3a53f92..7660bfb8b 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 e5ab636dd..a7f18290d 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 6446efcb9..f39652ca8 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 448ceb21c..3b0eb080a 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 8a20c447b..6ad95a534 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 a14fbaa06..fe18b610e 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 38a93a94e..529f349cb 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 c73fb89de..65623bb91 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 2182d2f04..8cc817edf 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 136df74c4..18bfe658d 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 31af892e4..57ce3ae5d 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 eaf36ecec..1fcf8dc68 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 3b4f87189..b8e2234d3 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 133fd01d5..193bdf099 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 92cbfe9f7..564ef6eb1 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 debbf46d2..34b2ea1b3 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 7e6070c55..8b53ff6ce 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 065ea5770..af37ab008 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 0c2506f8e..d0e1733e5 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 513c94cd7..db0890f29 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 f4125bd29..93862f263 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 778a1997a..edb6eb1ee 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 05e299c0d..1e4e810d6 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 637b14dfb..2af1961e4 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 5d2145282..23304c210 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 9622f38a5..3e9381d54 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 d2633a794..b760ca377 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 2f9dff7d1..752b0be5f 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 93d05b97f..bec451b14 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 1aa2da2c9..90f807f25 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 0fc3cd321..03babcef5 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 9be5f9a07..138611cac 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 c1b5e8091..a1bf07968 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 88d3238ec..c12bae8ed 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 0994f5c4b..3ea5ef764 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 7938c1c13..aa0121e34 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 59aef0da0..40402def6 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 936eae1c5..7e7eb66b6 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 6c0f90b76..14b2a5c90 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 9cf57efee..e960ed22a 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 790ce79ec..41fa2521b 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 62ea1be19..e30a07b47 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 26d3477d9..123784129 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 f4bb42c8c..603b8368b 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 a85db1fa4..b9be9d897 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 b3d1e09ad..e2e693645 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 935536f6d..89619a69e 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 bc8c500b3..bd6b08eff 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 2101c6767..d08b3e543 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 afa3a0436..5cc1aadb0 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 06e239a88..4476a53d8 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 46811ddeb..c6547f8a9 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 307046965..6b74705ed 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 3de61e94d..7ea4cd890 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 672204937..54dda18d1 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 203f7e80e..cf0ae286f 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 ee1c04492..87dbd17be 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 028d4d39f..2b8f075dc 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 b4ff31f22..8aaa4a9ad 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 9950f9f0e..45bd20c10 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 6dded592d..0840bf6a8 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 c03597eaa..e8beb7403 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 1addd98f2..280bf6b3a 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 9a5a0a1b7..08e1bbb20 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 234630204..c8f60fe02 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 b673a7d40..89817246b 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 945bebd63..c1c69620c 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 2f4e79d43..e4470ba5f 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 a7092e60c..a2917063d 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 b885b3cb8..d1c2f1fea 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 7ee7d75aa..365159189 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 eae1fc9e2..639f5adfb 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 3122d678a..2020085e8 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 1809e7cce..5cc0a51d5 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 b52656696..582c432a3 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 4715f8e86..e5152b6a2 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 2fe31e7bd..a1bb38b5c 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 8584008ed..ef33b4125 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 9ca7c705a..baabb38b1 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 9319bc628..2958b7ceb 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 366247726..135d234f0 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 c384ee265..98609b057 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 7e23f2ff5..db261c268 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 c0c9e5522..bea663f55 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 ec7537ef7..5cdc19b98 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 cccaee8fc..8ce2c4f7e 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 faa47ad38..bae90b9f6 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 87596164b..cd7881ed9 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 b62084eeb..7d64147e6 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 b1e6c649f..91fc58f9a 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 0ca6209da..5416f7d2d 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 5c800793f..bae93a512 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 ace290c9f..6fd0c5c01 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 36eef48d8..1cd1b8097 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 f38600d89..28666bfc6 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 c0cf65eef..e596f9013 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 3e86801c1..b290c756c 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 9e571bec8..8f224cfb8 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 476732ac5..d5be8c74d 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 04984d72d..821479418 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 193fe3b5d..b4aece94f 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 7f6564d69..8cf91774d 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 297cfcc13..106cd3089 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 a5b470b45..bfff1e77f 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 d7ff425c1..2892ba5ec 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 8c8419c76..6cb8821f7 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 60d5b52ef..6cd3196a8 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 b621a7315..52ca4dc9d 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 5596e905a..c55234a44 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 d007db502..b59a82417 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 f7f6e0409..9b09226aa 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 70fbfa9f0..7f6637104 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 1de047647..dfb1eedcb 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 1a08ed51b..2155d7145 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 13167c9bc..cecbfccce 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 54741b86f..2dbaa23e4 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 9a359e77b..23ab845db 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 8ce696dff..b1271ea03 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 a58536e54..6a6527069 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 529eb4116..2bdbc2cea 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 f091d172f..51ed6bd9c 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 12ac8d07b..54ea8f980 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 d459ce287..167e8ad69 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 1b2eea018..99bd77fc2 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 7f0ad25d6..5ebad73b1 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 9a1b9020c..a46f9dcfa 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 07ee62b57..efc0a1a12 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 693d2f1a0..f882e2fe0 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 64006d71b..0f3e66383 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 10f064468..65d08206a 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 1828ac2e1..22ac95f28 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 1ba057f61..88654541b 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 3107cf7a3..49fdcfaea 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 6604fd282..46110dc05 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 a146dd5be..171e4c138 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 d80756fd3..007b012ef 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 acfa45562..3748088d0 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 8fb231aa2..66fe8a37b 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 0124847f5..fe611610b 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 3baf3f61f..aca27478d 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 7e67048a0..6741927c4 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 6c63ca148..4358388df 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 668eb2cc5..865c41ef3 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 cb0af4874..51853c8ca 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 644a52840..d48611362 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 9c4db74fb..2887797c7 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 7fcb484a1..2291bd6eb 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 f220d68ae..9a9b3d9c3 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 e01f356e2..c0e29c196 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 79d2b0258..fad0f552d 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 e17f470ab..9372ec11d 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 1ef6d9ff7..2f16cc4b4 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 9c9bcb920..a7a40b12f 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 c43fe6159..514fe9042 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 b4e1fca08..abab5a5b7 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 3c70ecc7a..e54572b56 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 a3c91c622..ed71daa11 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 26f7ba44c..754217d37 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 701b9bb4d..b4a95b6d4 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 9a3c04341..df4670c58 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 27a10e3a3..13804fe08 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 1667459df..c3eb6c4a6 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 d1be5065c..4f42a27c7 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 cfbda2c06..1d48fc652 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 f27eff853..7f3159a63 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 83c7bebf1..2a6c69fdf 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 c4c311623..bb2308ee9 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 55af3f376..95a9b0ad0 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 8e89b306e..def2969ee 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 750cfc759..d3eae4337 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 11da970e0..6654d87c7 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 6657dc0b4..f029b2201 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 2f971ff7b..bc270c195 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 3ff8b6b84..9acb4cd7a 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 4f5c3bac7..f1152b7b4 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 3e6c955d6..78faa78c4 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 6ed4004b2..25ddebcf9 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 d67b2910c..c8e530689 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 4369b7fae..5ead33eba 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 ed0b8bfc4..be838ed7e 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 701f78490..79d313554 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 1387b6f35..44c9c493e 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 fac39dda8..5df0de96c 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 ad1ae32d9..0ee013a48 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 c8ca72590..4f968579b 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 c5a7121e5..e718a9048 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 ca640c3a8..a1f6f418f 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 63123571a..d62a9534e 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 72fef38b6..1b2aecb56 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 4e743b004..151ad6c69 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 2be76cf4c..c41c48580 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 e3085fc1a..090ffeb89 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 9e33a0b40..cbbcf4bc6 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 41a187ee5..08ecac100 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 ec00be20d..0d5488329 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 6d25ba71b..41f7a2b0e 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 a43e70969..d9cfdf1eb 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 145d7e942..2dbfb7615 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 ee41b6d14..db33f7f8d 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 388867534..79ed5b165 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 63451cf76..6f8fe561e 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 57e1d41f2..cd46af8a7 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 39667695f..21a299990 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 4f96f51bd..c615818ed 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 e2d1d1d7f..e0bba9628 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 e70af1cfc..85a9689a6 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 0263f93a8..c10eb77cd 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 22de0dae8..0466d8784 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 d6097798b..88dbc2fd6 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 2f36f0b57..7ff824a82 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 98b114147..f08eae5bd 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 30f357707..622cca383 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 0f53c796c..43e874a28 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 0daf641a9..777859285 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 9335c3e95..5e0d7655f 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 6bf7bbf2d..e196d59d8 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 f23d5890f..992f3a7df 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 b10664090..bafe79b68 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 0aca8e154..e2ca43b08 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 0c6c26db8..c19819637 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 e3f911355..c1038482a 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 57c055248..3b822d831 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 79d00a18a..072d5f4dc 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 aa8ad8772..8eb0d2532 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 c5cbf2f30..ccf126519 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 20da11d2c..9a0bdc0ac 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 82d135745..59a51162e 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 cb1f8d2f1..0492366a2 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 d230e76eb..69730607d 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 2c9ebed18..d3225210b 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 f7d111ee9..33043d35a 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 f14fb6590..05fa683d5 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 b85a7679f..2ad1d8988 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 ee0497bd4..6565822bb 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 78cd5ee76..ade658320 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 6a65f7b96..46e647f2a 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 9efa5ec59..62165d8f7 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 48167cd7b..a5cd94181 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 356944c15..7309c3452 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 00fadb184..433610fc6 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 ba67fbef5..d43273175 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 b847c315b..30ed55baf 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 4ecfb0784..957e2b8a7 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 0cae2235c..f5bb869ac 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 fbe9dadb2..c283d23e6 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 69cb6a047..ea4cb01f6 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 155b433c7..637f6aa6f 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 d56f20bdd..4ed6b3e9d 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 f23885b46..6993e51b4 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 6481e5849..d43e62998 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 4f8710b93..c0beddeb1 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 c91a93220..77fdbe366 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 6c03d6f2f..e867f61bf 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 9966a4589..07a296e7e 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 ff714df97..097ec4181 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