diff --git a/.commit b/.commit new file mode 100644 index 0000000..58c9bdf --- /dev/null +++ b/.commit @@ -0,0 +1 @@ +111 diff --git a/.env b/.env new file mode 100644 index 0000000..986a5e5 --- /dev/null +++ b/.env @@ -0,0 +1,2 @@ +REPOSITORY=file-icons/icons +BRANCH=master diff --git a/.github/workflows/auto-update.yml b/.github/workflows/auto-update.yml new file mode 100644 index 0000000..9d1dee1 --- /dev/null +++ b/.github/workflows/auto-update.yml @@ -0,0 +1,81 @@ +name: Auto Update Icons + +on: + schedule: + - cron: '0 0 * * *' + +jobs: + generate: + runs-on: ubuntu-latest + + strategy: + fail-fast: true + matrix: + php: [8.0] + laravel: [^8.0] + + name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} + + steps: + - name: Checkout code + uses: actions/checkout@v2 + with: + ref: ${{ github.head_ref }} + + - name: Read DotEnv File + uses: c-py/action-dotenv-to-setenv@v2 + with: + env-file: .env + + - name: Checkout dependent repo + uses: actions/checkout@v2 + with: + repository: ${{ env.REPOSITORY }} + ref: ${{ env.BRANCH }} + path: ./dist + + - id: latest-commit + name: Get the latest commit + run: | + echo 'LATEST_COMMIT<> $GITHUB_ENV + cd ./dist && git log --format="%H" -n 1 >> $GITHUB_ENV + echo 'EOF' >> $GITHUB_ENV + + - id: current-commit + name: Get current commot + uses: juliangruber/read-file-action@v1 + with: + path: ./.commit + + - name: Add versions to environment + run: | + echo "CURRENT_COMMIT=${{ steps.current-commit.outputs.content }}" >> $GITHUB_ENV + + - name: Output versions + run: | + echo "Current commit: ${{ env.CURRENT_COMMIT }}" + echo "Latest commit: ${{ env.LATEST_COMMIT }}" + + - name: Install dependencies + run: composer update --no-interaction --no-progress --dev + + - name: Compile icons to resources directory + if: env.CURRENT_COMMIT != env.LATEST_COMMIT + run: ./vendor/bin/blade-icons-generate + + - name: Update commit hash in ".commit" + if: env.CURRENT_COMMIT != env.LATEST_COMMIT + run: echo ${{ env.LATEST_COMMIT }}>./.commit + + - name: Create PR for latest version + if: env.CURRENT_COMMIT != env.LATEST_COMMIT + uses: peter-evans/create-pull-request@v3 + with: + commit-message: "auto-update: update icons with the latest commit ${{ env.LATEST_COMMIT }}" + committer: GitHub Action + author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> + title: "chore: update icons with the latest commit v${{ env.LATEST_COMMIT }}" + body: | + This updates from [${{ env.CURRENT_COMMIT }}](https://github.com/${{ env.REPOSITORY }}/commit/${{ env.CURRENT_COMMIT }}) to [${{ env.LATEST_COMMIT }}](https://github.com/${{ env.REPOSITORY }}/commit/${{ env.LATEST_COMMIT }}). + Check out the differences: [`${{ env.CURRENT_COMMIT }}` ... `${{ env.LATEST_COMMIT }}`](https://github.com/${{ env.REPOSITORY }}/compare/${{ env.CURRENT_COMMIT }}...${{ env.LATEST_COMMIT }}) + branch: feature/update-${{ env.LATEST_COMMIT }} diff --git a/.github/workflows/psp-cs-fixer.yml b/.github/workflows/psp-cs-fixer.yml new file mode 100644 index 0000000..f4262de --- /dev/null +++ b/.github/workflows/psp-cs-fixer.yml @@ -0,0 +1,39 @@ +name: Check & fix styling + +on: [push] + +jobs: + php-cs-fixer: + runs-on: ubuntu-latest + + strategy: + fail-fast: true + matrix: + php: [8.0] + laravel: [^8.0] + + name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} + + steps: + - name: Checkout code + uses: actions/checkout@v2 + with: + ref: ${{ github.head_ref }} + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} + extensions: dom, curl, libxml, mbstring, zip + coverage: none + + - name: Install dependencies + run: composer update --prefer-dist --no-interaction --no-progress + + - name: Run PHP CS Fixer + run: vendor/bin/php-cs-fixer fix + + - name: Commit changes + uses: stefanzweifel/git-auto-commit-action@v4 + with: + commit_message: Fix styling diff --git a/.gitignore b/.gitignore index a9880fa..0c1715a 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ composer.lock phpunit.xml vendor .phpunit.result.cache +.php_cs.cache diff --git a/composer.json b/composer.json index b8cab8d..7c51f91 100644 --- a/composer.json +++ b/composer.json @@ -20,6 +20,7 @@ "illuminate/support": "^8.0" }, "require-dev": { + "codeat3/blade-icon-generation-helpers": "dev-poc", "codeat3/phpcs-styles": "dev-main", "orchestra/testbench": "^6.0", "phpunit/phpunit": "^9.0" diff --git a/config/generation.php b/config/generation.php new file mode 100644 index 0000000..4c3c1d8 --- /dev/null +++ b/config/generation.php @@ -0,0 +1,51 @@ +optimize(pre: function (&$svgEL) { + $width = $svgEL->getAttribute('width'); + $height = $svgEL->getAttribute('height'); + + $viewBox = '0 0 '.str_replace('px', '', $width).' '.str_replace('px', '', $height); + $svgEL->setAttribute('viewBox', $viewBox); + }) + ->postOptimizationAsString(function ($svgLine){ + // remove style and all the class attributes + $replacePatterns = [ + '/\s(class=\"[a-z0-9A-Z]+\")/' => '', + '/\.*\<\/style\>/' => '', + ]; + + $svgLine = preg_replace(array_keys($replacePatterns), array_values($replacePatterns), $svgLine); + + return $svgLine; + }) + ->save(); + +}; + +return [ + [ + // Define a source directory for the sets like a node_modules/ or vendor/ directory... + 'source' => __DIR__.'/../dist/svg/', + + // Define a destination directory for your icons. The below is a good default... + 'destination' => __DIR__.'/../resources/svg', + + // Enable "safe" mode which will prevent deletion of old icons... + 'safe' => true, + + // Call an optional callback to manipulate the icon + // with the pathname of the icon and the settings from above... + 'after' => $svgNormalization, + + 'is-solid' => true, + + ], +]; diff --git a/resources/svg/1c-alt.svg b/resources/svg/1c-alt.svg index 91db35a..342551d 100644 --- a/resources/svg/1c-alt.svg +++ b/resources/svg/1c-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/1c.svg b/resources/svg/1c.svg index a6b0b44..8187fc8 100644 --- a/resources/svg/1c.svg +++ b/resources/svg/1c.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/3d-model.svg b/resources/svg/3d-model.svg index 4023fbd..de8cb77 100644 --- a/resources/svg/3d-model.svg +++ b/resources/svg/3d-model.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/3ds-max.svg b/resources/svg/3ds-max.svg index 0e9607c..bc1d9ed 100644 --- a/resources/svg/3ds-max.svg +++ b/resources/svg/3ds-max.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/4d.svg b/resources/svg/4d.svg index d40534b..403a25e 100644 --- a/resources/svg/4d.svg +++ b/resources/svg/4d.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/a.svg b/resources/svg/a.svg index 7e0b883..dc0ad30 100644 --- a/resources/svg/a.svg +++ b/resources/svg/a.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/abap.svg b/resources/svg/abap.svg index af79d1e..2b7c2ec 100644 --- a/resources/svg/abap.svg +++ b/resources/svg/abap.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/abif.svg b/resources/svg/abif.svg index aa3f833..af47fb4 100644 --- a/resources/svg/abif.svg +++ b/resources/svg/abif.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/acre.svg b/resources/svg/acre.svg index fd514d7..2f06740 100644 --- a/resources/svg/acre.svg +++ b/resources/svg/acre.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/actionscript.svg b/resources/svg/actionscript.svg index cbabc4d..b2e4d38 100644 --- a/resources/svg/actionscript.svg +++ b/resources/svg/actionscript.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ada.svg b/resources/svg/ada.svg index b059ce2..4abdffb 100644 --- a/resources/svg/ada.svg +++ b/resources/svg/ada.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/adobe-acrobat.svg b/resources/svg/adobe-acrobat.svg index ba9f9ce..39c055d 100644 --- a/resources/svg/adobe-acrobat.svg +++ b/resources/svg/adobe-acrobat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/adobe-aftereffects.svg b/resources/svg/adobe-aftereffects.svg index 40d26ef..56df5e1 100644 --- a/resources/svg/adobe-aftereffects.svg +++ b/resources/svg/adobe-aftereffects.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/adobe-animate.svg b/resources/svg/adobe-animate.svg index d497e49..2537a0e 100644 --- a/resources/svg/adobe-animate.svg +++ b/resources/svg/adobe-animate.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/adobe-audition.svg b/resources/svg/adobe-audition.svg index ab6f701..0fa333c 100644 --- a/resources/svg/adobe-audition.svg +++ b/resources/svg/adobe-audition.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/adobe-bridge.svg b/resources/svg/adobe-bridge.svg index e669acd..ac82fb6 100644 --- a/resources/svg/adobe-bridge.svg +++ b/resources/svg/adobe-bridge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/adobe-characteranimator.svg b/resources/svg/adobe-characteranimator.svg index 3ab0984..23e7727 100644 --- a/resources/svg/adobe-characteranimator.svg +++ b/resources/svg/adobe-characteranimator.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/adobe-creativecloud.svg b/resources/svg/adobe-creativecloud.svg index ac2b83b..3288c51 100644 --- a/resources/svg/adobe-creativecloud.svg +++ b/resources/svg/adobe-creativecloud.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/adobe-dimension.svg b/resources/svg/adobe-dimension.svg index b023030..127fcc5 100644 --- a/resources/svg/adobe-dimension.svg +++ b/resources/svg/adobe-dimension.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/adobe-dreamweaver.svg b/resources/svg/adobe-dreamweaver.svg index f389035..8baeb7f 100644 --- a/resources/svg/adobe-dreamweaver.svg +++ b/resources/svg/adobe-dreamweaver.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/adobe-flash.svg b/resources/svg/adobe-flash.svg index 0fedd6e..6bbf876 100644 --- a/resources/svg/adobe-flash.svg +++ b/resources/svg/adobe-flash.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/adobe-fuse.svg b/resources/svg/adobe-fuse.svg index 7124ab2..9acdc05 100644 --- a/resources/svg/adobe-fuse.svg +++ b/resources/svg/adobe-fuse.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/adobe-illustrator.svg b/resources/svg/adobe-illustrator.svg index 7763567..14de58e 100644 --- a/resources/svg/adobe-illustrator.svg +++ b/resources/svg/adobe-illustrator.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/adobe-incopy.svg b/resources/svg/adobe-incopy.svg index efac5c7..5038843 100644 --- a/resources/svg/adobe-incopy.svg +++ b/resources/svg/adobe-incopy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/adobe-indesign.svg b/resources/svg/adobe-indesign.svg index b730f7a..1439b9b 100644 --- a/resources/svg/adobe-indesign.svg +++ b/resources/svg/adobe-indesign.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/adobe-lightroom.svg b/resources/svg/adobe-lightroom.svg index 2a512ba..83ab8c0 100644 --- a/resources/svg/adobe-lightroom.svg +++ b/resources/svg/adobe-lightroom.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/adobe-mediaencoder.svg b/resources/svg/adobe-mediaencoder.svg index ffb337b..567a7f2 100644 --- a/resources/svg/adobe-mediaencoder.svg +++ b/resources/svg/adobe-mediaencoder.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/adobe-photoshop.svg b/resources/svg/adobe-photoshop.svg index 5113c59..06a18bf 100644 --- a/resources/svg/adobe-photoshop.svg +++ b/resources/svg/adobe-photoshop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/adobe-prelude.svg b/resources/svg/adobe-prelude.svg index f546b57..ac29f70 100644 --- a/resources/svg/adobe-prelude.svg +++ b/resources/svg/adobe-prelude.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/adobe-premiere.svg b/resources/svg/adobe-premiere.svg index cee1fe7..8429b68 100644 --- a/resources/svg/adobe-premiere.svg +++ b/resources/svg/adobe-premiere.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/adobe-premiererush.svg b/resources/svg/adobe-premiererush.svg index 9e7bbf9..8cb2f48 100644 --- a/resources/svg/adobe-premiererush.svg +++ b/resources/svg/adobe-premiererush.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/adobe-xd.svg b/resources/svg/adobe-xd.svg index 23597e6..657bd90 100644 --- a/resources/svg/adobe-xd.svg +++ b/resources/svg/adobe-xd.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/adobe.svg b/resources/svg/adobe.svg index 1eb9fec..0a25603 100644 --- a/resources/svg/adobe.svg +++ b/resources/svg/adobe.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/adonisjs.svg b/resources/svg/adonisjs.svg index c26b731..6110ff2 100644 --- a/resources/svg/adonisjs.svg +++ b/resources/svg/adonisjs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/aeternity.svg b/resources/svg/aeternity.svg index 7d2e0f9..9b5566b 100644 --- a/resources/svg/aeternity.svg +++ b/resources/svg/aeternity.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/affectscript.svg b/resources/svg/affectscript.svg index e7ead71..d5e3f78 100644 --- a/resources/svg/affectscript.svg +++ b/resources/svg/affectscript.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/affinitydesigner.svg b/resources/svg/affinitydesigner.svg index 8681d85..bb7d2dd 100644 --- a/resources/svg/affinitydesigner.svg +++ b/resources/svg/affinitydesigner.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/agc.svg b/resources/svg/agc.svg index 561f972..b6e07f5 100644 --- a/resources/svg/agc.svg +++ b/resources/svg/agc.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/agda.svg b/resources/svg/agda.svg index b64416a..4b3ce58 100644 --- a/resources/svg/agda.svg +++ b/resources/svg/agda.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/akka.svg b/resources/svg/akka.svg index b5fbd2f..cc0598a 100644 --- a/resources/svg/akka.svg +++ b/resources/svg/akka.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/alacritty-alt.svg b/resources/svg/alacritty-alt.svg index a1e8637..f51b7ad 100644 --- a/resources/svg/alacritty-alt.svg +++ b/resources/svg/alacritty-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/alacritty.svg b/resources/svg/alacritty.svg index ac85dab..f815866 100644 --- a/resources/svg/alacritty.svg +++ b/resources/svg/alacritty.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/alex.svg b/resources/svg/alex.svg index ff3bf54..53912c4 100644 --- a/resources/svg/alex.svg +++ b/resources/svg/alex.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/alloy.svg b/resources/svg/alloy.svg index ab414b3..af91624 100644 --- a/resources/svg/alloy.svg +++ b/resources/svg/alloy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/alpine-linux.svg b/resources/svg/alpine-linux.svg index 46876b5..d02388f 100644 --- a/resources/svg/alpine-linux.svg +++ b/resources/svg/alpine-linux.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/amd.svg b/resources/svg/amd.svg index ad54d3e..6186c2b 100644 --- a/resources/svg/amd.svg +++ b/resources/svg/amd.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/amigaos.svg b/resources/svg/amigaos.svg index 8b87024..e0e4ac5 100644 --- a/resources/svg/amigaos.svg +++ b/resources/svg/amigaos.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ampl.svg b/resources/svg/ampl.svg index ca4782c..48c7c81 100644 --- a/resources/svg/ampl.svg +++ b/resources/svg/ampl.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/amusewiki.svg b/resources/svg/amusewiki.svg index 5cf9bf5..bc30ac5 100644 --- a/resources/svg/amusewiki.svg +++ b/resources/svg/amusewiki.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/analytica.svg b/resources/svg/analytica.svg index 530eeea..6b09d75 100644 --- a/resources/svg/analytica.svg +++ b/resources/svg/analytica.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/angelscript.svg b/resources/svg/angelscript.svg index 8b29aa1..d9ed43e 100644 --- a/resources/svg/angelscript.svg +++ b/resources/svg/angelscript.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/animestudio.svg b/resources/svg/animestudio.svg index 86d9d9f..6b51e60 100644 --- a/resources/svg/animestudio.svg +++ b/resources/svg/animestudio.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ansible-alt.svg b/resources/svg/ansible-alt.svg index 9b4ad46..13c9a52 100644 --- a/resources/svg/ansible-alt.svg +++ b/resources/svg/ansible-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ansible.svg b/resources/svg/ansible.svg index 1b0dc47..7269dab 100644 --- a/resources/svg/ansible.svg +++ b/resources/svg/ansible.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/antlr.svg b/resources/svg/antlr.svg index e9a7600..7012d1c 100644 --- a/resources/svg/antlr.svg +++ b/resources/svg/antlr.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/antwar.svg b/resources/svg/antwar.svg index 5c9101f..24e7b7d 100644 --- a/resources/svg/antwar.svg +++ b/resources/svg/antwar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/anyscript.svg b/resources/svg/anyscript.svg index 3e97962..7722e13 100644 --- a/resources/svg/anyscript.svg +++ b/resources/svg/anyscript.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/apache-ant.svg b/resources/svg/apache-ant.svg index b1ba33f..6c91476 100644 --- a/resources/svg/apache-ant.svg +++ b/resources/svg/apache-ant.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/api-blueprint.svg b/resources/svg/api-blueprint.svg index e6d8c8a..0b74274 100644 --- a/resources/svg/api-blueprint.svg +++ b/resources/svg/api-blueprint.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/apiextractor.svg b/resources/svg/apiextractor.svg index 7a2d6fe..6eab832 100644 --- a/resources/svg/apiextractor.svg +++ b/resources/svg/apiextractor.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/apl-old.svg b/resources/svg/apl-old.svg index ccd3d76..380360b 100644 --- a/resources/svg/apl-old.svg +++ b/resources/svg/apl-old.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/apl.svg b/resources/svg/apl.svg index 6077036..592ce5d 100644 --- a/resources/svg/apl.svg +++ b/resources/svg/apl.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/apollo.svg b/resources/svg/apollo.svg index 9aa17e0..7d96a80 100644 --- a/resources/svg/apollo.svg +++ b/resources/svg/apollo.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/apple.svg b/resources/svg/apple.svg index 0e6464b..626382a 100644 --- a/resources/svg/apple.svg +++ b/resources/svg/apple.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/appveyor.svg b/resources/svg/appveyor.svg index 11d698f..2c03fb9 100644 --- a/resources/svg/appveyor.svg +++ b/resources/svg/appveyor.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/arc.svg b/resources/svg/arc.svg index fcd29ce..75456ef 100644 --- a/resources/svg/arc.svg +++ b/resources/svg/arc.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/arch-linux.svg b/resources/svg/arch-linux.svg index 11f63d6..007fb85 100644 --- a/resources/svg/arch-linux.svg +++ b/resources/svg/arch-linux.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/arduino.svg b/resources/svg/arduino.svg index 816d2f7..e134190 100644 --- a/resources/svg/arduino.svg +++ b/resources/svg/arduino.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/arm.svg b/resources/svg/arm.svg index 809138e..2676b5f 100644 --- a/resources/svg/arm.svg +++ b/resources/svg/arm.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/arttext.svg b/resources/svg/arttext.svg index 818d342..3101687 100644 --- a/resources/svg/arttext.svg +++ b/resources/svg/arttext.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/arttext4.svg b/resources/svg/arttext4.svg index f09e056..d2784a6 100644 --- a/resources/svg/arttext4.svg +++ b/resources/svg/arttext4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/asciidoc.svg b/resources/svg/asciidoc.svg index ea2c1e4..663c7ea 100644 --- a/resources/svg/asciidoc.svg +++ b/resources/svg/asciidoc.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/asciidoctor.svg b/resources/svg/asciidoctor.svg index e4b682e..6df38a8 100644 --- a/resources/svg/asciidoctor.svg +++ b/resources/svg/asciidoctor.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/assembly-agc.svg b/resources/svg/assembly-agc.svg index 8c0244d..48e4ccf 100644 --- a/resources/svg/assembly-agc.svg +++ b/resources/svg/assembly-agc.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/assembly-amd.svg b/resources/svg/assembly-amd.svg index e7da4c3..abfd6ea 100644 --- a/resources/svg/assembly-amd.svg +++ b/resources/svg/assembly-amd.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/assembly-arm.svg b/resources/svg/assembly-arm.svg index 3d8ad3b..a482a9b 100644 --- a/resources/svg/assembly-arm.svg +++ b/resources/svg/assembly-arm.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/assembly-att.svg b/resources/svg/assembly-att.svg index 62d583b..c8aee9d 100644 --- a/resources/svg/assembly-att.svg +++ b/resources/svg/assembly-att.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/assembly-avr.svg b/resources/svg/assembly-avr.svg index f97f50a..898ec92 100644 --- a/resources/svg/assembly-avr.svg +++ b/resources/svg/assembly-avr.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/assembly-generic.svg b/resources/svg/assembly-generic.svg index 0199654..6f40019 100644 --- a/resources/svg/assembly-generic.svg +++ b/resources/svg/assembly-generic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/assembly-hitachi.svg b/resources/svg/assembly-hitachi.svg index 86cf375..f23b75b 100644 --- a/resources/svg/assembly-hitachi.svg +++ b/resources/svg/assembly-hitachi.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/assembly-intel.svg b/resources/svg/assembly-intel.svg index 0aa7a30..a2cec9d 100644 --- a/resources/svg/assembly-intel.svg +++ b/resources/svg/assembly-intel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/assembly-motorola.svg b/resources/svg/assembly-motorola.svg index 60f24ff..f6318dc 100644 --- a/resources/svg/assembly-motorola.svg +++ b/resources/svg/assembly-motorola.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/assembly-powerpc.svg b/resources/svg/assembly-powerpc.svg index 107b377..1513b5b 100644 --- a/resources/svg/assembly-powerpc.svg +++ b/resources/svg/assembly-powerpc.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/assembly-riscv.svg b/resources/svg/assembly-riscv.svg index eafdb46..1baa070 100644 --- a/resources/svg/assembly-riscv.svg +++ b/resources/svg/assembly-riscv.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/assembly-sparc.svg b/resources/svg/assembly-sparc.svg index a828523..ccf2356 100644 --- a/resources/svg/assembly-sparc.svg +++ b/resources/svg/assembly-sparc.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/assembly-vax.svg b/resources/svg/assembly-vax.svg index 91d1cc1..84e5dac 100644 --- a/resources/svg/assembly-vax.svg +++ b/resources/svg/assembly-vax.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/assembly-zilog.svg b/resources/svg/assembly-zilog.svg index 4ab50e7..9ab4a00 100644 --- a/resources/svg/assembly-zilog.svg +++ b/resources/svg/assembly-zilog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/asymptote-alt.svg b/resources/svg/asymptote-alt.svg index 663e0f5..2ac3cf1 100644 --- a/resources/svg/asymptote-alt.svg +++ b/resources/svg/asymptote-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/asymptote.svg b/resources/svg/asymptote.svg index 0cb711c..86f7f6d 100644 --- a/resources/svg/asymptote.svg +++ b/resources/svg/asymptote.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/atoum.svg b/resources/svg/atoum.svg index 8e5d82f..1e14bf3 100644 --- a/resources/svg/atoum.svg +++ b/resources/svg/atoum.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ats.svg b/resources/svg/ats.svg index adf4b64..018b0e3 100644 --- a/resources/svg/ats.svg +++ b/resources/svg/ats.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/att.svg b/resources/svg/att.svg index 09615a2..6c94a4b 100644 --- a/resources/svg/att.svg +++ b/resources/svg/att.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/audacity.svg b/resources/svg/audacity.svg index 9302acf..2a3d057 100644 --- a/resources/svg/audacity.svg +++ b/resources/svg/audacity.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/augeas.svg b/resources/svg/augeas.svg index 17dd2de..e3ba4a3 100644 --- a/resources/svg/augeas.svg +++ b/resources/svg/augeas.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/aurelia.svg b/resources/svg/aurelia.svg index 6cfdb55..5f30bdd 100644 --- a/resources/svg/aurelia.svg +++ b/resources/svg/aurelia.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/autohotkey.svg b/resources/svg/autohotkey.svg index bbf8824..bf50d23 100644 --- a/resources/svg/autohotkey.svg +++ b/resources/svg/autohotkey.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/autoit.svg b/resources/svg/autoit.svg index 4e1e942..1258da1 100644 --- a/resources/svg/autoit.svg +++ b/resources/svg/autoit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/automator.svg b/resources/svg/automator.svg index 79d10dd..5e3490a 100644 --- a/resources/svg/automator.svg +++ b/resources/svg/automator.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/avr.svg b/resources/svg/avr.svg index 5cb8eb4..dfbace9 100644 --- a/resources/svg/avr.svg +++ b/resources/svg/avr.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/avro.svg b/resources/svg/avro.svg index e4fff25..d38d4b1 100644 --- a/resources/svg/avro.svg +++ b/resources/svg/avro.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/awk.svg b/resources/svg/awk.svg index ee7ac8d..8c8bbbb 100644 --- a/resources/svg/awk.svg +++ b/resources/svg/awk.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/azure-pipelines.svg b/resources/svg/azure-pipelines.svg index aa72a04..3bf7d7d 100644 --- a/resources/svg/azure-pipelines.svg +++ b/resources/svg/azure-pipelines.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/babel.svg b/resources/svg/babel.svg index 45e1301..498eaa2 100644 --- a/resources/svg/babel.svg +++ b/resources/svg/babel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ballerina.svg b/resources/svg/ballerina.svg index fbfcb58..14ad7cf 100644 --- a/resources/svg/ballerina.svg +++ b/resources/svg/ballerina.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/bazaar.svg b/resources/svg/bazaar.svg index 7f2744d..1f8a3be 100644 --- a/resources/svg/bazaar.svg +++ b/resources/svg/bazaar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/bazel-old.svg b/resources/svg/bazel-old.svg index e7fd24b..38ecb8f 100644 --- a/resources/svg/bazel-old.svg +++ b/resources/svg/bazel-old.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/bazel.svg b/resources/svg/bazel.svg index 8a730cb..ae71884 100644 --- a/resources/svg/bazel.svg +++ b/resources/svg/bazel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/behat.svg b/resources/svg/behat.svg index bf575be..f74cddc 100644 --- a/resources/svg/behat.svg +++ b/resources/svg/behat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/bem.svg b/resources/svg/bem.svg index f3440d1..f16a5f6 100644 --- a/resources/svg/bem.svg +++ b/resources/svg/bem.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/bibtex.svg b/resources/svg/bibtex.svg index 1de715a..8206b99 100644 --- a/resources/svg/bibtex.svg +++ b/resources/svg/bibtex.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/bikeshed.svg b/resources/svg/bikeshed.svg index d4fac64..017bbd4 100644 --- a/resources/svg/bikeshed.svg +++ b/resources/svg/bikeshed.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/biml.svg b/resources/svg/biml.svg index e562dbd..a629e08 100644 --- a/resources/svg/biml.svg +++ b/resources/svg/biml.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/binder.svg b/resources/svg/binder.svg index 3cd5949..e0a06d3 100644 --- a/resources/svg/binder.svg +++ b/resources/svg/binder.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/bintray.svg b/resources/svg/bintray.svg index 96b1fb5..9af9d2c 100644 --- a/resources/svg/bintray.svg +++ b/resources/svg/bintray.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/bison.svg b/resources/svg/bison.svg index e35a87c..0953b1e 100644 --- a/resources/svg/bison.svg +++ b/resources/svg/bison.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/bithound.svg b/resources/svg/bithound.svg index 58eb436..6964cbd 100644 --- a/resources/svg/bithound.svg +++ b/resources/svg/bithound.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/blender.svg b/resources/svg/blender.svg index 3cec092..e95871d 100644 --- a/resources/svg/blender.svg +++ b/resources/svg/blender.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/blitzbasic.svg b/resources/svg/blitzbasic.svg index 8df0bf2..c00485c 100644 --- a/resources/svg/blitzbasic.svg +++ b/resources/svg/blitzbasic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/bloc.svg b/resources/svg/bloc.svg index a567299..bb2acf0 100644 --- a/resources/svg/bloc.svg +++ b/resources/svg/bloc.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/bluespec.svg b/resources/svg/bluespec.svg index 2f2219c..00e7d96 100644 --- a/resources/svg/bluespec.svg +++ b/resources/svg/bluespec.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/bnf.svg b/resources/svg/bnf.svg index a046991..9940d4c 100644 --- a/resources/svg/bnf.svg +++ b/resources/svg/bnf.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/boo.svg b/resources/svg/boo.svg index 6c32108..67661f2 100644 --- a/resources/svg/boo.svg +++ b/resources/svg/boo.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/bors.svg b/resources/svg/bors.svg index 6969962..770280a 100644 --- a/resources/svg/bors.svg +++ b/resources/svg/bors.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/bosque.svg b/resources/svg/bosque.svg index d822da0..9f37445 100644 --- a/resources/svg/bosque.svg +++ b/resources/svg/bosque.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/brainfuck.svg b/resources/svg/brainfuck.svg index ad309c0..07948a0 100644 --- a/resources/svg/brainfuck.svg +++ b/resources/svg/brainfuck.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/brakeman.svg b/resources/svg/brakeman.svg index c48a1cc..ed4cab3 100644 --- a/resources/svg/brakeman.svg +++ b/resources/svg/brakeman.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/bro.svg b/resources/svg/bro.svg index 255d477..d44ddae 100644 --- a/resources/svg/bro.svg +++ b/resources/svg/bro.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/broccoli.svg b/resources/svg/broccoli.svg index 5adb550..815567c 100644 --- a/resources/svg/broccoli.svg +++ b/resources/svg/broccoli.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/brotli-old.svg b/resources/svg/brotli-old.svg index c553130..4ae4b1b 100644 --- a/resources/svg/brotli-old.svg +++ b/resources/svg/brotli-old.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/brotli.svg b/resources/svg/brotli.svg index 5d089d8..857f6f7 100644 --- a/resources/svg/brotli.svg +++ b/resources/svg/brotli.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/browserslist.svg b/resources/svg/browserslist.svg index fee5fc6..6603344 100644 --- a/resources/svg/browserslist.svg +++ b/resources/svg/browserslist.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/browsersync.svg b/resources/svg/browsersync.svg index 7e483d1..cabde1c 100644 --- a/resources/svg/browsersync.svg +++ b/resources/svg/browsersync.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/brunch.svg b/resources/svg/brunch.svg index fc23569..98c06ff 100644 --- a/resources/svg/brunch.svg +++ b/resources/svg/brunch.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/buck.svg b/resources/svg/buck.svg index 594743b..53b45b4 100644 --- a/resources/svg/buck.svg +++ b/resources/svg/buck.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/build-boot.svg b/resources/svg/build-boot.svg index 38a6bab..0df8555 100644 --- a/resources/svg/build-boot.svg +++ b/resources/svg/build-boot.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/buildkite.svg b/resources/svg/buildkite.svg index 61da3a4..3f9456c 100644 --- a/resources/svg/buildkite.svg +++ b/resources/svg/buildkite.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/bundler.svg b/resources/svg/bundler.svg index abacace..907e6f1 100644 --- a/resources/svg/bundler.svg +++ b/resources/svg/bundler.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/byond.svg b/resources/svg/byond.svg index ab2c326..8be3e6a 100644 --- a/resources/svg/byond.svg +++ b/resources/svg/byond.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/c-script.svg b/resources/svg/c-script.svg index dd53b83..a9825d3 100644 --- a/resources/svg/c-script.svg +++ b/resources/svg/c-script.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/c.svg b/resources/svg/c.svg index 894c2eb..29ea362 100644 --- a/resources/svg/c.svg +++ b/resources/svg/c.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/cabal.svg b/resources/svg/cabal.svg index 0a17aa5..1569dd3 100644 --- a/resources/svg/cabal.svg +++ b/resources/svg/cabal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/caddy-old.svg b/resources/svg/caddy-old.svg index f46ba90..92bf488 100644 --- a/resources/svg/caddy-old.svg +++ b/resources/svg/caddy-old.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/caddy.svg b/resources/svg/caddy.svg index 54e6fd1..de113d1 100644 --- a/resources/svg/caddy.svg +++ b/resources/svg/caddy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/caffe.svg b/resources/svg/caffe.svg index fee5f4c..0500848 100644 --- a/resources/svg/caffe.svg +++ b/resources/svg/caffe.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/caffe2.svg b/resources/svg/caffe2.svg index b571afb..1205f89 100644 --- a/resources/svg/caffe2.svg +++ b/resources/svg/caffe2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/cairo.svg b/resources/svg/cairo.svg index 013ffe6..07f820f 100644 --- a/resources/svg/cairo.svg +++ b/resources/svg/cairo.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/cake.svg b/resources/svg/cake.svg index f3a6943..99c8837 100644 --- a/resources/svg/cake.svg +++ b/resources/svg/cake.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/cakefile.svg b/resources/svg/cakefile.svg index b75746d..42b9795 100644 --- a/resources/svg/cakefile.svg +++ b/resources/svg/cakefile.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/cakephp-old.svg b/resources/svg/cakephp-old.svg index de6e7a5..56a095a 100644 --- a/resources/svg/cakephp-old.svg +++ b/resources/svg/cakephp-old.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/cakephp.svg b/resources/svg/cakephp.svg index 17c5fdd..a0b62ff 100644 --- a/resources/svg/cakephp.svg +++ b/resources/svg/cakephp.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/calva.svg b/resources/svg/calva.svg index 287b036..7bacf74 100644 --- a/resources/svg/calva.svg +++ b/resources/svg/calva.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/carthage.svg b/resources/svg/carthage.svg index a58715e..f707786 100644 --- a/resources/svg/carthage.svg +++ b/resources/svg/carthage.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/casc.svg b/resources/svg/casc.svg index 54a1ef4..0233fed 100644 --- a/resources/svg/casc.svg +++ b/resources/svg/casc.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/cdf.svg b/resources/svg/cdf.svg index e123c27..ee52269 100644 --- a/resources/svg/cdf.svg +++ b/resources/svg/cdf.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ceylon.svg b/resources/svg/ceylon.svg index bc529c1..4786875 100644 --- a/resources/svg/ceylon.svg +++ b/resources/svg/ceylon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/chai.svg b/resources/svg/chai.svg index c44bb38..85031b1 100644 --- a/resources/svg/chai.svg +++ b/resources/svg/chai.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/chapel.svg b/resources/svg/chapel.svg index 275d6a8..29bb274 100644 --- a/resources/svg/chapel.svg +++ b/resources/svg/chapel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/chartjs.svg b/resources/svg/chartjs.svg index 8fd4c81..1a323f4 100644 --- a/resources/svg/chartjs.svg +++ b/resources/svg/chartjs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/cheetah3d.svg b/resources/svg/cheetah3d.svg index 2395afe..b6de7ef 100644 --- a/resources/svg/cheetah3d.svg +++ b/resources/svg/cheetah3d.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/chef.svg b/resources/svg/chef.svg index a4fd584..d5b7277 100644 --- a/resources/svg/chef.svg +++ b/resources/svg/chef.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/chocolatey.svg b/resources/svg/chocolatey.svg index e103bab..cc36d79 100644 --- a/resources/svg/chocolatey.svg +++ b/resources/svg/chocolatey.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/chuck.svg b/resources/svg/chuck.svg index d0e402f..57239a0 100644 --- a/resources/svg/chuck.svg +++ b/resources/svg/chuck.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/circleci.svg b/resources/svg/circleci.svg index d30b650..bdf6bc5 100644 --- a/resources/svg/circleci.svg +++ b/resources/svg/circleci.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/cirru.svg b/resources/svg/cirru.svg index 99d7898..a40f9fe 100644 --- a/resources/svg/cirru.svg +++ b/resources/svg/cirru.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ckeditor.svg b/resources/svg/ckeditor.svg index 4e83f41..ca5b400 100644 --- a/resources/svg/ckeditor.svg +++ b/resources/svg/ckeditor.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/clarion.svg b/resources/svg/clarion.svg index e0c8c4b..5ec8847 100644 --- a/resources/svg/clarion.svg +++ b/resources/svg/clarion.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/clean.svg b/resources/svg/clean.svg index 4ea8116..f51435a 100644 --- a/resources/svg/clean.svg +++ b/resources/svg/clean.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/click.svg b/resources/svg/click.svg index 3692f50..eebabe9 100644 --- a/resources/svg/click.svg +++ b/resources/svg/click.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/clips.svg b/resources/svg/clips.svg index a9b63e5..a884742 100644 --- a/resources/svg/clips.svg +++ b/resources/svg/clips.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/clojurejs.svg b/resources/svg/clojurejs.svg index f709558..d673cb3 100644 --- a/resources/svg/clojurejs.svg +++ b/resources/svg/clojurejs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/closuretemplate.svg b/resources/svg/closuretemplate.svg index 4f49cd5..b7f6880 100644 --- a/resources/svg/closuretemplate.svg +++ b/resources/svg/closuretemplate.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/cloudfoundry.svg b/resources/svg/cloudfoundry.svg index 7e7dc18..372b73c 100644 --- a/resources/svg/cloudfoundry.svg +++ b/resources/svg/cloudfoundry.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/cmake.svg b/resources/svg/cmake.svg index 145d74a..7a5b53f 100644 --- a/resources/svg/cmake.svg +++ b/resources/svg/cmake.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/cnab.svg b/resources/svg/cnab.svg index e5194f9..4fcd401 100644 --- a/resources/svg/cnab.svg +++ b/resources/svg/cnab.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/cobol.svg b/resources/svg/cobol.svg index 5b4c6c2..419de4a 100644 --- a/resources/svg/cobol.svg +++ b/resources/svg/cobol.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/cocoapods.svg b/resources/svg/cocoapods.svg index 9bdba01..1ef9962 100644 --- a/resources/svg/cocoapods.svg +++ b/resources/svg/cocoapods.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/codacy.svg b/resources/svg/codacy.svg index 0e5439d..dcecba0 100644 --- a/resources/svg/codacy.svg +++ b/resources/svg/codacy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/code-climate.svg b/resources/svg/code-climate.svg index ddf3b69..d73ef88 100644 --- a/resources/svg/code-climate.svg +++ b/resources/svg/code-climate.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/codecov.svg b/resources/svg/codecov.svg index 30fcdc9..68e16f3 100644 --- a/resources/svg/codecov.svg +++ b/resources/svg/codecov.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/codekit.svg b/resources/svg/codekit.svg index 275fe6d..6be90e5 100644 --- a/resources/svg/codekit.svg +++ b/resources/svg/codekit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/codemeta.svg b/resources/svg/codemeta.svg index f7d03c3..aa5f2e9 100644 --- a/resources/svg/codemeta.svg +++ b/resources/svg/codemeta.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/codemirror.svg b/resources/svg/codemirror.svg index 28ce446..f2aeb3a 100644 --- a/resources/svg/codemirror.svg +++ b/resources/svg/codemirror.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/codeship.svg b/resources/svg/codeship.svg index 7fd0914..3ca2aef 100644 --- a/resources/svg/codeship.svg +++ b/resources/svg/codeship.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/coldfusion.svg b/resources/svg/coldfusion.svg index 483a055..0d40836 100644 --- a/resources/svg/coldfusion.svg +++ b/resources/svg/coldfusion.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/commitizen.svg b/resources/svg/commitizen.svg index 1f3ee7f..c067cf1 100644 --- a/resources/svg/commitizen.svg +++ b/resources/svg/commitizen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/commitlint.svg b/resources/svg/commitlint.svg index bd7dd41..4d1bcc5 100644 --- a/resources/svg/commitlint.svg +++ b/resources/svg/commitlint.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/common-lisp.svg b/resources/svg/common-lisp.svg index e440503..9b9e95a 100644 --- a/resources/svg/common-lisp.svg +++ b/resources/svg/common-lisp.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/component-pascal.svg b/resources/svg/component-pascal.svg index 816e63d..ae4ea65 100644 --- a/resources/svg/component-pascal.svg +++ b/resources/svg/component-pascal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/composer.svg b/resources/svg/composer.svg index 8ffaa55..6986b59 100644 --- a/resources/svg/composer.svg +++ b/resources/svg/composer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/conan.svg b/resources/svg/conan.svg index d84c57a..b538d77 100644 --- a/resources/svg/conan.svg +++ b/resources/svg/conan.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/conda.svg b/resources/svg/conda.svg index 32e3fd2..0aa4119 100644 --- a/resources/svg/conda.svg +++ b/resources/svg/conda.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/config-coffeescript.svg b/resources/svg/config-coffeescript.svg index afdb6ee..1f537b2 100644 --- a/resources/svg/config-coffeescript.svg +++ b/resources/svg/config-coffeescript.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/config-go.svg b/resources/svg/config-go.svg index 813a381..07bb12a 100644 --- a/resources/svg/config-go.svg +++ b/resources/svg/config-go.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/config-haskell.svg b/resources/svg/config-haskell.svg index 813abdf..962df46 100644 --- a/resources/svg/config-haskell.svg +++ b/resources/svg/config-haskell.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/config-js.svg b/resources/svg/config-js.svg index 8948771..4c1c41c 100644 --- a/resources/svg/config-js.svg +++ b/resources/svg/config-js.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/config-perl.svg b/resources/svg/config-perl.svg index d5a0156..51740c2 100644 --- a/resources/svg/config-perl.svg +++ b/resources/svg/config-perl.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/config-python.svg b/resources/svg/config-python.svg index 6ff141b..cbb3461 100644 --- a/resources/svg/config-python.svg +++ b/resources/svg/config-python.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/config-react.svg b/resources/svg/config-react.svg index 8cab60f..91754ff 100644 --- a/resources/svg/config-react.svg +++ b/resources/svg/config-react.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/config-ruby.svg b/resources/svg/config-ruby.svg index ca778b8..8007611 100644 --- a/resources/svg/config-ruby.svg +++ b/resources/svg/config-ruby.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/config-rust.svg b/resources/svg/config-rust.svg index c31b8ef..0fca4a4 100644 --- a/resources/svg/config-rust.svg +++ b/resources/svg/config-rust.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/config-typescript.svg b/resources/svg/config-typescript.svg index c7c2e84..ddc3409 100644 --- a/resources/svg/config-typescript.svg +++ b/resources/svg/config-typescript.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/config.svg b/resources/svg/config.svg index 02d9f6c..dfe8477 100644 --- a/resources/svg/config.svg +++ b/resources/svg/config.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/conll.svg b/resources/svg/conll.svg index 7e287ba..56bd86d 100644 --- a/resources/svg/conll.svg +++ b/resources/svg/conll.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/coq.svg b/resources/svg/coq.svg index 489840b..a6bfa16 100644 --- a/resources/svg/coq.svg +++ b/resources/svg/coq.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/cordova.svg b/resources/svg/cordova.svg index 4278e36..202296b 100644 --- a/resources/svg/cordova.svg +++ b/resources/svg/cordova.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/coreldraw-alt.svg b/resources/svg/coreldraw-alt.svg index 33c28c7..37f397c 100644 --- a/resources/svg/coreldraw-alt.svg +++ b/resources/svg/coreldraw-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/coreldraw.svg b/resources/svg/coreldraw.svg index f69b8d8..0ef46d9 100644 --- a/resources/svg/coreldraw.svg +++ b/resources/svg/coreldraw.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/coveralls.svg b/resources/svg/coveralls.svg index 375f6da..0a61f71 100644 --- a/resources/svg/coveralls.svg +++ b/resources/svg/coveralls.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/cpan.svg b/resources/svg/cpan.svg index 512f9f7..84c65f9 100644 --- a/resources/svg/cpan.svg +++ b/resources/svg/cpan.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/cpcdosc.svg b/resources/svg/cpcdosc.svg index a9a9827..8c3af19 100644 --- a/resources/svg/cpcdosc.svg +++ b/resources/svg/cpcdosc.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/crafttweaker.svg b/resources/svg/crafttweaker.svg index 058b21c..e751124 100644 --- a/resources/svg/crafttweaker.svg +++ b/resources/svg/crafttweaker.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/creole.svg b/resources/svg/creole.svg index 50585f6..7d32d3f 100644 --- a/resources/svg/creole.svg +++ b/resources/svg/creole.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/crowdin.svg b/resources/svg/crowdin.svg index 87e3284..06f4ae9 100644 --- a/resources/svg/crowdin.svg +++ b/resources/svg/crowdin.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/crystal.svg b/resources/svg/crystal.svg index 5dc88b3..bd1debd 100644 --- a/resources/svg/crystal.svg +++ b/resources/svg/crystal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/csound.svg b/resources/svg/csound.svg index 3597e5b..48b2225 100644 --- a/resources/svg/csound.svg +++ b/resources/svg/csound.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/cubit.svg b/resources/svg/cubit.svg index d42d86d..57794ae 100644 --- a/resources/svg/cubit.svg +++ b/resources/svg/cubit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/cucumber.svg b/resources/svg/cucumber.svg index 3ab6634..62e1843 100644 --- a/resources/svg/cucumber.svg +++ b/resources/svg/cucumber.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/cuneiform.svg b/resources/svg/cuneiform.svg index 4d732e5..07ef3a2 100644 --- a/resources/svg/cuneiform.svg +++ b/resources/svg/cuneiform.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/curl-lang.svg b/resources/svg/curl-lang.svg index ac3ad0f..c8134e2 100644 --- a/resources/svg/curl-lang.svg +++ b/resources/svg/curl-lang.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/curl.svg b/resources/svg/curl.svg index 8f71011..e27b4bc 100644 --- a/resources/svg/curl.svg +++ b/resources/svg/curl.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/curry.svg b/resources/svg/curry.svg index ceef655..3fbb32e 100644 --- a/resources/svg/curry.svg +++ b/resources/svg/curry.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/cvs.svg b/resources/svg/cvs.svg index ca170e6..2491b48 100644 --- a/resources/svg/cvs.svg +++ b/resources/svg/cvs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/cwl.svg b/resources/svg/cwl.svg index 2df6c33..2be11a2 100644 --- a/resources/svg/cwl.svg +++ b/resources/svg/cwl.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/cython.svg b/resources/svg/cython.svg index be7c666..33155a3 100644 --- a/resources/svg/cython.svg +++ b/resources/svg/cython.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/d3.svg b/resources/svg/d3.svg index dea150b..bf4e145 100644 --- a/resources/svg/d3.svg +++ b/resources/svg/d3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/dafny.svg b/resources/svg/dafny.svg index a2b1012..e6e64c8 100644 --- a/resources/svg/dafny.svg +++ b/resources/svg/dafny.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/darcs-patch.svg b/resources/svg/darcs-patch.svg index e847cf7..a10eefd 100644 --- a/resources/svg/darcs-patch.svg +++ b/resources/svg/darcs-patch.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/dashboard.svg b/resources/svg/dashboard.svg index 6265549..e45bee1 100644 --- a/resources/svg/dashboard.svg +++ b/resources/svg/dashboard.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/dataweave.svg b/resources/svg/dataweave.svg index 74ac54f..fe449cc 100644 --- a/resources/svg/dataweave.svg +++ b/resources/svg/dataweave.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/dbase.svg b/resources/svg/dbase.svg index 8843978..712b83c 100644 --- a/resources/svg/dbase.svg +++ b/resources/svg/dbase.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/default.svg b/resources/svg/default.svg index 7def71e..e5095a7 100644 --- a/resources/svg/default.svg +++ b/resources/svg/default.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/delphi.svg b/resources/svg/delphi.svg index 7921f5b..c2606fb 100644 --- a/resources/svg/delphi.svg +++ b/resources/svg/delphi.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/deno.svg b/resources/svg/deno.svg index 04c3ab4..3b72c90 100644 --- a/resources/svg/deno.svg +++ b/resources/svg/deno.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/dependabot.svg b/resources/svg/dependabot.svg index bef480e..0f61a1b 100644 --- a/resources/svg/dependabot.svg +++ b/resources/svg/dependabot.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/devcontainer.svg b/resources/svg/devcontainer.svg index 6f46808..55d3e66 100644 --- a/resources/svg/devcontainer.svg +++ b/resources/svg/devcontainer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/devicetree.svg b/resources/svg/devicetree.svg index eb8eff3..9796059 100644 --- a/resources/svg/devicetree.svg +++ b/resources/svg/devicetree.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/dhall.svg b/resources/svg/dhall.svg index 970d8be..5802ede 100644 --- a/resources/svg/dhall.svg +++ b/resources/svg/dhall.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/dia.svg b/resources/svg/dia.svg index 6eb79d6..f1e0bef 100644 --- a/resources/svg/dia.svg +++ b/resources/svg/dia.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/diff.svg b/resources/svg/diff.svg index 4ec465e..b5cfa99 100644 --- a/resources/svg/diff.svg +++ b/resources/svg/diff.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/digdag.svg b/resources/svg/digdag.svg index 86c31b6..07e4d0d 100644 --- a/resources/svg/digdag.svg +++ b/resources/svg/digdag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/dna.svg b/resources/svg/dna.svg index 3f607a6..53205b7 100644 --- a/resources/svg/dna.svg +++ b/resources/svg/dna.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/docbook.svg b/resources/svg/docbook.svg index 1c98710..0e8fdd3 100644 --- a/resources/svg/docbook.svg +++ b/resources/svg/docbook.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/docker.svg b/resources/svg/docker.svg index f5d7e84..52177be 100644 --- a/resources/svg/docker.svg +++ b/resources/svg/docker.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/doclets.svg b/resources/svg/doclets.svg index 40232dc..557d0e7 100644 --- a/resources/svg/doclets.svg +++ b/resources/svg/doclets.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/docpad.svg b/resources/svg/docpad.svg index 8d20a75..7749e94 100644 --- a/resources/svg/docpad.svg +++ b/resources/svg/docpad.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/docz.svg b/resources/svg/docz.svg index 3f8bdc6..cdc4449 100644 --- a/resources/svg/docz.svg +++ b/resources/svg/docz.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/dogescript.svg b/resources/svg/dogescript.svg index bfc73b8..c2dd471 100644 --- a/resources/svg/dogescript.svg +++ b/resources/svg/dogescript.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/dom.svg b/resources/svg/dom.svg index 3da5d0d..ad10abf 100644 --- a/resources/svg/dom.svg +++ b/resources/svg/dom.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/donejs.svg b/resources/svg/donejs.svg index 0d4e0e2..1d5738c 100644 --- a/resources/svg/donejs.svg +++ b/resources/svg/donejs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/dosbox-alt.svg b/resources/svg/dosbox-alt.svg index d809df3..69de80f 100644 --- a/resources/svg/dosbox-alt.svg +++ b/resources/svg/dosbox-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/dosbox.svg b/resources/svg/dosbox.svg index e6416be..fa83b3f 100644 --- a/resources/svg/dosbox.svg +++ b/resources/svg/dosbox.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/dotenv.svg b/resources/svg/dotenv.svg index 3f97b11..83fb909 100644 --- a/resources/svg/dotenv.svg +++ b/resources/svg/dotenv.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/dotjs.svg b/resources/svg/dotjs.svg index 40d9b89..382b2a3 100644 --- a/resources/svg/dotjs.svg +++ b/resources/svg/dotjs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/doxygen.svg b/resources/svg/doxygen.svg index 72f6283..73714ba 100644 --- a/resources/svg/doxygen.svg +++ b/resources/svg/doxygen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/dragonflybsd.svg b/resources/svg/dragonflybsd.svg index d325229..5f9a204 100644 --- a/resources/svg/dragonflybsd.svg +++ b/resources/svg/dragonflybsd.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/dragula.svg b/resources/svg/dragula.svg index 740f35a..75f2649 100644 --- a/resources/svg/dragula.svg +++ b/resources/svg/dragula.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/drawio.svg b/resources/svg/drawio.svg index 6ca2434..e36f042 100644 --- a/resources/svg/drawio.svg +++ b/resources/svg/drawio.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/drone.svg b/resources/svg/drone.svg index 4a4d14f..7d4c91a 100644 --- a/resources/svg/drone.svg +++ b/resources/svg/drone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/dub.svg b/resources/svg/dub.svg index 5b6db45..ffbdb3c 100644 --- a/resources/svg/dub.svg +++ b/resources/svg/dub.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/dvc.svg b/resources/svg/dvc.svg index c262717..8467bff 100644 --- a/resources/svg/dvc.svg +++ b/resources/svg/dvc.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/dyalog.svg b/resources/svg/dyalog.svg index d15e6bf..8e04f8d 100644 --- a/resources/svg/dyalog.svg +++ b/resources/svg/dyalog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/dylib.svg b/resources/svg/dylib.svg index a36656d..f9161f3 100644 --- a/resources/svg/dylib.svg +++ b/resources/svg/dylib.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/e.svg b/resources/svg/e.svg index eaeedc9..6fa6f67 100644 --- a/resources/svg/e.svg +++ b/resources/svg/e.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/eagle.svg b/resources/svg/eagle.svg index 74dba46..a5c64d5 100644 --- a/resources/svg/eagle.svg +++ b/resources/svg/eagle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/easybuild.svg b/resources/svg/easybuild.svg index fa75c92..117be1b 100644 --- a/resources/svg/easybuild.svg +++ b/resources/svg/easybuild.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ec.svg b/resources/svg/ec.svg index 539a6f8..7a4c296 100644 --- a/resources/svg/ec.svg +++ b/resources/svg/ec.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ecere.svg b/resources/svg/ecere.svg index e4908bb..639b071 100644 --- a/resources/svg/ecere.svg +++ b/resources/svg/ecere.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/eclipse-lang.svg b/resources/svg/eclipse-lang.svg index 9fbdaf1..05d7f22 100644 --- a/resources/svg/eclipse-lang.svg +++ b/resources/svg/eclipse-lang.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/edge.svg b/resources/svg/edge.svg index 41a8c95..d0ae466 100644 --- a/resources/svg/edge.svg +++ b/resources/svg/edge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/editorconfig.svg b/resources/svg/editorconfig.svg index 6d40860..e31d356 100644 --- a/resources/svg/editorconfig.svg +++ b/resources/svg/editorconfig.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/eiffel.svg b/resources/svg/eiffel.svg index 4d35637..3e32a1c 100644 --- a/resources/svg/eiffel.svg +++ b/resources/svg/eiffel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ejs.svg b/resources/svg/ejs.svg index 896ae2e..07c71ad 100644 --- a/resources/svg/ejs.svg +++ b/resources/svg/ejs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/electron.svg b/resources/svg/electron.svg index 5d0922c..b258f7d 100644 --- a/resources/svg/electron.svg +++ b/resources/svg/electron.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/elementaryos.svg b/resources/svg/elementaryos.svg index 4547eaf..4f9c6fe 100644 --- a/resources/svg/elementaryos.svg +++ b/resources/svg/elementaryos.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/elm.svg b/resources/svg/elm.svg index 4c605fc..b2467de 100644 --- a/resources/svg/elm.svg +++ b/resources/svg/elm.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/emacs.svg b/resources/svg/emacs.svg index 355b14e..8ea4faa 100644 --- a/resources/svg/emacs.svg +++ b/resources/svg/emacs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ember.svg b/resources/svg/ember.svg index 109799d..44de97f 100644 --- a/resources/svg/ember.svg +++ b/resources/svg/ember.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/emberscript.svg b/resources/svg/emberscript.svg index 04f8226..4f8342a 100644 --- a/resources/svg/emberscript.svg +++ b/resources/svg/emberscript.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ensime.svg b/resources/svg/ensime.svg index c61120e..81f4efb 100644 --- a/resources/svg/ensime.svg +++ b/resources/svg/ensime.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/eq.svg b/resources/svg/eq.svg index de4f833..379cdd7 100644 --- a/resources/svg/eq.svg +++ b/resources/svg/eq.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/esdoc.svg b/resources/svg/esdoc.svg index 6f78e41..b8d3f82 100644 --- a/resources/svg/esdoc.svg +++ b/resources/svg/esdoc.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/eslint-old.svg b/resources/svg/eslint-old.svg index 0d528e0..33d336b 100644 --- a/resources/svg/eslint-old.svg +++ b/resources/svg/eslint-old.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/eslint.svg b/resources/svg/eslint.svg index 5cd0c26..7bde004 100644 --- a/resources/svg/eslint.svg +++ b/resources/svg/eslint.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/expo.svg b/resources/svg/expo.svg index bb90c26..68e7449 100644 --- a/resources/svg/expo.svg +++ b/resources/svg/expo.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/fabfile.svg b/resources/svg/fabfile.svg index 8e982c6..4226f67 100644 --- a/resources/svg/fabfile.svg +++ b/resources/svg/fabfile.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/fabric.svg b/resources/svg/fabric.svg index 6ad50d3..b5194ae 100644 --- a/resources/svg/fabric.svg +++ b/resources/svg/fabric.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/factor.svg b/resources/svg/factor.svg index a529892..4cf7451 100644 --- a/resources/svg/factor.svg +++ b/resources/svg/factor.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/falcon.svg b/resources/svg/falcon.svg index 9b5d99a..7fd5661 100644 --- a/resources/svg/falcon.svg +++ b/resources/svg/falcon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/fancy.svg b/resources/svg/fancy.svg index 020fc1c..b76a989 100644 --- a/resources/svg/fancy.svg +++ b/resources/svg/fancy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/fantom.svg b/resources/svg/fantom.svg index 1bf578d..45e98a8 100644 --- a/resources/svg/fantom.svg +++ b/resources/svg/fantom.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/fauna.svg b/resources/svg/fauna.svg index 20d63e8..b38fadc 100644 --- a/resources/svg/fauna.svg +++ b/resources/svg/fauna.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/faust.svg b/resources/svg/faust.svg index b1f4ad7..9dd962d 100644 --- a/resources/svg/faust.svg +++ b/resources/svg/faust.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/fbx.svg b/resources/svg/fbx.svg index 0c589ee..5025c29 100644 --- a/resources/svg/fbx.svg +++ b/resources/svg/fbx.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/fexl.svg b/resources/svg/fexl.svg index 4c5669a..2cf7c60 100644 --- a/resources/svg/fexl.svg +++ b/resources/svg/fexl.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ffmpeg.svg b/resources/svg/ffmpeg.svg index 28f4bc5..f58c9b1 100644 --- a/resources/svg/ffmpeg.svg +++ b/resources/svg/ffmpeg.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/fiddle.svg b/resources/svg/fiddle.svg index 29e714f..71dd086 100644 --- a/resources/svg/fiddle.svg +++ b/resources/svg/fiddle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/figma.svg b/resources/svg/figma.svg index 1bd9258..953ea49 100644 --- a/resources/svg/figma.svg +++ b/resources/svg/figma.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/finaldraft.svg b/resources/svg/finaldraft.svg index 1b5cdd9..530a829 100644 --- a/resources/svg/finaldraft.svg +++ b/resources/svg/finaldraft.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/finder.svg b/resources/svg/finder.svg index f0fcd8a..61cceb1 100644 --- a/resources/svg/finder.svg +++ b/resources/svg/finder.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/firebase-bolt.svg b/resources/svg/firebase-bolt.svg index 4959d79..8d503ac 100644 --- a/resources/svg/firebase-bolt.svg +++ b/resources/svg/firebase-bolt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/firebase.svg b/resources/svg/firebase.svg index a886663..db5a240 100644 --- a/resources/svg/firebase.svg +++ b/resources/svg/firebase.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/flask.svg b/resources/svg/flask.svg index dee5be3..7a4d9e1 100644 --- a/resources/svg/flask.svg +++ b/resources/svg/flask.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/floobits.svg b/resources/svg/floobits.svg index 053ffd2..2609511 100644 --- a/resources/svg/floobits.svg +++ b/resources/svg/floobits.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/flow.svg b/resources/svg/flow.svg index 7881ad8..8c88751 100644 --- a/resources/svg/flow.svg +++ b/resources/svg/flow.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/flutter.svg b/resources/svg/flutter.svg index 6a5c1cb..511770b 100644 --- a/resources/svg/flutter.svg +++ b/resources/svg/flutter.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/flux.svg b/resources/svg/flux.svg index f9135e0..2a08ace 100644 --- a/resources/svg/flux.svg +++ b/resources/svg/flux.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/font-bitmap.svg b/resources/svg/font-bitmap.svg index b90cb22..915bf72 100644 --- a/resources/svg/font-bitmap.svg +++ b/resources/svg/font-bitmap.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/font-outline.svg b/resources/svg/font-outline.svg index 8de92dd..e2575da 100644 --- a/resources/svg/font-outline.svg +++ b/resources/svg/font-outline.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/font.svg b/resources/svg/font.svg index 4bc960f..93777d5 100644 --- a/resources/svg/font.svg +++ b/resources/svg/font.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/fontforge.svg b/resources/svg/fontforge.svg index d9a6536..0bf355a 100644 --- a/resources/svg/fontforge.svg +++ b/resources/svg/fontforge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/fork.svg b/resources/svg/fork.svg index 0194c17..f2dc2a4 100644 --- a/resources/svg/fork.svg +++ b/resources/svg/fork.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/fortherecord.svg b/resources/svg/fortherecord.svg index a3428c2..7fcd33c 100644 --- a/resources/svg/fortherecord.svg +++ b/resources/svg/fortherecord.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/fortran.svg b/resources/svg/fortran.svg index 3b667fd..7945dcf 100644 --- a/resources/svg/fortran.svg +++ b/resources/svg/fortran.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/fossa.svg b/resources/svg/fossa.svg index a397e08..0931f5b 100644 --- a/resources/svg/fossa.svg +++ b/resources/svg/fossa.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/fossil.svg b/resources/svg/fossil.svg index ed10f2c..1e2b68c 100644 --- a/resources/svg/fossil.svg +++ b/resources/svg/fossil.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/fountain.svg b/resources/svg/fountain.svg index c003237..929dd83 100644 --- a/resources/svg/fountain.svg +++ b/resources/svg/fountain.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/franca.svg b/resources/svg/franca.svg index 20e6ed9..30f0074 100644 --- a/resources/svg/franca.svg +++ b/resources/svg/franca.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/freedesktop.svg b/resources/svg/freedesktop.svg index 73b40a9..72b64ed 100644 --- a/resources/svg/freedesktop.svg +++ b/resources/svg/freedesktop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/freedos.svg b/resources/svg/freedos.svg index c8191af..dadb211 100644 --- a/resources/svg/freedos.svg +++ b/resources/svg/freedos.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/freemarker.svg b/resources/svg/freemarker.svg index b7281b0..ae44aa4 100644 --- a/resources/svg/freemarker.svg +++ b/resources/svg/freemarker.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/freemat.svg b/resources/svg/freemat.svg index 5ceb405..0017899 100644 --- a/resources/svg/freemat.svg +++ b/resources/svg/freemat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/frege.svg b/resources/svg/frege.svg index 17d9b99..9f722aa 100644 --- a/resources/svg/frege.svg +++ b/resources/svg/frege.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/fthtml.svg b/resources/svg/fthtml.svg index ec3ef23..55327ca 100644 --- a/resources/svg/fthtml.svg +++ b/resources/svg/fthtml.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/fuelux.svg b/resources/svg/fuelux.svg index 0c4918e..fa6ed11 100644 --- a/resources/svg/fuelux.svg +++ b/resources/svg/fuelux.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/fusebox.svg b/resources/svg/fusebox.svg index fc484c0..ba18fe5 100644 --- a/resources/svg/fusebox.svg +++ b/resources/svg/fusebox.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/futhark.svg b/resources/svg/futhark.svg index 46fea03..600772a 100644 --- a/resources/svg/futhark.svg +++ b/resources/svg/futhark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/galaxy.svg b/resources/svg/galaxy.svg index d2723ca..e10f008 100644 --- a/resources/svg/galaxy.svg +++ b/resources/svg/galaxy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/galen.svg b/resources/svg/galen.svg index 5016535..284eec8 100644 --- a/resources/svg/galen.svg +++ b/resources/svg/galen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/gamemaker.svg b/resources/svg/gamemaker.svg index a89bf2c..fe03f41 100644 --- a/resources/svg/gamemaker.svg +++ b/resources/svg/gamemaker.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/gams.svg b/resources/svg/gams.svg index 6e5fbfa..11d560d 100644 --- a/resources/svg/gams.svg +++ b/resources/svg/gams.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/gap.svg b/resources/svg/gap.svg index 3b1044b..4956632 100644 --- a/resources/svg/gap.svg +++ b/resources/svg/gap.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/gatsby.svg b/resources/svg/gatsby.svg index d93e252..73f3dc8 100644 --- a/resources/svg/gatsby.svg +++ b/resources/svg/gatsby.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/gauss.svg b/resources/svg/gauss.svg index 6f0aaba..8f7d1ce 100644 --- a/resources/svg/gauss.svg +++ b/resources/svg/gauss.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/gdb.svg b/resources/svg/gdb.svg index 11abebe..b1b4489 100644 --- a/resources/svg/gdb.svg +++ b/resources/svg/gdb.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/genshi.svg b/resources/svg/genshi.svg index 40872d6..4eccfc2 100644 --- a/resources/svg/genshi.svg +++ b/resources/svg/genshi.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/genstat.svg b/resources/svg/genstat.svg index 4cd6650..c5fdd33 100644 --- a/resources/svg/genstat.svg +++ b/resources/svg/genstat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/gentoo.svg b/resources/svg/gentoo.svg index 362804b..7f30b92 100644 --- a/resources/svg/gentoo.svg +++ b/resources/svg/gentoo.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/gf.svg b/resources/svg/gf.svg index 1f46e4e..42c5cc7 100644 --- a/resources/svg/gf.svg +++ b/resources/svg/gf.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ghostscript.svg b/resources/svg/ghostscript.svg index 402d6b4..e735b1c 100644 --- a/resources/svg/ghostscript.svg +++ b/resources/svg/ghostscript.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/gimp.svg b/resources/svg/gimp.svg index 8c01c45..614f30c 100644 --- a/resources/svg/gimp.svg +++ b/resources/svg/gimp.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/gitlab.svg b/resources/svg/gitlab.svg index ed42bc6..e0e4f8f 100644 --- a/resources/svg/gitlab.svg +++ b/resources/svg/gitlab.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/gitpod.svg b/resources/svg/gitpod.svg index 2c3686e..7404ede 100644 --- a/resources/svg/gitpod.svg +++ b/resources/svg/gitpod.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/glade.svg b/resources/svg/glade.svg index a16922d..b71ea95 100644 --- a/resources/svg/glade.svg +++ b/resources/svg/glade.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/glide.svg b/resources/svg/glide.svg index cbdb48a..12652aa 100644 --- a/resources/svg/glide.svg +++ b/resources/svg/glide.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/gltf.svg b/resources/svg/gltf.svg index ebfd777..812413a 100644 --- a/resources/svg/gltf.svg +++ b/resources/svg/gltf.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/glyphs.svg b/resources/svg/glyphs.svg index 483b929..5c8e099 100644 --- a/resources/svg/glyphs.svg +++ b/resources/svg/glyphs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/gn.svg b/resources/svg/gn.svg index e2074db..2e663e0 100644 --- a/resources/svg/gn.svg +++ b/resources/svg/gn.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/gnu.svg b/resources/svg/gnu.svg index efa01a7..f24c72a 100644 --- a/resources/svg/gnu.svg +++ b/resources/svg/gnu.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/gnuplot.svg b/resources/svg/gnuplot.svg index 897051f..8a3358f 100644 --- a/resources/svg/gnuplot.svg +++ b/resources/svg/gnuplot.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/go-old.svg b/resources/svg/go-old.svg index 27f3ab9..00294e7 100644 --- a/resources/svg/go-old.svg +++ b/resources/svg/go-old.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/go.svg b/resources/svg/go.svg index 759aa1a..0c2b212 100644 --- a/resources/svg/go.svg +++ b/resources/svg/go.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/godot.svg b/resources/svg/godot.svg index f6620d1..24af488 100644 --- a/resources/svg/godot.svg +++ b/resources/svg/godot.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/golo.svg b/resources/svg/golo.svg index ca6dda8..5d0b5c3 100644 --- a/resources/svg/golo.svg +++ b/resources/svg/golo.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/goreleaser.svg b/resources/svg/goreleaser.svg index a1b29ac..48a64f9 100644 --- a/resources/svg/goreleaser.svg +++ b/resources/svg/goreleaser.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/gosu.svg b/resources/svg/gosu.svg index 83a2ae2..abc3357 100644 --- a/resources/svg/gosu.svg +++ b/resources/svg/gosu.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/gradle.svg b/resources/svg/gradle.svg index 5649923..a233aba 100644 --- a/resources/svg/gradle.svg +++ b/resources/svg/gradle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/grapher.svg b/resources/svg/grapher.svg index dab5623..66af446 100644 --- a/resources/svg/grapher.svg +++ b/resources/svg/grapher.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/graphite.svg b/resources/svg/graphite.svg index 41b0b5d..0738617 100644 --- a/resources/svg/graphite.svg +++ b/resources/svg/graphite.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/graphql-codegenerator.svg b/resources/svg/graphql-codegenerator.svg index c041e2f..366671c 100644 --- a/resources/svg/graphql-codegenerator.svg +++ b/resources/svg/graphql-codegenerator.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/graphql.svg b/resources/svg/graphql.svg index 192d7af..bcfa612 100644 --- a/resources/svg/graphql.svg +++ b/resources/svg/graphql.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/graphviz.svg b/resources/svg/graphviz.svg index fcec22e..7863925 100644 --- a/resources/svg/graphviz.svg +++ b/resources/svg/graphviz.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/gravit-designer.svg b/resources/svg/gravit-designer.svg index 62c5fb5..90c12c0 100644 --- a/resources/svg/gravit-designer.svg +++ b/resources/svg/gravit-designer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/greenkeeper.svg b/resources/svg/greenkeeper.svg index 01b43ef..94ca3dc 100644 --- a/resources/svg/greenkeeper.svg +++ b/resources/svg/greenkeeper.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/gridsome.svg b/resources/svg/gridsome.svg index fb69038..6e6b2d7 100644 --- a/resources/svg/gridsome.svg +++ b/resources/svg/gridsome.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/groovy.svg b/resources/svg/groovy.svg index 4d6ed08..2141073 100644 --- a/resources/svg/groovy.svg +++ b/resources/svg/groovy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/grunt.svg b/resources/svg/grunt.svg index b10b887..c1433ef 100644 --- a/resources/svg/grunt.svg +++ b/resources/svg/grunt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/gulp.svg b/resources/svg/gulp.svg index 06ebb9d..92847bb 100644 --- a/resources/svg/gulp.svg +++ b/resources/svg/gulp.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/hack.svg b/resources/svg/hack.svg index 79dad1a..c512161 100644 --- a/resources/svg/hack.svg +++ b/resources/svg/hack.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/haml.svg b/resources/svg/haml.svg index f663830..6f0f811 100644 --- a/resources/svg/haml.svg +++ b/resources/svg/haml.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/harbour.svg b/resources/svg/harbour.svg index d2e03ae..99cdc76 100644 --- a/resources/svg/harbour.svg +++ b/resources/svg/harbour.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/hashicorp.svg b/resources/svg/hashicorp.svg index 7f1c4d4..c321f69 100644 --- a/resources/svg/hashicorp.svg +++ b/resources/svg/hashicorp.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/haxe.svg b/resources/svg/haxe.svg index 7650e8c..2b3aa0f 100644 --- a/resources/svg/haxe.svg +++ b/resources/svg/haxe.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/haxedevelop.svg b/resources/svg/haxedevelop.svg index 7f634fb..485161b 100644 --- a/resources/svg/haxedevelop.svg +++ b/resources/svg/haxedevelop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/helix.svg b/resources/svg/helix.svg index 44bdd19..a5074e6 100644 --- a/resources/svg/helix.svg +++ b/resources/svg/helix.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/hewlettpackard.svg b/resources/svg/hewlettpackard.svg index 714dc41..94ceb05 100644 --- a/resources/svg/hewlettpackard.svg +++ b/resources/svg/hewlettpackard.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/hie.svg b/resources/svg/hie.svg index 2263961..c2eda4f 100644 --- a/resources/svg/hie.svg +++ b/resources/svg/hie.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/hitachi.svg b/resources/svg/hitachi.svg index 48d2f84..b1d8b15 100644 --- a/resources/svg/hitachi.svg +++ b/resources/svg/hitachi.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/hjson.svg b/resources/svg/hjson.svg index 1422875..d2890bd 100644 --- a/resources/svg/hjson.svg +++ b/resources/svg/hjson.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/homebrew.svg b/resources/svg/homebrew.svg index 0e20ef6..a775b76 100644 --- a/resources/svg/homebrew.svg +++ b/resources/svg/homebrew.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/hop.svg b/resources/svg/hop.svg index f0369d7..fe49dd0 100644 --- a/resources/svg/hop.svg +++ b/resources/svg/hop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/hoplon.svg b/resources/svg/hoplon.svg index d447514..aa58f60 100644 --- a/resources/svg/hoplon.svg +++ b/resources/svg/hoplon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/houdini.svg b/resources/svg/houdini.svg index a79fd7c..2c863ae 100644 --- a/resources/svg/houdini.svg +++ b/resources/svg/houdini.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/houndci.svg b/resources/svg/houndci.svg index 1fd93e4..b91d965 100644 --- a/resources/svg/houndci.svg +++ b/resources/svg/houndci.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/hugo.svg b/resources/svg/hugo.svg index ed51dd6..275ebb1 100644 --- a/resources/svg/hugo.svg +++ b/resources/svg/hugo.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/husky.svg b/resources/svg/husky.svg index e0ba31c..b029d57 100644 --- a/resources/svg/husky.svg +++ b/resources/svg/husky.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/hy.svg b/resources/svg/hy.svg index 79ba6b3..09d2dce 100644 --- a/resources/svg/hy.svg +++ b/resources/svg/hy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/hygen.svg b/resources/svg/hygen.svg index 88b017c..01bfa9a 100644 --- a/resources/svg/hygen.svg +++ b/resources/svg/hygen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/hyper.svg b/resources/svg/hyper.svg index 73cda4b..31b3bdb 100644 --- a/resources/svg/hyper.svg +++ b/resources/svg/hyper.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/icomoon.svg b/resources/svg/icomoon.svg index d27d4ca..8d8bae2 100644 --- a/resources/svg/icomoon.svg +++ b/resources/svg/icomoon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/icu.svg b/resources/svg/icu.svg index 13b9b71..7db4f8c 100644 --- a/resources/svg/icu.svg +++ b/resources/svg/icu.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/idl.svg b/resources/svg/idl.svg index aee9dca..a46552c 100644 --- a/resources/svg/idl.svg +++ b/resources/svg/idl.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/idris.svg b/resources/svg/idris.svg index ec5c1e1..53e53f3 100644 --- a/resources/svg/idris.svg +++ b/resources/svg/idris.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/igor-pro.svg b/resources/svg/igor-pro.svg index 7e9b74e..fd48eb0 100644 --- a/resources/svg/igor-pro.svg +++ b/resources/svg/igor-pro.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/illumos.svg b/resources/svg/illumos.svg index fb8a0b8..ff82051 100644 --- a/resources/svg/illumos.svg +++ b/resources/svg/illumos.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/image.svg b/resources/svg/image.svg index 2bf7f43..f7e2047 100644 --- a/resources/svg/image.svg +++ b/resources/svg/image.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/imba-alt.svg b/resources/svg/imba-alt.svg index 0e5553d..b8bcfd3 100644 --- a/resources/svg/imba-alt.svg +++ b/resources/svg/imba-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/imba-old.svg b/resources/svg/imba-old.svg index 95fda45..cab4c9c 100644 --- a/resources/svg/imba-old.svg +++ b/resources/svg/imba-old.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/imba.svg b/resources/svg/imba.svg index fc40677..7511dee 100644 --- a/resources/svg/imba.svg +++ b/resources/svg/imba.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/imgbot.svg b/resources/svg/imgbot.svg index 7a3cfe6..d36210b 100644 --- a/resources/svg/imgbot.svg +++ b/resources/svg/imgbot.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/influxdata.svg b/resources/svg/influxdata.svg index cdf2865..7ad0f77 100644 --- a/resources/svg/influxdata.svg +++ b/resources/svg/influxdata.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/inform7.svg b/resources/svg/inform7.svg index fd2cded..fde717b 100644 --- a/resources/svg/inform7.svg +++ b/resources/svg/inform7.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ink.svg b/resources/svg/ink.svg index 18450d5..75831ab 100644 --- a/resources/svg/ink.svg +++ b/resources/svg/ink.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/inkscape.svg b/resources/svg/inkscape.svg index 27e7365..2d2c6de 100644 --- a/resources/svg/inkscape.svg +++ b/resources/svg/inkscape.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/innosetup.svg b/resources/svg/innosetup.svg index 68edc31..8238c14 100644 --- a/resources/svg/innosetup.svg +++ b/resources/svg/innosetup.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/intel.svg b/resources/svg/intel.svg index 4cf8e30..7a1b763 100644 --- a/resources/svg/intel.svg +++ b/resources/svg/intel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/io.svg b/resources/svg/io.svg index 682593e..80fae19 100644 --- a/resources/svg/io.svg +++ b/resources/svg/io.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ioke.svg b/resources/svg/ioke.svg index f8b012d..366f9cf 100644 --- a/resources/svg/ioke.svg +++ b/resources/svg/ioke.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ionic-project.svg b/resources/svg/ionic-project.svg index 3ef46fe..b603518 100644 --- a/resources/svg/ionic-project.svg +++ b/resources/svg/ionic-project.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/isabelle.svg b/resources/svg/isabelle.svg index a0a1e8d..44e0ef6 100644 --- a/resources/svg/isabelle.svg +++ b/resources/svg/isabelle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/istanbul.svg b/resources/svg/istanbul.svg index b17f26d..ebcf375 100644 --- a/resources/svg/istanbul.svg +++ b/resources/svg/istanbul.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/j.svg b/resources/svg/j.svg index 20ea1f1..bd98ccc 100644 --- a/resources/svg/j.svg +++ b/resources/svg/j.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/jade.svg b/resources/svg/jade.svg index ef7855b..5c6c786 100644 --- a/resources/svg/jade.svg +++ b/resources/svg/jade.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/jakefile.svg b/resources/svg/jakefile.svg index 8c2789d..35ee266 100644 --- a/resources/svg/jakefile.svg +++ b/resources/svg/jakefile.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/janet.svg b/resources/svg/janet.svg index 3caf192..8d3e411 100644 --- a/resources/svg/janet.svg +++ b/resources/svg/janet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/jasmine.svg b/resources/svg/jasmine.svg index 9561697..80439c8 100644 --- a/resources/svg/jasmine.svg +++ b/resources/svg/jasmine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/jenkins.svg b/resources/svg/jenkins.svg index 509f015..fb7482b 100644 --- a/resources/svg/jenkins.svg +++ b/resources/svg/jenkins.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/jest.svg b/resources/svg/jest.svg index c8994a6..8edece1 100644 --- a/resources/svg/jest.svg +++ b/resources/svg/jest.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/jinja.svg b/resources/svg/jinja.svg index d91c19c..53fa292 100644 --- a/resources/svg/jinja.svg +++ b/resources/svg/jinja.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/jison.svg b/resources/svg/jison.svg index 165c503..e9d52ec 100644 --- a/resources/svg/jison.svg +++ b/resources/svg/jison.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/jolie.svg b/resources/svg/jolie.svg index 2817b2c..4443c6f 100644 --- a/resources/svg/jolie.svg +++ b/resources/svg/jolie.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/jscpd.svg b/resources/svg/jscpd.svg index 20d6d1d..6b311c5 100644 --- a/resources/svg/jscpd.svg +++ b/resources/svg/jscpd.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/json-1.svg b/resources/svg/json-1.svg index 1f9f0c9..ad7f5cb 100644 --- a/resources/svg/json-1.svg +++ b/resources/svg/json-1.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/json-2.svg b/resources/svg/json-2.svg index 57c0d05..5383b68 100644 --- a/resources/svg/json-2.svg +++ b/resources/svg/json-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/json-ld1.svg b/resources/svg/json-ld1.svg index 1a54a4d..222c1b2 100644 --- a/resources/svg/json-ld1.svg +++ b/resources/svg/json-ld1.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/json-ld2.svg b/resources/svg/json-ld2.svg index ae3679f..96ab998 100644 --- a/resources/svg/json-ld2.svg +++ b/resources/svg/json-ld2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/json5.svg b/resources/svg/json5.svg index 6fc1e64..a0ca122 100644 --- a/resources/svg/json5.svg +++ b/resources/svg/json5.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/jsonnet.svg b/resources/svg/jsonnet.svg index 2746196..b33cf60 100644 --- a/resources/svg/jsonnet.svg +++ b/resources/svg/jsonnet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/jsx-alt.svg b/resources/svg/jsx-alt.svg index 3efe348..217c58d 100644 --- a/resources/svg/jsx-alt.svg +++ b/resources/svg/jsx-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/jsx-atom.svg b/resources/svg/jsx-atom.svg index 456a0d8..e25434e 100644 --- a/resources/svg/jsx-atom.svg +++ b/resources/svg/jsx-atom.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/jsx.svg b/resources/svg/jsx.svg index 52ff933..f050238 100644 --- a/resources/svg/jsx.svg +++ b/resources/svg/jsx.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/julia.svg b/resources/svg/julia.svg index 801db87..df0ee84 100644 --- a/resources/svg/julia.svg +++ b/resources/svg/julia.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/junos.svg b/resources/svg/junos.svg index 4b379d7..7370459 100644 --- a/resources/svg/junos.svg +++ b/resources/svg/junos.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/jupyter.svg b/resources/svg/jupyter.svg index 7515400..958e7d9 100644 --- a/resources/svg/jupyter.svg +++ b/resources/svg/jupyter.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/kaitai.svg b/resources/svg/kaitai.svg index 37f0784..9bb805b 100644 --- a/resources/svg/kaitai.svg +++ b/resources/svg/kaitai.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/karma.svg b/resources/svg/karma.svg index 4fdb798..5594246 100644 --- a/resources/svg/karma.svg +++ b/resources/svg/karma.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/keybase.svg b/resources/svg/keybase.svg index ce8d023..99ad229 100644 --- a/resources/svg/keybase.svg +++ b/resources/svg/keybase.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/keynote.svg b/resources/svg/keynote.svg index ba1b2e5..00ce1aa 100644 --- a/resources/svg/keynote.svg +++ b/resources/svg/keynote.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/khronos.svg b/resources/svg/khronos.svg index 3e5f87c..42931ac 100644 --- a/resources/svg/khronos.svg +++ b/resources/svg/khronos.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/kibo.svg b/resources/svg/kibo.svg index 25def6d..283d67a 100644 --- a/resources/svg/kibo.svg +++ b/resources/svg/kibo.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/kicad.svg b/resources/svg/kicad.svg index 3a8cdb5..489d068 100644 --- a/resources/svg/kicad.svg +++ b/resources/svg/kicad.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/kitchenci.svg b/resources/svg/kitchenci.svg index 0c18695..7e14095 100644 --- a/resources/svg/kitchenci.svg +++ b/resources/svg/kitchenci.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/kivy.svg b/resources/svg/kivy.svg index 25ecd7a..2e1f74a 100644 --- a/resources/svg/kivy.svg +++ b/resources/svg/kivy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/knime.svg b/resources/svg/knime.svg index 703400d..3d2f9c3 100644 --- a/resources/svg/knime.svg +++ b/resources/svg/knime.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/knockout.svg b/resources/svg/knockout.svg index c2e1f0c..ecef385 100644 --- a/resources/svg/knockout.svg +++ b/resources/svg/knockout.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/kos.svg b/resources/svg/kos.svg index a747d36..0ac8785 100644 --- a/resources/svg/kos.svg +++ b/resources/svg/kos.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/kotlin.svg b/resources/svg/kotlin.svg index 59a6c69..5158481 100644 --- a/resources/svg/kotlin.svg +++ b/resources/svg/kotlin.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/krl.svg b/resources/svg/krl.svg index 9eaae54..9447c4a 100644 --- a/resources/svg/krl.svg +++ b/resources/svg/krl.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/kubernetes.svg b/resources/svg/kubernetes.svg index efb9832..cdd974b 100644 --- a/resources/svg/kubernetes.svg +++ b/resources/svg/kubernetes.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/kusto-alt.svg b/resources/svg/kusto-alt.svg index fe96e5c..919b240 100644 --- a/resources/svg/kusto-alt.svg +++ b/resources/svg/kusto-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/kusto.svg b/resources/svg/kusto.svg index f9e150b..b1e1ae0 100644 --- a/resources/svg/kusto.svg +++ b/resources/svg/kusto.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/kx.svg b/resources/svg/kx.svg index 53dd205..277e8eb 100644 --- a/resources/svg/kx.svg +++ b/resources/svg/kx.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/labview.svg b/resources/svg/labview.svg index a33dd83..05137ff 100644 --- a/resources/svg/labview.svg +++ b/resources/svg/labview.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/laravel.svg b/resources/svg/laravel.svg index 93acb80..251f271 100644 --- a/resources/svg/laravel.svg +++ b/resources/svg/laravel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/lark.svg b/resources/svg/lark.svg index 3167072..5abc5f6 100644 --- a/resources/svg/lark.svg +++ b/resources/svg/lark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/lasso.svg b/resources/svg/lasso.svg index 888af21..c1a09f4 100644 --- a/resources/svg/lasso.svg +++ b/resources/svg/lasso.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/latex.svg b/resources/svg/latex.svg index 777ad50..69910fb 100644 --- a/resources/svg/latex.svg +++ b/resources/svg/latex.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/latino.svg b/resources/svg/latino.svg index d20c3f8..b718352 100644 --- a/resources/svg/latino.svg +++ b/resources/svg/latino.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/leaflet.svg b/resources/svg/leaflet.svg index aa705f1..7880c27 100644 --- a/resources/svg/leaflet.svg +++ b/resources/svg/leaflet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/lean.svg b/resources/svg/lean.svg index 4076e9e..e004da6 100644 --- a/resources/svg/lean.svg +++ b/resources/svg/lean.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/lefthook-alt.svg b/resources/svg/lefthook-alt.svg index f48575c..7f0c259 100644 --- a/resources/svg/lefthook-alt.svg +++ b/resources/svg/lefthook-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/lefthook.svg b/resources/svg/lefthook.svg index c1d6585..148c10e 100644 --- a/resources/svg/lefthook.svg +++ b/resources/svg/lefthook.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/leiningen.svg b/resources/svg/leiningen.svg index 64f3609..bf57e6c 100644 --- a/resources/svg/leiningen.svg +++ b/resources/svg/leiningen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/lektor.svg b/resources/svg/lektor.svg index 59f5ab3..5f5805d 100644 --- a/resources/svg/lektor.svg +++ b/resources/svg/lektor.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/lerna.svg b/resources/svg/lerna.svg index 1d5954f..ac60f1a 100644 --- a/resources/svg/lerna.svg +++ b/resources/svg/lerna.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/lex-alt.svg b/resources/svg/lex-alt.svg index 2606cd0..64ec588 100644 --- a/resources/svg/lex-alt.svg +++ b/resources/svg/lex-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/lex.svg b/resources/svg/lex.svg index c6bb085..6f5e11f 100644 --- a/resources/svg/lex.svg +++ b/resources/svg/lex.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/lfe.svg b/resources/svg/lfe.svg index 4a7a0c5..f497ce0 100644 --- a/resources/svg/lfe.svg +++ b/resources/svg/lfe.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/lgtm.svg b/resources/svg/lgtm.svg index c6dbd17..32f0dac 100644 --- a/resources/svg/lgtm.svg +++ b/resources/svg/lgtm.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/libuv.svg b/resources/svg/libuv.svg index 49550f5..593542a 100644 --- a/resources/svg/libuv.svg +++ b/resources/svg/libuv.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/lighthouse.svg b/resources/svg/lighthouse.svg index 4e882af..5a597e8 100644 --- a/resources/svg/lighthouse.svg +++ b/resources/svg/lighthouse.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/lightwave.svg b/resources/svg/lightwave.svg index 0d95b10..7ca0140 100644 --- a/resources/svg/lightwave.svg +++ b/resources/svg/lightwave.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/lilypond.svg b/resources/svg/lilypond.svg index 96eb5d8..9dc4b64 100644 --- a/resources/svg/lilypond.svg +++ b/resources/svg/lilypond.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/lime.svg b/resources/svg/lime.svg index a1e9fd7..80fd47f 100644 --- a/resources/svg/lime.svg +++ b/resources/svg/lime.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/linqpad.svg b/resources/svg/linqpad.svg index d85976e..e726abe 100644 --- a/resources/svg/linqpad.svg +++ b/resources/svg/linqpad.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/lisp.svg b/resources/svg/lisp.svg index bd5e675..18c112b 100644 --- a/resources/svg/lisp.svg +++ b/resources/svg/lisp.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/livescript.svg b/resources/svg/livescript.svg index 9589fc5..82454e2 100644 --- a/resources/svg/livescript.svg +++ b/resources/svg/livescript.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/llvm.svg b/resources/svg/llvm.svg index 9024baa..d5185df 100644 --- a/resources/svg/llvm.svg +++ b/resources/svg/llvm.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/logtalk.svg b/resources/svg/logtalk.svg index aab92f0..33692ea 100644 --- a/resources/svg/logtalk.svg +++ b/resources/svg/logtalk.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/lolcode.svg b/resources/svg/lolcode.svg index 0069eb5..d1f65a8 100644 --- a/resources/svg/lolcode.svg +++ b/resources/svg/lolcode.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/lookml.svg b/resources/svg/lookml.svg index 0a13fad..b3ff7fa 100644 --- a/resources/svg/lookml.svg +++ b/resources/svg/lookml.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/lsl.svg b/resources/svg/lsl.svg index 34de550..2427ef4 100644 --- a/resources/svg/lsl.svg +++ b/resources/svg/lsl.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/lua.svg b/resources/svg/lua.svg index 2ee3f69..e9a5850 100644 --- a/resources/svg/lua.svg +++ b/resources/svg/lua.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/macaulay2.svg b/resources/svg/macaulay2.svg index bfb8fb9..9dea0bf 100644 --- a/resources/svg/macaulay2.svg +++ b/resources/svg/macaulay2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/macvim.svg b/resources/svg/macvim.svg index 8c03fd6..a92f94d 100644 --- a/resources/svg/macvim.svg +++ b/resources/svg/macvim.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/magit.svg b/resources/svg/magit.svg index 726398f..b773f6a 100644 --- a/resources/svg/magit.svg +++ b/resources/svg/magit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/mako.svg b/resources/svg/mako.svg index dc111b5..00750c2 100644 --- a/resources/svg/mako.svg +++ b/resources/svg/mako.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/manjaro.svg b/resources/svg/manjaro.svg index a30d81b..0417ad5 100644 --- a/resources/svg/manjaro.svg +++ b/resources/svg/manjaro.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/manpage.svg b/resources/svg/manpage.svg index fa951e2..4276244 100644 --- a/resources/svg/manpage.svg +++ b/resources/svg/manpage.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/mapbox.svg b/resources/svg/mapbox.svg index 039c58a..3682b90 100644 --- a/resources/svg/mapbox.svg +++ b/resources/svg/mapbox.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/markdownlint.svg b/resources/svg/markdownlint.svg index 49c70a3..e1312e7 100644 --- a/resources/svg/markdownlint.svg +++ b/resources/svg/markdownlint.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/marko.svg b/resources/svg/marko.svg index 513af50..0fe2c65 100644 --- a/resources/svg/marko.svg +++ b/resources/svg/marko.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/mathematica.svg b/resources/svg/mathematica.svg index bd916f4..975390b 100644 --- a/resources/svg/mathematica.svg +++ b/resources/svg/mathematica.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/mathjax.svg b/resources/svg/mathjax.svg index f67bc70..3ee242b 100644 --- a/resources/svg/mathjax.svg +++ b/resources/svg/mathjax.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/matlab.svg b/resources/svg/matlab.svg index f3a6c0c..7d36b7b 100644 --- a/resources/svg/matlab.svg +++ b/resources/svg/matlab.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/matroska.svg b/resources/svg/matroska.svg index a422f4e..d045633 100644 --- a/resources/svg/matroska.svg +++ b/resources/svg/matroska.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/max.svg b/resources/svg/max.svg index 3b0cc54..ca1fb4e 100644 --- a/resources/svg/max.svg +++ b/resources/svg/max.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/maya.svg b/resources/svg/maya.svg index 4eace65..a022996 100644 --- a/resources/svg/maya.svg +++ b/resources/svg/maya.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/mdx.svg b/resources/svg/mdx.svg index ca07876..2227a80 100644 --- a/resources/svg/mdx.svg +++ b/resources/svg/mdx.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/mediawiki.svg b/resources/svg/mediawiki.svg index 2e77549..3b74928 100644 --- a/resources/svg/mediawiki.svg +++ b/resources/svg/mediawiki.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/melpa.svg b/resources/svg/melpa.svg index 140aa80..38f557b 100644 --- a/resources/svg/melpa.svg +++ b/resources/svg/melpa.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/mercurial.svg b/resources/svg/mercurial.svg index b574c44..0c8c63a 100644 --- a/resources/svg/mercurial.svg +++ b/resources/svg/mercurial.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/mercury.svg b/resources/svg/mercury.svg index 625e88a..aa19074 100644 --- a/resources/svg/mercury.svg +++ b/resources/svg/mercury.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/mermaid.svg b/resources/svg/mermaid.svg index a6ea86b..a2c54b2 100644 --- a/resources/svg/mermaid.svg +++ b/resources/svg/mermaid.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/meson-old.svg b/resources/svg/meson-old.svg index dd86941..6bb1020 100644 --- a/resources/svg/meson-old.svg +++ b/resources/svg/meson-old.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/meson.svg b/resources/svg/meson.svg index 790b4aa..41254f7 100644 --- a/resources/svg/meson.svg +++ b/resources/svg/meson.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/metal.svg b/resources/svg/metal.svg index 91cd48f..0ebd79d 100644 --- a/resources/svg/metal.svg +++ b/resources/svg/metal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/metapost.svg b/resources/svg/metapost.svg index 6af1591..f67a002 100644 --- a/resources/svg/metapost.svg +++ b/resources/svg/metapost.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/meteor.svg b/resources/svg/meteor.svg index a6d3b95..481cdc9 100644 --- a/resources/svg/meteor.svg +++ b/resources/svg/meteor.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/microsoft-access.svg b/resources/svg/microsoft-access.svg index ec4d582..cd97615 100644 --- a/resources/svg/microsoft-access.svg +++ b/resources/svg/microsoft-access.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/microsoft-excel.svg b/resources/svg/microsoft-excel.svg index c901f98..918a220 100644 --- a/resources/svg/microsoft-excel.svg +++ b/resources/svg/microsoft-excel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/microsoft-infopath.svg b/resources/svg/microsoft-infopath.svg index ce8ccf0..6b11196 100644 --- a/resources/svg/microsoft-infopath.svg +++ b/resources/svg/microsoft-infopath.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/microsoft-lync.svg b/resources/svg/microsoft-lync.svg index 105195a..42700f5 100644 --- a/resources/svg/microsoft-lync.svg +++ b/resources/svg/microsoft-lync.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/microsoft-onenote.svg b/resources/svg/microsoft-onenote.svg index 6d0c485..169e4ca 100644 --- a/resources/svg/microsoft-onenote.svg +++ b/resources/svg/microsoft-onenote.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/microsoft-outlook.svg b/resources/svg/microsoft-outlook.svg index 5bd9c2d..b5f04b3 100644 --- a/resources/svg/microsoft-outlook.svg +++ b/resources/svg/microsoft-outlook.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/microsoft-powerpoint.svg b/resources/svg/microsoft-powerpoint.svg index 23fd338..602cb7a 100644 --- a/resources/svg/microsoft-powerpoint.svg +++ b/resources/svg/microsoft-powerpoint.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/microsoft-project.svg b/resources/svg/microsoft-project.svg index 4404f44..0b6d61b 100644 --- a/resources/svg/microsoft-project.svg +++ b/resources/svg/microsoft-project.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/microsoft-publisher.svg b/resources/svg/microsoft-publisher.svg index f11d2dd..6ac572a 100644 --- a/resources/svg/microsoft-publisher.svg +++ b/resources/svg/microsoft-publisher.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/microsoft-visio.svg b/resources/svg/microsoft-visio.svg index 4bfcf9f..522bb01 100644 --- a/resources/svg/microsoft-visio.svg +++ b/resources/svg/microsoft-visio.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/microsoft-word.svg b/resources/svg/microsoft-word.svg index 821a9dc..5a095d8 100644 --- a/resources/svg/microsoft-word.svg +++ b/resources/svg/microsoft-word.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/minecraft.svg b/resources/svg/minecraft.svg index b77e727..acc4308 100644 --- a/resources/svg/minecraft.svg +++ b/resources/svg/minecraft.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/minizinc.svg b/resources/svg/minizinc.svg index ef91e3c..9ba3200 100644 --- a/resources/svg/minizinc.svg +++ b/resources/svg/minizinc.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/mint.svg b/resources/svg/mint.svg index f2fda36..276336b 100644 --- a/resources/svg/mint.svg +++ b/resources/svg/mint.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/mirah.svg b/resources/svg/mirah.svg index 0f1321e..5d704ba 100644 --- a/resources/svg/mirah.svg +++ b/resources/svg/mirah.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/miranda.svg b/resources/svg/miranda.svg index f8dc6bd..e889a01 100644 --- a/resources/svg/miranda.svg +++ b/resources/svg/miranda.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/mirc.svg b/resources/svg/mirc.svg index 0f1037c..f9ed3ee 100644 --- a/resources/svg/mirc.svg +++ b/resources/svg/mirc.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/mixin.svg b/resources/svg/mixin.svg index c4d0b3e..3a308ed 100644 --- a/resources/svg/mixin.svg +++ b/resources/svg/mixin.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/mjml.svg b/resources/svg/mjml.svg index c3c7b9d..cf77003 100644 --- a/resources/svg/mjml.svg +++ b/resources/svg/mjml.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/mocha.svg b/resources/svg/mocha.svg index c6a5626..0c55dc9 100644 --- a/resources/svg/mocha.svg +++ b/resources/svg/mocha.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/modelica.svg b/resources/svg/modelica.svg index 08e3ead..d424b72 100644 --- a/resources/svg/modelica.svg +++ b/resources/svg/modelica.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/modernweb.svg b/resources/svg/modernweb.svg index 7c5a26f..c123e8e 100644 --- a/resources/svg/modernweb.svg +++ b/resources/svg/modernweb.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/modo.svg b/resources/svg/modo.svg index 565b061..05eaad4 100644 --- a/resources/svg/modo.svg +++ b/resources/svg/modo.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/modula-2.svg b/resources/svg/modula-2.svg index ed7df76..7c78fc1 100644 --- a/resources/svg/modula-2.svg +++ b/resources/svg/modula-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/modula-3.svg b/resources/svg/modula-3.svg index 3dc0663..1bc33b9 100644 --- a/resources/svg/modula-3.svg +++ b/resources/svg/modula-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/moho.svg b/resources/svg/moho.svg index 74bbe59..63c4439 100644 --- a/resources/svg/moho.svg +++ b/resources/svg/moho.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/moleculer.svg b/resources/svg/moleculer.svg index 9e51a15..02295d1 100644 --- a/resources/svg/moleculer.svg +++ b/resources/svg/moleculer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/moment-timezone.svg b/resources/svg/moment-timezone.svg index a2a7137..38e8d49 100644 --- a/resources/svg/moment-timezone.svg +++ b/resources/svg/moment-timezone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/moment.svg b/resources/svg/moment.svg index f6396a4..d036e5a 100644 --- a/resources/svg/moment.svg +++ b/resources/svg/moment.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/monkey.svg b/resources/svg/monkey.svg index 4b7aa7f..345a303 100644 --- a/resources/svg/monkey.svg +++ b/resources/svg/monkey.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/mono.svg b/resources/svg/mono.svg index 3b0ae11..557973b 100644 --- a/resources/svg/mono.svg +++ b/resources/svg/mono.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/monotone.svg b/resources/svg/monotone.svg index 1f59b7c..de7bfbc 100644 --- a/resources/svg/monotone.svg +++ b/resources/svg/monotone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/motorola.svg b/resources/svg/motorola.svg index f3b63c2..97f0c6a 100644 --- a/resources/svg/motorola.svg +++ b/resources/svg/motorola.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/moustache.svg b/resources/svg/moustache.svg index 93939a9..f4edb55 100644 --- a/resources/svg/moustache.svg +++ b/resources/svg/moustache.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/mruby.svg b/resources/svg/mruby.svg index 6724f3f..1c4100e 100644 --- a/resources/svg/mruby.svg +++ b/resources/svg/mruby.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ms-dos.svg b/resources/svg/ms-dos.svg index c5ce775..fada683 100644 --- a/resources/svg/ms-dos.svg +++ b/resources/svg/ms-dos.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/mupad.svg b/resources/svg/mupad.svg index c8e7414..6da0c55 100644 --- a/resources/svg/mupad.svg +++ b/resources/svg/mupad.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nano.svg b/resources/svg/nano.svg index e86f857..19ac0a9 100644 --- a/resources/svg/nano.svg +++ b/resources/svg/nano.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nanoc.svg b/resources/svg/nanoc.svg index c7da221..772cd0f 100644 --- a/resources/svg/nanoc.svg +++ b/resources/svg/nanoc.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nant.svg b/resources/svg/nant.svg index 43c85f9..d8e1ac8 100644 --- a/resources/svg/nant.svg +++ b/resources/svg/nant.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nasm.svg b/resources/svg/nasm.svg index cd5f79c..155f45c 100644 --- a/resources/svg/nasm.svg +++ b/resources/svg/nasm.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ndepend.svg b/resources/svg/ndepend.svg index 076950d..1a0b233 100644 --- a/resources/svg/ndepend.svg +++ b/resources/svg/ndepend.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/neko.svg b/resources/svg/neko.svg index ec932d0..748624c 100644 --- a/resources/svg/neko.svg +++ b/resources/svg/neko.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nemerle.svg b/resources/svg/nemerle.svg index cf9371b..61df189 100644 --- a/resources/svg/nemerle.svg +++ b/resources/svg/nemerle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/neo4j.svg b/resources/svg/neo4j.svg index 2634211..7346f85 100644 --- a/resources/svg/neo4j.svg +++ b/resources/svg/neo4j.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/neon.svg b/resources/svg/neon.svg index 194c744..8d893a7 100644 --- a/resources/svg/neon.svg +++ b/resources/svg/neon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nessus.svg b/resources/svg/nessus.svg index 7490c4c..2e60bd4 100644 --- a/resources/svg/nessus.svg +++ b/resources/svg/nessus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nestjs.svg b/resources/svg/nestjs.svg index c08d75f..2510034 100644 --- a/resources/svg/nestjs.svg +++ b/resources/svg/nestjs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/netlify.svg b/resources/svg/netlify.svg index 42b2509..078bff0 100644 --- a/resources/svg/netlify.svg +++ b/resources/svg/netlify.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/netlinx.svg b/resources/svg/netlinx.svg index f0b39bf..8ae19ca 100644 --- a/resources/svg/netlinx.svg +++ b/resources/svg/netlinx.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/netlogo.svg b/resources/svg/netlogo.svg index 0621cb7..87617c4 100644 --- a/resources/svg/netlogo.svg +++ b/resources/svg/netlogo.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/new-relic.svg b/resources/svg/new-relic.svg index 23660ec..77839a5 100644 --- a/resources/svg/new-relic.svg +++ b/resources/svg/new-relic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nextflow.svg b/resources/svg/nextflow.svg index 1e171b1..1bc7abf 100644 --- a/resources/svg/nextflow.svg +++ b/resources/svg/nextflow.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nextjs.svg b/resources/svg/nextjs.svg index eefd47e..734239b 100644 --- a/resources/svg/nextjs.svg +++ b/resources/svg/nextjs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nginx.svg b/resources/svg/nginx.svg index 9bc2ff7..d480a1e 100644 --- a/resources/svg/nginx.svg +++ b/resources/svg/nginx.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ngrx.svg b/resources/svg/ngrx.svg index f07c00a..1130002 100644 --- a/resources/svg/ngrx.svg +++ b/resources/svg/ngrx.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nib.svg b/resources/svg/nib.svg index eed0c33..bd5de4f 100644 --- a/resources/svg/nib.svg +++ b/resources/svg/nib.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nickle.svg b/resources/svg/nickle.svg index 9f54cc9..ff3ac2c 100644 --- a/resources/svg/nickle.svg +++ b/resources/svg/nickle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nightwatch.svg b/resources/svg/nightwatch.svg index 504a666..2f8b06e 100644 --- a/resources/svg/nightwatch.svg +++ b/resources/svg/nightwatch.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nimble.svg b/resources/svg/nimble.svg index abf8bd1..2aa1ede 100644 --- a/resources/svg/nimble.svg +++ b/resources/svg/nimble.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nimrod.svg b/resources/svg/nimrod.svg index 654d1fc..634948f 100644 --- a/resources/svg/nimrod.svg +++ b/resources/svg/nimrod.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nintendo64.svg b/resources/svg/nintendo64.svg index 8335690..7becf9b 100644 --- a/resources/svg/nintendo64.svg +++ b/resources/svg/nintendo64.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nit.svg b/resources/svg/nit.svg index ed38d66..3962dd8 100644 --- a/resources/svg/nit.svg +++ b/resources/svg/nit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nix.svg b/resources/svg/nix.svg index 1c0071f..7904af0 100644 --- a/resources/svg/nix.svg +++ b/resources/svg/nix.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nmap.svg b/resources/svg/nmap.svg index a09a55a..8bc20af 100644 --- a/resources/svg/nmap.svg +++ b/resources/svg/nmap.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nodemon.svg b/resources/svg/nodemon.svg index 7fe2549..e76d177 100644 --- a/resources/svg/nodemon.svg +++ b/resources/svg/nodemon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nokogiri.svg b/resources/svg/nokogiri.svg index d6343ef..52a2565 100644 --- a/resources/svg/nokogiri.svg +++ b/resources/svg/nokogiri.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nomad.svg b/resources/svg/nomad.svg index 0ba6504..2b6521d 100644 --- a/resources/svg/nomad.svg +++ b/resources/svg/nomad.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/noon.svg b/resources/svg/noon.svg index 652c73e..03c6480 100644 --- a/resources/svg/noon.svg +++ b/resources/svg/noon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/normalise.svg b/resources/svg/normalise.svg index 833e599..1dc7617 100644 --- a/resources/svg/normalise.svg +++ b/resources/svg/normalise.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/npm-old.svg b/resources/svg/npm-old.svg index a3da4a6..b1a514f 100644 --- a/resources/svg/npm-old.svg +++ b/resources/svg/npm-old.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/npm.svg b/resources/svg/npm.svg index 22640a7..d5edc8e 100644 --- a/resources/svg/npm.svg +++ b/resources/svg/npm.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nsis-old.svg b/resources/svg/nsis-old.svg index efb2636..0346df3 100644 --- a/resources/svg/nsis-old.svg +++ b/resources/svg/nsis-old.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nsis.svg b/resources/svg/nsis.svg index acfac4f..3e76263 100644 --- a/resources/svg/nsis.svg +++ b/resources/svg/nsis.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nsri-alt.svg b/resources/svg/nsri-alt.svg index b80b8c3..ccb2924 100644 --- a/resources/svg/nsri-alt.svg +++ b/resources/svg/nsri-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nsri.svg b/resources/svg/nsri.svg index 245eb50..dd7a6d7 100644 --- a/resources/svg/nsri.svg +++ b/resources/svg/nsri.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nuclide.svg b/resources/svg/nuclide.svg index 5c2f841..8e19e20 100644 --- a/resources/svg/nuclide.svg +++ b/resources/svg/nuclide.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nuget.svg b/resources/svg/nuget.svg index c7ea90e..098495a 100644 --- a/resources/svg/nuget.svg +++ b/resources/svg/nuget.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/numpy-old.svg b/resources/svg/numpy-old.svg index 29c3c3d..0430f78 100644 --- a/resources/svg/numpy-old.svg +++ b/resources/svg/numpy-old.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/numpy.svg b/resources/svg/numpy.svg index 192b5e4..feacdff 100644 --- a/resources/svg/numpy.svg +++ b/resources/svg/numpy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nunjucks.svg b/resources/svg/nunjucks.svg index 742bb6b..ffbff61 100644 --- a/resources/svg/nunjucks.svg +++ b/resources/svg/nunjucks.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nuxt.svg b/resources/svg/nuxt.svg index 538e7aa..fa375a9 100644 --- a/resources/svg/nuxt.svg +++ b/resources/svg/nuxt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nvidia.svg b/resources/svg/nvidia.svg index 44db38c..c83fd2f 100644 --- a/resources/svg/nvidia.svg +++ b/resources/svg/nvidia.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nwscript.svg b/resources/svg/nwscript.svg index 6289123..41c8cda 100644 --- a/resources/svg/nwscript.svg +++ b/resources/svg/nwscript.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nx.svg b/resources/svg/nx.svg index 021d308..bdff94e 100644 --- a/resources/svg/nx.svg +++ b/resources/svg/nx.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/nxc.svg b/resources/svg/nxc.svg index 46e0321..f424ac4 100644 --- a/resources/svg/nxc.svg +++ b/resources/svg/nxc.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/oberon.svg b/resources/svg/oberon.svg index ccf0c0d..cc0533c 100644 --- a/resources/svg/oberon.svg +++ b/resources/svg/oberon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/objective-j.svg b/resources/svg/objective-j.svg index 222e11c..c42767c 100644 --- a/resources/svg/objective-j.svg +++ b/resources/svg/objective-j.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ocaml.svg b/resources/svg/ocaml.svg index 98d7a10..5c050b4 100644 --- a/resources/svg/ocaml.svg +++ b/resources/svg/ocaml.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/octave.svg b/resources/svg/octave.svg index 14dc59c..b44a62e 100644 --- a/resources/svg/octave.svg +++ b/resources/svg/octave.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/odin.svg b/resources/svg/odin.svg index 9718651..68462ed 100644 --- a/resources/svg/odin.svg +++ b/resources/svg/odin.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ogone.svg b/resources/svg/ogone.svg index 5e6f489..9a9368e 100644 --- a/resources/svg/ogone.svg +++ b/resources/svg/ogone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/omnigraffle.svg b/resources/svg/omnigraffle.svg index 0ea7a5d..be22eb7 100644 --- a/resources/svg/omnigraffle.svg +++ b/resources/svg/omnigraffle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ooc.svg b/resources/svg/ooc.svg index 800e3bd..78023de 100644 --- a/resources/svg/ooc.svg +++ b/resources/svg/ooc.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/opa.svg b/resources/svg/opa.svg index a1388c8..9db4bc9 100644 --- a/resources/svg/opa.svg +++ b/resources/svg/opa.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/openapi.svg b/resources/svg/openapi.svg index 52dcb70..5e519d9 100644 --- a/resources/svg/openapi.svg +++ b/resources/svg/openapi.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/openbsd-alt.svg b/resources/svg/openbsd-alt.svg index 5125bdb..4a1b532 100644 --- a/resources/svg/openbsd-alt.svg +++ b/resources/svg/openbsd-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/openbsd.svg b/resources/svg/openbsd.svg index 5ce8b18..4fcf20b 100644 --- a/resources/svg/openbsd.svg +++ b/resources/svg/openbsd.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/opencl.svg b/resources/svg/opencl.svg index c194d66..e7c5bbd 100644 --- a/resources/svg/opencl.svg +++ b/resources/svg/opencl.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/opencv.svg b/resources/svg/opencv.svg index ee97fdd..a7db23e 100644 --- a/resources/svg/opencv.svg +++ b/resources/svg/opencv.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/openexr.svg b/resources/svg/openexr.svg index bf2806b..0f7b0d1 100644 --- a/resources/svg/openexr.svg +++ b/resources/svg/openexr.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/opengl.svg b/resources/svg/opengl.svg index fb8c95d..ddb7650 100644 --- a/resources/svg/opengl.svg +++ b/resources/svg/opengl.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/openindiana.svg b/resources/svg/openindiana.svg index 7314d09..e912fca 100644 --- a/resources/svg/openindiana.svg +++ b/resources/svg/openindiana.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/openoffice.svg b/resources/svg/openoffice.svg index 468ae58..0980b18 100644 --- a/resources/svg/openoffice.svg +++ b/resources/svg/openoffice.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/openpolicyagent.svg b/resources/svg/openpolicyagent.svg index a80ce55..54cce7c 100644 --- a/resources/svg/openpolicyagent.svg +++ b/resources/svg/openpolicyagent.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/openscad.svg b/resources/svg/openscad.svg index e8c5ef4..43fdac8 100644 --- a/resources/svg/openscad.svg +++ b/resources/svg/openscad.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/opensolaris.svg b/resources/svg/opensolaris.svg index 66763f8..6258200 100644 --- a/resources/svg/opensolaris.svg +++ b/resources/svg/opensolaris.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/openstack.svg b/resources/svg/openstack.svg index cfa40ce..a8b5783 100644 --- a/resources/svg/openstack.svg +++ b/resources/svg/openstack.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/openvms.svg b/resources/svg/openvms.svg index e707810..2fbb0d4 100644 --- a/resources/svg/openvms.svg +++ b/resources/svg/openvms.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/openvpn.svg b/resources/svg/openvpn.svg index 91d0147..e24e69d 100644 --- a/resources/svg/openvpn.svg +++ b/resources/svg/openvpn.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/openzfs.svg b/resources/svg/openzfs.svg index 140e103..e538151 100644 --- a/resources/svg/openzfs.svg +++ b/resources/svg/openzfs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/org-mode.svg b/resources/svg/org-mode.svg index c523e88..5693776 100644 --- a/resources/svg/org-mode.svg +++ b/resources/svg/org-mode.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/os2.svg b/resources/svg/os2.svg index a0e4b5e..2a21669 100644 --- a/resources/svg/os2.svg +++ b/resources/svg/os2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/owl.svg b/resources/svg/owl.svg index fe4d078..6943281 100644 --- a/resources/svg/owl.svg +++ b/resources/svg/owl.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ox.svg b/resources/svg/ox.svg index 4336f51..7d9f0df 100644 --- a/resources/svg/ox.svg +++ b/resources/svg/ox.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/oxygene.svg b/resources/svg/oxygene.svg index 3be4058..d99d671 100644 --- a/resources/svg/oxygene.svg +++ b/resources/svg/oxygene.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/oz.svg b/resources/svg/oz.svg index cba5d8e..d5ac7ae 100644 --- a/resources/svg/oz.svg +++ b/resources/svg/oz.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/p4.svg b/resources/svg/p4.svg index ecfa24f..023532c 100644 --- a/resources/svg/p4.svg +++ b/resources/svg/p4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/pan.svg b/resources/svg/pan.svg index 3a5fd4a..8f95f4d 100644 --- a/resources/svg/pan.svg +++ b/resources/svg/pan.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/papyrus.svg b/resources/svg/papyrus.svg index 449b9db..7131442 100644 --- a/resources/svg/papyrus.svg +++ b/resources/svg/papyrus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/parrot.svg b/resources/svg/parrot.svg index 2ff447d..480e771 100644 --- a/resources/svg/parrot.svg +++ b/resources/svg/parrot.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/pascal.svg b/resources/svg/pascal.svg index 81cc872..e6376f3 100644 --- a/resources/svg/pascal.svg +++ b/resources/svg/pascal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/patch.svg b/resources/svg/patch.svg index 3065b19..7c59d98 100644 --- a/resources/svg/patch.svg +++ b/resources/svg/patch.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/patreon.svg b/resources/svg/patreon.svg index 6d57530..92420ae 100644 --- a/resources/svg/patreon.svg +++ b/resources/svg/patreon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/pawn.svg b/resources/svg/pawn.svg index afb76d6..c98d06e 100644 --- a/resources/svg/pawn.svg +++ b/resources/svg/pawn.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/pcd.svg b/resources/svg/pcd.svg index ee7cf8d..7845354 100644 --- a/resources/svg/pcd.svg +++ b/resources/svg/pcd.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/pegjs.svg b/resources/svg/pegjs.svg index 89b94e2..fea21f9 100644 --- a/resources/svg/pegjs.svg +++ b/resources/svg/pegjs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/perl6.svg b/resources/svg/perl6.svg index 0b44f8f..5fe7306 100644 --- a/resources/svg/perl6.svg +++ b/resources/svg/perl6.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/phalcon.svg b/resources/svg/phalcon.svg index 1e74e37..412fb44 100644 --- a/resources/svg/phalcon.svg +++ b/resources/svg/phalcon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/phoenix.svg b/resources/svg/phoenix.svg index 2f8ee04..a8c7370 100644 --- a/resources/svg/phoenix.svg +++ b/resources/svg/phoenix.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/photorec.svg b/resources/svg/photorec.svg index 23c01c9..611d1c0 100644 --- a/resources/svg/photorec.svg +++ b/resources/svg/photorec.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/php.svg b/resources/svg/php.svg index f40cb31..09c6449 100644 --- a/resources/svg/php.svg +++ b/resources/svg/php.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/phpunit.svg b/resources/svg/phpunit.svg index aa2caf7..e289c8a 100644 --- a/resources/svg/phpunit.svg +++ b/resources/svg/phpunit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/phraseapp.svg b/resources/svg/phraseapp.svg index 15f893b..14f739a 100644 --- a/resources/svg/phraseapp.svg +++ b/resources/svg/phraseapp.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/pickle.svg b/resources/svg/pickle.svg index 72e74e2..d2dad98 100644 --- a/resources/svg/pickle.svg +++ b/resources/svg/pickle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/pico-8.svg b/resources/svg/pico-8.svg index c273ced..7f4b9e0 100644 --- a/resources/svg/pico-8.svg +++ b/resources/svg/pico-8.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/picolisp.svg b/resources/svg/picolisp.svg index d7c95cc..9458667 100644 --- a/resources/svg/picolisp.svg +++ b/resources/svg/picolisp.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/pike.svg b/resources/svg/pike.svg index 95af9e7..aafe578 100644 --- a/resources/svg/pike.svg +++ b/resources/svg/pike.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/pinescript.svg b/resources/svg/pinescript.svg index d41a173..cde0dc8 100644 --- a/resources/svg/pinescript.svg +++ b/resources/svg/pinescript.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/pipenv.svg b/resources/svg/pipenv.svg index e068d78..e7eca73 100644 --- a/resources/svg/pipenv.svg +++ b/resources/svg/pipenv.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/pkgsrc.svg b/resources/svg/pkgsrc.svg index 30c3757..94e5378 100644 --- a/resources/svg/pkgsrc.svg +++ b/resources/svg/pkgsrc.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/platformio.svg b/resources/svg/platformio.svg index eb00ec9..f5756d0 100644 --- a/resources/svg/platformio.svg +++ b/resources/svg/platformio.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/pm2.svg b/resources/svg/pm2.svg index df624da..bc10480 100644 --- a/resources/svg/pm2.svg +++ b/resources/svg/pm2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/pnpm.svg b/resources/svg/pnpm.svg index 5f81840..2c5318a 100644 --- a/resources/svg/pnpm.svg +++ b/resources/svg/pnpm.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/pod.svg b/resources/svg/pod.svg index 32e0ead..17608d9 100644 --- a/resources/svg/pod.svg +++ b/resources/svg/pod.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/pogoscript.svg b/resources/svg/pogoscript.svg index 8033ba5..2d7a280 100644 --- a/resources/svg/pogoscript.svg +++ b/resources/svg/pogoscript.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/pointwise.svg b/resources/svg/pointwise.svg index b466a64..31cba6d 100644 --- a/resources/svg/pointwise.svg +++ b/resources/svg/pointwise.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/polymer.svg b/resources/svg/polymer.svg index cca841f..5891edf 100644 --- a/resources/svg/polymer.svg +++ b/resources/svg/polymer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/pony.svg b/resources/svg/pony.svg index 7dc8151..b66abfe 100644 --- a/resources/svg/pony.svg +++ b/resources/svg/pony.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/postcss.svg b/resources/svg/postcss.svg index 16c775f..3ae9f9b 100644 --- a/resources/svg/postcss.svg +++ b/resources/svg/postcss.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/postscript.svg b/resources/svg/postscript.svg index e3297a1..430633f 100644 --- a/resources/svg/postscript.svg +++ b/resources/svg/postscript.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/pov-ray.svg b/resources/svg/pov-ray.svg index cdf5bbc..ad4b8fa 100644 --- a/resources/svg/pov-ray.svg +++ b/resources/svg/pov-ray.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/powerbuilder.svg b/resources/svg/powerbuilder.svg index 7e473cd..b8390d5 100644 --- a/resources/svg/powerbuilder.svg +++ b/resources/svg/powerbuilder.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/powerpc.svg b/resources/svg/powerpc.svg index 6c0afea..ea753e6 100644 --- a/resources/svg/powerpc.svg +++ b/resources/svg/powerpc.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/powershell.svg b/resources/svg/powershell.svg index fb87acb..263eb6f 100644 --- a/resources/svg/powershell.svg +++ b/resources/svg/powershell.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/precision.svg b/resources/svg/precision.svg index 4774bac..81a7f4f 100644 --- a/resources/svg/precision.svg +++ b/resources/svg/precision.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/precommit.svg b/resources/svg/precommit.svg index b6d3d34..2afcc37 100644 --- a/resources/svg/precommit.svg +++ b/resources/svg/precommit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/prettier.svg b/resources/svg/prettier.svg index 187fbb4..3ac2bba 100644 --- a/resources/svg/prettier.svg +++ b/resources/svg/prettier.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/prisma.svg b/resources/svg/prisma.svg index 0a71b60..977b902 100644 --- a/resources/svg/prisma.svg +++ b/resources/svg/prisma.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/processing.svg b/resources/svg/processing.svg index ceca83a..034c1ed 100644 --- a/resources/svg/processing.svg +++ b/resources/svg/processing.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/progress-old.svg b/resources/svg/progress-old.svg index 197213b..6eb174d 100644 --- a/resources/svg/progress-old.svg +++ b/resources/svg/progress-old.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/progress.svg b/resources/svg/progress.svg index b67bf2f..137a895 100644 --- a/resources/svg/progress.svg +++ b/resources/svg/progress.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/propeller.svg b/resources/svg/propeller.svg index 77ba535..ea7a2ea 100644 --- a/resources/svg/propeller.svg +++ b/resources/svg/propeller.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/pros.svg b/resources/svg/pros.svg index 22d70ad..474754f 100644 --- a/resources/svg/pros.svg +++ b/resources/svg/pros.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/proselint.svg b/resources/svg/proselint.svg index 6f1bc34..95d3ad1 100644 --- a/resources/svg/proselint.svg +++ b/resources/svg/proselint.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/protractor.svg b/resources/svg/protractor.svg index 6924ce9..0c9e059 100644 --- a/resources/svg/protractor.svg +++ b/resources/svg/protractor.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/pug-old.svg b/resources/svg/pug-old.svg index d8096e9..4c6c6bd 100644 --- a/resources/svg/pug-old.svg +++ b/resources/svg/pug-old.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/pug.svg b/resources/svg/pug.svg index ec18cb2..6674929 100644 --- a/resources/svg/pug.svg +++ b/resources/svg/pug.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/pullapprove.svg b/resources/svg/pullapprove.svg index 4843f19..8f39357 100644 --- a/resources/svg/pullapprove.svg +++ b/resources/svg/pullapprove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/puppet.svg b/resources/svg/puppet.svg index d7f568b..a187761 100644 --- a/resources/svg/puppet.svg +++ b/resources/svg/puppet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/pure.svg b/resources/svg/pure.svg index f0a1ec6..4aeaac3 100644 --- a/resources/svg/pure.svg +++ b/resources/svg/pure.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/purebasic.svg b/resources/svg/purebasic.svg index 5c1c83d..9ffce11 100644 --- a/resources/svg/purebasic.svg +++ b/resources/svg/purebasic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/purescript.svg b/resources/svg/purescript.svg index 2554670..e0ddb9a 100644 --- a/resources/svg/purescript.svg +++ b/resources/svg/purescript.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/pypi.svg b/resources/svg/pypi.svg index 7652e36..9d6c54c 100644 --- a/resources/svg/pypi.svg +++ b/resources/svg/pypi.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/pyret.svg b/resources/svg/pyret.svg index d5ca0e2..a6fe7d1 100644 --- a/resources/svg/pyret.svg +++ b/resources/svg/pyret.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/pytest.svg b/resources/svg/pytest.svg index 00119a9..83d8fc7 100644 --- a/resources/svg/pytest.svg +++ b/resources/svg/pytest.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/pyup.svg b/resources/svg/pyup.svg index f98f494..6bbc4f8 100644 --- a/resources/svg/pyup.svg +++ b/resources/svg/pyup.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/q.svg b/resources/svg/q.svg index d14fe24..4c6e923 100644 --- a/resources/svg/q.svg +++ b/resources/svg/q.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/qiskit.svg b/resources/svg/qiskit.svg index 4bc1b8f..9635e8b 100644 --- a/resources/svg/qiskit.svg +++ b/resources/svg/qiskit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/qlikview.svg b/resources/svg/qlikview.svg index dbd3720..5dac5a0 100644 --- a/resources/svg/qlikview.svg +++ b/resources/svg/qlikview.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/qt.svg b/resources/svg/qt.svg index 481280c..65cfd5d 100644 --- a/resources/svg/qt.svg +++ b/resources/svg/qt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/quasar.svg b/resources/svg/quasar.svg index 33b7763..4042237 100644 --- a/resources/svg/quasar.svg +++ b/resources/svg/quasar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/r.svg b/resources/svg/r.svg index 37f6b37..cd5b748 100644 --- a/resources/svg/r.svg +++ b/resources/svg/r.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/racket.svg b/resources/svg/racket.svg index 1b1b34b..d23d4b7 100644 --- a/resources/svg/racket.svg +++ b/resources/svg/racket.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/raml.svg b/resources/svg/raml.svg index 3f61a20..39524a2 100644 --- a/resources/svg/raml.svg +++ b/resources/svg/raml.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/rascal.svg b/resources/svg/rascal.svg index 44e6999..434d63f 100644 --- a/resources/svg/rascal.svg +++ b/resources/svg/rascal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/razzle.svg b/resources/svg/razzle.svg index 97be982..8fe4a08 100644 --- a/resources/svg/razzle.svg +++ b/resources/svg/razzle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/rdata.svg b/resources/svg/rdata.svg index e5ceabd..15d846f 100644 --- a/resources/svg/rdata.svg +++ b/resources/svg/rdata.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/rdoc.svg b/resources/svg/rdoc.svg index 7302c52..0680c9d 100644 --- a/resources/svg/rdoc.svg +++ b/resources/svg/rdoc.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/reactos.svg b/resources/svg/reactos.svg index 4ad8c29..c3a3cda 100644 --- a/resources/svg/reactos.svg +++ b/resources/svg/reactos.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/readthedocs.svg b/resources/svg/readthedocs.svg index 957bbe2..2622aa6 100644 --- a/resources/svg/readthedocs.svg +++ b/resources/svg/readthedocs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/realbasic.svg b/resources/svg/realbasic.svg index 61665bf..bd026b7 100644 --- a/resources/svg/realbasic.svg +++ b/resources/svg/realbasic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/reason.svg b/resources/svg/reason.svg index c4ae100..1e1d60e 100644 --- a/resources/svg/reason.svg +++ b/resources/svg/reason.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/reasonstudios-alt.svg b/resources/svg/reasonstudios-alt.svg index 372eb6c..7b92669 100644 --- a/resources/svg/reasonstudios-alt.svg +++ b/resources/svg/reasonstudios-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/reasonstudios.svg b/resources/svg/reasonstudios.svg index 89c84ee..82aa8db 100644 --- a/resources/svg/reasonstudios.svg +++ b/resources/svg/reasonstudios.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/rebol.svg b/resources/svg/rebol.svg index fdd0734..08c8f1e 100644 --- a/resources/svg/rebol.svg +++ b/resources/svg/rebol.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/red-old.svg b/resources/svg/red-old.svg index a741ee9..d908df1 100644 --- a/resources/svg/red-old.svg +++ b/resources/svg/red-old.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/red.svg b/resources/svg/red.svg index b7c8b9f..f49de52 100644 --- a/resources/svg/red.svg +++ b/resources/svg/red.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/redux.svg b/resources/svg/redux.svg index c571402..43d97a8 100644 --- a/resources/svg/redux.svg +++ b/resources/svg/redux.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/reek.svg b/resources/svg/reek.svg index cdbd70e..e13fd4e 100644 --- a/resources/svg/reek.svg +++ b/resources/svg/reek.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/regex.svg b/resources/svg/regex.svg index aff01d2..162ce5b 100644 --- a/resources/svg/regex.svg +++ b/resources/svg/regex.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/remark.svg b/resources/svg/remark.svg index 19b6068..27bb0df 100644 --- a/resources/svg/remark.svg +++ b/resources/svg/remark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/renovate.svg b/resources/svg/renovate.svg index b90ab35..ed2c63b 100644 --- a/resources/svg/renovate.svg +++ b/resources/svg/renovate.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/rescript.svg b/resources/svg/rescript.svg index a2d7b2c..6b0a1a9 100644 --- a/resources/svg/rescript.svg +++ b/resources/svg/rescript.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/restql.svg b/resources/svg/restql.svg index 8f05075..60f4d94 100644 --- a/resources/svg/restql.svg +++ b/resources/svg/restql.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/restructuredtext.svg b/resources/svg/restructuredtext.svg index e340f44..0a56d52 100644 --- a/resources/svg/restructuredtext.svg +++ b/resources/svg/restructuredtext.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/rexx.svg b/resources/svg/rexx.svg index 73ea021..49c608c 100644 --- a/resources/svg/rexx.svg +++ b/resources/svg/rexx.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/rhino3d.svg b/resources/svg/rhino3d.svg index c659fef..577b8a9 100644 --- a/resources/svg/rhino3d.svg +++ b/resources/svg/rhino3d.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ring.svg b/resources/svg/ring.svg index feb3911..77b368d 100644 --- a/resources/svg/ring.svg +++ b/resources/svg/ring.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/riot-old.svg b/resources/svg/riot-old.svg index 4e03370..4134df1 100644 --- a/resources/svg/riot-old.svg +++ b/resources/svg/riot-old.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/riot.svg b/resources/svg/riot.svg index 7c1efa3..1faf47c 100644 --- a/resources/svg/riot.svg +++ b/resources/svg/riot.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/risc-v.svg b/resources/svg/risc-v.svg index eb53cfd..e2dc667 100644 --- a/resources/svg/risc-v.svg +++ b/resources/svg/risc-v.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/rmarkdown.svg b/resources/svg/rmarkdown.svg index 7033003..383b8dd 100644 --- a/resources/svg/rmarkdown.svg +++ b/resources/svg/rmarkdown.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/robotframework-old.svg b/resources/svg/robotframework-old.svg index 68ea7d1..ea3778a 100644 --- a/resources/svg/robotframework-old.svg +++ b/resources/svg/robotframework-old.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/robotframework.svg b/resources/svg/robotframework.svg index 154a77b..fd69530 100644 --- a/resources/svg/robotframework.svg +++ b/resources/svg/robotframework.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/robots.svg b/resources/svg/robots.svg index 2571a85..765adb4 100644 --- a/resources/svg/robots.svg +++ b/resources/svg/robots.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/rollup-old.svg b/resources/svg/rollup-old.svg index 82be471..bd11a5e 100644 --- a/resources/svg/rollup-old.svg +++ b/resources/svg/rollup-old.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/rollup.svg b/resources/svg/rollup.svg index 35ab469..95566d7 100644 --- a/resources/svg/rollup.svg +++ b/resources/svg/rollup.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/rspec.svg b/resources/svg/rspec.svg index ca41d71..025593d 100644 --- a/resources/svg/rspec.svg +++ b/resources/svg/rspec.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/rstudio.svg b/resources/svg/rstudio.svg index 0b0b155..d8fb253 100644 --- a/resources/svg/rstudio.svg +++ b/resources/svg/rstudio.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/rsync.svg b/resources/svg/rsync.svg index 0bf340a..bdf96b2 100644 --- a/resources/svg/rsync.svg +++ b/resources/svg/rsync.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/rubocop.svg b/resources/svg/rubocop.svg index cfa201b..2841f51 100644 --- a/resources/svg/rubocop.svg +++ b/resources/svg/rubocop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/rubygems.svg b/resources/svg/rubygems.svg index 805fee8..f944f86 100644 --- a/resources/svg/rubygems.svg +++ b/resources/svg/rubygems.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/sac.svg b/resources/svg/sac.svg index 7f28ae0..c5e32fa 100644 --- a/resources/svg/sac.svg +++ b/resources/svg/sac.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/sage.svg b/resources/svg/sage.svg index b80eae4..e044f4d 100644 --- a/resources/svg/sage.svg +++ b/resources/svg/sage.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/sails.svg b/resources/svg/sails.svg index e9c296f..3c624fc 100644 --- a/resources/svg/sails.svg +++ b/resources/svg/sails.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/saltstack.svg b/resources/svg/saltstack.svg index 199595a..2709499 100644 --- a/resources/svg/saltstack.svg +++ b/resources/svg/saltstack.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/san.svg b/resources/svg/san.svg index 4053098..592b7eb 100644 --- a/resources/svg/san.svg +++ b/resources/svg/san.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/sandbox.svg b/resources/svg/sandbox.svg index 3d16937..7fb0f7c 100644 --- a/resources/svg/sandbox.svg +++ b/resources/svg/sandbox.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/sas.svg b/resources/svg/sas.svg index 4a18070..daae6e6 100644 --- a/resources/svg/sas.svg +++ b/resources/svg/sas.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/sbt.svg b/resources/svg/sbt.svg index 77d6e13..c2d5e03 100644 --- a/resources/svg/sbt.svg +++ b/resources/svg/sbt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/scheme.svg b/resources/svg/scheme.svg index 86dd6e1..e66ef49 100644 --- a/resources/svg/scheme.svg +++ b/resources/svg/scheme.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/scilab.svg b/resources/svg/scilab.svg index 8ca3997..3d41959 100644 --- a/resources/svg/scilab.svg +++ b/resources/svg/scilab.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/scilla.svg b/resources/svg/scilla.svg index c0c0380..ada3fde 100644 --- a/resources/svg/scilla.svg +++ b/resources/svg/scilla.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/scratch.svg b/resources/svg/scratch.svg index fd85b86..04e8cfa 100644 --- a/resources/svg/scratch.svg +++ b/resources/svg/scratch.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/scrutinizer.svg b/resources/svg/scrutinizer.svg index e8f2318..21c37bf 100644 --- a/resources/svg/scrutinizer.svg +++ b/resources/svg/scrutinizer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/self.svg b/resources/svg/self.svg index faf0246..9c54ad7 100644 --- a/resources/svg/self.svg +++ b/resources/svg/self.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/semanticrelease.svg b/resources/svg/semanticrelease.svg index 3f4a689..4dde9c1 100644 --- a/resources/svg/semanticrelease.svg +++ b/resources/svg/semanticrelease.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/sentry.svg b/resources/svg/sentry.svg index 982d75a..68d4a15 100644 --- a/resources/svg/sentry.svg +++ b/resources/svg/sentry.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/sequelize.svg b/resources/svg/sequelize.svg index c618ad3..e4bb3c7 100644 --- a/resources/svg/sequelize.svg +++ b/resources/svg/sequelize.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/serverless.svg b/resources/svg/serverless.svg index ec0c141..d519a3f 100644 --- a/resources/svg/serverless.svg +++ b/resources/svg/serverless.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/service-fabric.svg b/resources/svg/service-fabric.svg index 92742ed..6ce5b73 100644 --- a/resources/svg/service-fabric.svg +++ b/resources/svg/service-fabric.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/shadowcljs.svg b/resources/svg/shadowcljs.svg index f2c32cd..c45b911 100644 --- a/resources/svg/shadowcljs.svg +++ b/resources/svg/shadowcljs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/shellcheck.svg b/resources/svg/shellcheck.svg index ef816ba..993351d 100644 --- a/resources/svg/shellcheck.svg +++ b/resources/svg/shellcheck.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/shen.svg b/resources/svg/shen.svg index 11e75f6..66c1dd7 100644 --- a/resources/svg/shen.svg +++ b/resources/svg/shen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/shipit.svg b/resources/svg/shipit.svg index dca9e80..cd67575 100644 --- a/resources/svg/shipit.svg +++ b/resources/svg/shipit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/shippable.svg b/resources/svg/shippable.svg index 9302efd..b07f6f9 100644 --- a/resources/svg/shippable.svg +++ b/resources/svg/shippable.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/shopify.svg b/resources/svg/shopify.svg index 8d272a5..015a797 100644 --- a/resources/svg/shopify.svg +++ b/resources/svg/shopify.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/shuriken.svg b/resources/svg/shuriken.svg index b6d20ed..02f8d2c 100644 --- a/resources/svg/shuriken.svg +++ b/resources/svg/shuriken.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/sigils.svg b/resources/svg/sigils.svg index e579903..7af6bcb 100644 --- a/resources/svg/sigils.svg +++ b/resources/svg/sigils.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/silicongraphics.svg b/resources/svg/silicongraphics.svg index d4d03d8..f795ac2 100644 --- a/resources/svg/silicongraphics.svg +++ b/resources/svg/silicongraphics.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/silverstripe.svg b/resources/svg/silverstripe.svg index 819bed8..ab242eb 100644 --- a/resources/svg/silverstripe.svg +++ b/resources/svg/silverstripe.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/sinatra.svg b/resources/svg/sinatra.svg index cd9cd34..d40b5d3 100644 --- a/resources/svg/sinatra.svg +++ b/resources/svg/sinatra.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/sketch.svg b/resources/svg/sketch.svg index 7be0b9d..6e8bcf1 100644 --- a/resources/svg/sketch.svg +++ b/resources/svg/sketch.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/sketchup-layout.svg b/resources/svg/sketchup-layout.svg index ac53d3b..7a708ba 100644 --- a/resources/svg/sketchup-layout.svg +++ b/resources/svg/sketchup-layout.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/sketchup-make.svg b/resources/svg/sketchup-make.svg index a9ee2e9..9b38e4b 100644 --- a/resources/svg/sketchup-make.svg +++ b/resources/svg/sketchup-make.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/sketchup-stylebuilder.svg b/resources/svg/sketchup-stylebuilder.svg index 4281760..87265e8 100644 --- a/resources/svg/sketchup-stylebuilder.svg +++ b/resources/svg/sketchup-stylebuilder.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/slash.svg b/resources/svg/slash.svg index 40a3b35..ede4933 100644 --- a/resources/svg/slash.svg +++ b/resources/svg/slash.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/smartos-alt.svg b/resources/svg/smartos-alt.svg index d357852..d9886a1 100644 --- a/resources/svg/smartos-alt.svg +++ b/resources/svg/smartos-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/smartos.svg b/resources/svg/smartos.svg index 743ac06..a8b3fdf 100644 --- a/resources/svg/smartos.svg +++ b/resources/svg/smartos.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/snapcraft.svg b/resources/svg/snapcraft.svg index e19ee6c..9964bc6 100644 --- a/resources/svg/snapcraft.svg +++ b/resources/svg/snapcraft.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/snort.svg b/resources/svg/snort.svg index 53fcb6f..a4932c1 100644 --- a/resources/svg/snort.svg +++ b/resources/svg/snort.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/snowpack.svg b/resources/svg/snowpack.svg index e54c9cf..5d93eb4 100644 --- a/resources/svg/snowpack.svg +++ b/resources/svg/snowpack.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/snyk.svg b/resources/svg/snyk.svg index ca0eaee..cab9256 100644 --- a/resources/svg/snyk.svg +++ b/resources/svg/snyk.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/solidarity.svg b/resources/svg/solidarity.svg index e1ed669..6c36806 100644 --- a/resources/svg/solidarity.svg +++ b/resources/svg/solidarity.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/solidity.svg b/resources/svg/solidity.svg index f78d0bf..f46a6b6 100644 --- a/resources/svg/solidity.svg +++ b/resources/svg/solidity.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/sophia.svg b/resources/svg/sophia.svg index 7a44e00..1060a20 100644 --- a/resources/svg/sophia.svg +++ b/resources/svg/sophia.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/sorbet.svg b/resources/svg/sorbet.svg index 6f98983..67f18e1 100644 --- a/resources/svg/sorbet.svg +++ b/resources/svg/sorbet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/source.svg b/resources/svg/source.svg index e14a72b..46dfca9 100644 --- a/resources/svg/source.svg +++ b/resources/svg/source.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/spacemacs.svg b/resources/svg/spacemacs.svg index b4b1a39..5961fdb 100644 --- a/resources/svg/spacemacs.svg +++ b/resources/svg/spacemacs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/spacengine.svg b/resources/svg/spacengine.svg index 80c65d7..96a97bb 100644 --- a/resources/svg/spacengine.svg +++ b/resources/svg/spacengine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/sparc.svg b/resources/svg/sparc.svg index 4992ca2..69425fe 100644 --- a/resources/svg/sparc.svg +++ b/resources/svg/sparc.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/spray.svg b/resources/svg/spray.svg index fc07114..78daca8 100644 --- a/resources/svg/spray.svg +++ b/resources/svg/spray.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/sqf.svg b/resources/svg/sqf.svg index bd8eacc..086d18a 100644 --- a/resources/svg/sqf.svg +++ b/resources/svg/sqf.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/sqlite.svg b/resources/svg/sqlite.svg index 2221837..37338cc 100644 --- a/resources/svg/sqlite.svg +++ b/resources/svg/sqlite.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/squarespace.svg b/resources/svg/squarespace.svg index 9a85ac5..3d35397 100644 --- a/resources/svg/squarespace.svg +++ b/resources/svg/squarespace.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/stan.svg b/resources/svg/stan.svg index 162089d..81e63ea 100644 --- a/resources/svg/stan.svg +++ b/resources/svg/stan.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/stata.svg b/resources/svg/stata.svg index 23399f9..598af59 100644 --- a/resources/svg/stata.svg +++ b/resources/svg/stata.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/stdlibjs.svg b/resources/svg/stdlibjs.svg index 6f73d00..10dabfb 100644 --- a/resources/svg/stdlibjs.svg +++ b/resources/svg/stdlibjs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/stencil.svg b/resources/svg/stencil.svg index f010d4c..211563e 100644 --- a/resources/svg/stencil.svg +++ b/resources/svg/stencil.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/stitches.svg b/resources/svg/stitches.svg index b8c03b3..9e92fa8 100644 --- a/resources/svg/stitches.svg +++ b/resources/svg/stitches.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/storybook.svg b/resources/svg/storybook.svg index 2872003..ab7099c 100644 --- a/resources/svg/storybook.svg +++ b/resources/svg/storybook.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/storyist.svg b/resources/svg/storyist.svg index fe1daec..8eb84fb 100644 --- a/resources/svg/storyist.svg +++ b/resources/svg/storyist.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/strings.svg b/resources/svg/strings.svg index c077370..3234261 100644 --- a/resources/svg/strings.svg +++ b/resources/svg/strings.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/stylable.svg b/resources/svg/stylable.svg index fceeff4..42dcc02 100644 --- a/resources/svg/stylable.svg +++ b/resources/svg/stylable.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/styledcomponents.svg b/resources/svg/styledcomponents.svg index 22f2d8f..f89ab6e 100644 --- a/resources/svg/styledcomponents.svg +++ b/resources/svg/styledcomponents.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/stylelint.svg b/resources/svg/stylelint.svg index fb839ef..0626e96 100644 --- a/resources/svg/stylelint.svg +++ b/resources/svg/stylelint.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/stylishhaskell.svg b/resources/svg/stylishhaskell.svg index 9ee5c8d..22852e2 100644 --- a/resources/svg/stylishhaskell.svg +++ b/resources/svg/stylishhaskell.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/stylus-orb.svg b/resources/svg/stylus-orb.svg index c1e5815..d25cc8e 100644 --- a/resources/svg/stylus-orb.svg +++ b/resources/svg/stylus-orb.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/stylus-s.svg b/resources/svg/stylus-s.svg index a78b562..8f959c7 100644 --- a/resources/svg/stylus-s.svg +++ b/resources/svg/stylus-s.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/stylus.svg b/resources/svg/stylus.svg index e9a2727..fce83c3 100644 --- a/resources/svg/stylus.svg +++ b/resources/svg/stylus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/sublime.svg b/resources/svg/sublime.svg index 8703370..1ba8e2f 100644 --- a/resources/svg/sublime.svg +++ b/resources/svg/sublime.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/supercollider.svg b/resources/svg/supercollider.svg index ee8d046..ed252d4 100644 --- a/resources/svg/supercollider.svg +++ b/resources/svg/supercollider.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/svelte.svg b/resources/svg/svelte.svg index ae6662c..de606fd 100644 --- a/resources/svg/svelte.svg +++ b/resources/svg/svelte.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/svn.svg b/resources/svg/svn.svg index 644e96f..1a05a6d 100644 --- a/resources/svg/svn.svg +++ b/resources/svg/svn.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/swagger.svg b/resources/svg/swagger.svg index 4976cd7..6fbb040 100644 --- a/resources/svg/swagger.svg +++ b/resources/svg/swagger.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/systemverilog.svg b/resources/svg/systemverilog.svg index cae7480..3229fd3 100644 --- a/resources/svg/systemverilog.svg +++ b/resources/svg/systemverilog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/tag.svg b/resources/svg/tag.svg index f9a8286..1af328c 100644 --- a/resources/svg/tag.svg +++ b/resources/svg/tag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/tailwind.svg b/resources/svg/tailwind.svg index f871371..bc2e6a8 100644 --- a/resources/svg/tailwind.svg +++ b/resources/svg/tailwind.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/tcl.svg b/resources/svg/tcl.svg index d320424..3c758b1 100644 --- a/resources/svg/tcl.svg +++ b/resources/svg/tcl.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/telegram.svg b/resources/svg/telegram.svg index 20e75aa..5d799ab 100644 --- a/resources/svg/telegram.svg +++ b/resources/svg/telegram.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/templatetoolkit.svg b/resources/svg/templatetoolkit.svg index 7847e10..a4f5b3c 100644 --- a/resources/svg/templatetoolkit.svg +++ b/resources/svg/templatetoolkit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/templeos.svg b/resources/svg/templeos.svg index dd498f0..4c78528 100644 --- a/resources/svg/templeos.svg +++ b/resources/svg/templeos.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/terminal.svg b/resources/svg/terminal.svg index acf36f4..9b5bed7 100644 --- a/resources/svg/terminal.svg +++ b/resources/svg/terminal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/tern.svg b/resources/svg/tern.svg index 80177d0..8c3c38a 100644 --- a/resources/svg/tern.svg +++ b/resources/svg/tern.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/terraform.svg b/resources/svg/terraform.svg index 7c290c8..472e338 100644 --- a/resources/svg/terraform.svg +++ b/resources/svg/terraform.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/terser.svg b/resources/svg/terser.svg index 866b3f2..1fd64dd 100644 --- a/resources/svg/terser.svg +++ b/resources/svg/terser.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/test-coffeescript.svg b/resources/svg/test-coffeescript.svg index 009b273..b84f9f7 100644 --- a/resources/svg/test-coffeescript.svg +++ b/resources/svg/test-coffeescript.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/test-directory.svg b/resources/svg/test-directory.svg index da4c93c..f96f4c7 100644 --- a/resources/svg/test-directory.svg +++ b/resources/svg/test-directory.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/test-generic.svg b/resources/svg/test-generic.svg index eccc39c..d6f4af5 100644 --- a/resources/svg/test-generic.svg +++ b/resources/svg/test-generic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/test-go.svg b/resources/svg/test-go.svg index fcce8ee..8e2f547 100644 --- a/resources/svg/test-go.svg +++ b/resources/svg/test-go.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/test-haskell.svg b/resources/svg/test-haskell.svg index 1222a4a..b4110bb 100644 --- a/resources/svg/test-haskell.svg +++ b/resources/svg/test-haskell.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/test-js.svg b/resources/svg/test-js.svg index 023492d..27879b7 100644 --- a/resources/svg/test-js.svg +++ b/resources/svg/test-js.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/test-perl.svg b/resources/svg/test-perl.svg index cd4541e..4825afe 100644 --- a/resources/svg/test-perl.svg +++ b/resources/svg/test-perl.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/test-python.svg b/resources/svg/test-python.svg index 3b33a63..db91e96 100644 --- a/resources/svg/test-python.svg +++ b/resources/svg/test-python.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/test-react.svg b/resources/svg/test-react.svg index d68855e..808c262 100644 --- a/resources/svg/test-react.svg +++ b/resources/svg/test-react.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/test-ruby.svg b/resources/svg/test-ruby.svg index 9711ec8..77a47c4 100644 --- a/resources/svg/test-ruby.svg +++ b/resources/svg/test-ruby.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/test-rust.svg b/resources/svg/test-rust.svg index 44c70e3..b0ae1c2 100644 --- a/resources/svg/test-rust.svg +++ b/resources/svg/test-rust.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/test-typescript.svg b/resources/svg/test-typescript.svg index b360ce8..59a5877 100644 --- a/resources/svg/test-typescript.svg +++ b/resources/svg/test-typescript.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/testcafe.svg b/resources/svg/testcafe.svg index cd0918d..284c67e 100644 --- a/resources/svg/testcafe.svg +++ b/resources/svg/testcafe.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/textile.svg b/resources/svg/textile.svg index 6a1a3df..e0f90ac 100644 --- a/resources/svg/textile.svg +++ b/resources/svg/textile.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/textmate.svg b/resources/svg/textmate.svg index eea1a25..9fdb122 100644 --- a/resources/svg/textmate.svg +++ b/resources/svg/textmate.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/tfs.svg b/resources/svg/tfs.svg index d954f9a..b7d1900 100644 --- a/resources/svg/tfs.svg +++ b/resources/svg/tfs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/thor.svg b/resources/svg/thor.svg index 0e1ad7f..fc475d7 100644 --- a/resources/svg/thor.svg +++ b/resources/svg/thor.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/tilt.svg b/resources/svg/tilt.svg index 0d558e6..cc6015b 100644 --- a/resources/svg/tilt.svg +++ b/resources/svg/tilt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/tinymce.svg b/resources/svg/tinymce.svg index d9343e7..c12ffb0 100644 --- a/resources/svg/tinymce.svg +++ b/resources/svg/tinymce.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/tipe.svg b/resources/svg/tipe.svg index 6e0b553..3cccf6b 100644 --- a/resources/svg/tipe.svg +++ b/resources/svg/tipe.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/tla.svg b/resources/svg/tla.svg index 6eb9a4a..dca4887 100644 --- a/resources/svg/tla.svg +++ b/resources/svg/tla.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/tmux.svg b/resources/svg/tmux.svg index fa3dd50..6a18cee 100644 --- a/resources/svg/tmux.svg +++ b/resources/svg/tmux.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/toml.svg b/resources/svg/toml.svg index 52eb83c..cfc54ce 100644 --- a/resources/svg/toml.svg +++ b/resources/svg/toml.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/tortoisesvn.svg b/resources/svg/tortoisesvn.svg index f803c25..6598ede 100644 --- a/resources/svg/tortoisesvn.svg +++ b/resources/svg/tortoisesvn.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/totvs.svg b/resources/svg/totvs.svg index 2d1131b..1d671d6 100644 --- a/resources/svg/totvs.svg +++ b/resources/svg/totvs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/truffle.svg b/resources/svg/truffle.svg index 22fe789..1939374 100644 --- a/resources/svg/truffle.svg +++ b/resources/svg/truffle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/tsx-alt.svg b/resources/svg/tsx-alt.svg index 95c9831..c1efc24 100644 --- a/resources/svg/tsx-alt.svg +++ b/resources/svg/tsx-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/tsx.svg b/resources/svg/tsx.svg index e2fecb6..97d2ac5 100644 --- a/resources/svg/tsx.svg +++ b/resources/svg/tsx.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ttcn-3.svg b/resources/svg/ttcn-3.svg index 51889b6..c0accde 100644 --- a/resources/svg/ttcn-3.svg +++ b/resources/svg/ttcn-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/turing.svg b/resources/svg/turing.svg index 831836c..ada8580 100644 --- a/resources/svg/turing.svg +++ b/resources/svg/turing.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/twig.svg b/resources/svg/twig.svg index f6abd4a..1f5ec5f 100644 --- a/resources/svg/twig.svg +++ b/resources/svg/twig.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/twine.svg b/resources/svg/twine.svg index 555408f..ccfc3f3 100644 --- a/resources/svg/twine.svg +++ b/resources/svg/twine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/txl.svg b/resources/svg/txl.svg index 1dbb514..d57b51a 100644 --- a/resources/svg/txl.svg +++ b/resources/svg/txl.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/typedoc.svg b/resources/svg/typedoc.svg index ccf5a10..68ce778 100644 --- a/resources/svg/typedoc.svg +++ b/resources/svg/typedoc.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/typescript-alt.svg b/resources/svg/typescript-alt.svg index f91a910..664bb7b 100644 --- a/resources/svg/typescript-alt.svg +++ b/resources/svg/typescript-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/typescript.svg b/resources/svg/typescript.svg index dfd7505..8259000 100644 --- a/resources/svg/typescript.svg +++ b/resources/svg/typescript.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/typings.svg b/resources/svg/typings.svg index e46b37d..0df181d 100644 --- a/resources/svg/typings.svg +++ b/resources/svg/typings.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/ufo.svg b/resources/svg/ufo.svg index cfb39b0..3bb6b4e 100644 --- a/resources/svg/ufo.svg +++ b/resources/svg/ufo.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/unibeautify.svg b/resources/svg/unibeautify.svg index 4c86965..60b1ab9 100644 --- a/resources/svg/unibeautify.svg +++ b/resources/svg/unibeautify.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/unicode.svg b/resources/svg/unicode.svg index 7074579..889f77e 100644 --- a/resources/svg/unicode.svg +++ b/resources/svg/unicode.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/uno.svg b/resources/svg/uno.svg index 1c50241..0b8cdf9 100644 --- a/resources/svg/uno.svg +++ b/resources/svg/uno.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/unrealscript.svg b/resources/svg/unrealscript.svg index 6438c30..217eaa7 100644 --- a/resources/svg/unrealscript.svg +++ b/resources/svg/unrealscript.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/urweb.svg b/resources/svg/urweb.svg index d2d260c..dac80c6 100644 --- a/resources/svg/urweb.svg +++ b/resources/svg/urweb.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/v-ray.svg b/resources/svg/v-ray.svg index 1ec9699..e634c5b 100644 --- a/resources/svg/v-ray.svg +++ b/resources/svg/v-ray.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/v.svg b/resources/svg/v.svg index bab48b9..1cd5106 100644 --- a/resources/svg/v.svg +++ b/resources/svg/v.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/v8-turbofan.svg b/resources/svg/v8-turbofan.svg index 7ee0c57..3403cb9 100644 --- a/resources/svg/v8-turbofan.svg +++ b/resources/svg/v8-turbofan.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/v8.svg b/resources/svg/v8.svg index 33c96c1..2ed8dd6 100644 --- a/resources/svg/v8.svg +++ b/resources/svg/v8.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/vagrant.svg b/resources/svg/vagrant.svg index ef6a177..c9202a4 100644 --- a/resources/svg/vagrant.svg +++ b/resources/svg/vagrant.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/vala.svg b/resources/svg/vala.svg index 9880d3e..29ed291 100644 --- a/resources/svg/vala.svg +++ b/resources/svg/vala.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/vax.svg b/resources/svg/vax.svg index ccd4f6a..5992589 100644 --- a/resources/svg/vax.svg +++ b/resources/svg/vax.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/vcl.svg b/resources/svg/vcl.svg index 0ad7c38..07b7dd1 100644 --- a/resources/svg/vcl.svg +++ b/resources/svg/vcl.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/velocity.svg b/resources/svg/velocity.svg index f6291ea..c0e1e0b 100644 --- a/resources/svg/velocity.svg +++ b/resources/svg/velocity.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/verilog.svg b/resources/svg/verilog.svg index 471da4b..5c2b95b 100644 --- a/resources/svg/verilog.svg +++ b/resources/svg/verilog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/vertexshader.svg b/resources/svg/vertexshader.svg index 86a993d..1252486 100644 --- a/resources/svg/vertexshader.svg +++ b/resources/svg/vertexshader.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/vhdl.svg b/resources/svg/vhdl.svg index 6ef5440..273111c 100644 --- a/resources/svg/vhdl.svg +++ b/resources/svg/vhdl.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/video.svg b/resources/svg/video.svg index 4a89a00..4d5ea7c 100644 --- a/resources/svg/video.svg +++ b/resources/svg/video.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/virtualbox-alt.svg b/resources/svg/virtualbox-alt.svg index ff56908..808616f 100644 --- a/resources/svg/virtualbox-alt.svg +++ b/resources/svg/virtualbox-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/virtualbox.svg b/resources/svg/virtualbox.svg index 2cffb09..675ff43 100644 --- a/resources/svg/virtualbox.svg +++ b/resources/svg/virtualbox.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/vite.svg b/resources/svg/vite.svg index 7479187..03dc004 100644 --- a/resources/svg/vite.svg +++ b/resources/svg/vite.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/vmware.svg b/resources/svg/vmware.svg index e75baae..4baa425 100644 --- a/resources/svg/vmware.svg +++ b/resources/svg/vmware.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/vscode.svg b/resources/svg/vscode.svg index 37410fa..0b40fb9 100644 --- a/resources/svg/vscode.svg +++ b/resources/svg/vscode.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/vsts.svg b/resources/svg/vsts.svg index b84542e..e681457 100644 --- a/resources/svg/vsts.svg +++ b/resources/svg/vsts.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/vue.svg b/resources/svg/vue.svg index 52a1b9d..a28d30b 100644 --- a/resources/svg/vue.svg +++ b/resources/svg/vue.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/vyper.svg b/resources/svg/vyper.svg index dfeed8e..d42925e 100644 --- a/resources/svg/vyper.svg +++ b/resources/svg/vyper.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/w3c.svg b/resources/svg/w3c.svg index 7a92f84..2041f69 100644 --- a/resources/svg/w3c.svg +++ b/resources/svg/w3c.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/wallaby.svg b/resources/svg/wallaby.svg index 26a8df5..ce9dcbf 100644 --- a/resources/svg/wallaby.svg +++ b/resources/svg/wallaby.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/walt.svg b/resources/svg/walt.svg index bc70145..2783426 100644 --- a/resources/svg/walt.svg +++ b/resources/svg/walt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/warcraft-iii.svg b/resources/svg/warcraft-iii.svg index 74cffdf..b2c4328 100644 --- a/resources/svg/warcraft-iii.svg +++ b/resources/svg/warcraft-iii.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/wasi.svg b/resources/svg/wasi.svg index 654f468..729d89c 100644 --- a/resources/svg/wasi.svg +++ b/resources/svg/wasi.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/watchman.svg b/resources/svg/watchman.svg index 620610f..cb8adf1 100644 --- a/resources/svg/watchman.svg +++ b/resources/svg/watchman.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/wdl.svg b/resources/svg/wdl.svg index 8e834cd..9ec5db0 100644 --- a/resources/svg/wdl.svg +++ b/resources/svg/wdl.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/webassembly.svg b/resources/svg/webassembly.svg index 52c2b80..792a4c7 100644 --- a/resources/svg/webassembly.svg +++ b/resources/svg/webassembly.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/webgl.svg b/resources/svg/webgl.svg index 39efa29..f3e9ad8 100644 --- a/resources/svg/webgl.svg +++ b/resources/svg/webgl.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/webhint.svg b/resources/svg/webhint.svg index ab7a6b7..1e54d2c 100644 --- a/resources/svg/webhint.svg +++ b/resources/svg/webhint.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/webpack-old.svg b/resources/svg/webpack-old.svg index eb67224..542ca18 100644 --- a/resources/svg/webpack-old.svg +++ b/resources/svg/webpack-old.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/webpack.svg b/resources/svg/webpack.svg index e870571..f701be2 100644 --- a/resources/svg/webpack.svg +++ b/resources/svg/webpack.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/webvtt.svg b/resources/svg/webvtt.svg index 6e96fdc..ab221fc 100644 --- a/resources/svg/webvtt.svg +++ b/resources/svg/webvtt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/wenyan.svg b/resources/svg/wenyan.svg index 49bd8c4..5efe6c0 100644 --- a/resources/svg/wenyan.svg +++ b/resources/svg/wenyan.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/wercker.svg b/resources/svg/wercker.svg index e340bf4..2a48e41 100644 --- a/resources/svg/wercker.svg +++ b/resources/svg/wercker.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/wget.svg b/resources/svg/wget.svg index 072f271..291d6b4 100644 --- a/resources/svg/wget.svg +++ b/resources/svg/wget.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/windi.svg b/resources/svg/windi.svg index 07b0c37..bad04aa 100644 --- a/resources/svg/windi.svg +++ b/resources/svg/windi.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/wine.svg b/resources/svg/wine.svg index a5a5625..b6750d5 100644 --- a/resources/svg/wine.svg +++ b/resources/svg/wine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/winui.svg b/resources/svg/winui.svg index fdedeef..e2e6295 100644 --- a/resources/svg/winui.svg +++ b/resources/svg/winui.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/wix.svg b/resources/svg/wix.svg index bc8c507..5d525e3 100644 --- a/resources/svg/wix.svg +++ b/resources/svg/wix.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/wolfram.svg b/resources/svg/wolfram.svg index a6b1d60..f1bcc22 100644 --- a/resources/svg/wolfram.svg +++ b/resources/svg/wolfram.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/workbox.svg b/resources/svg/workbox.svg index 49dbefa..e35cb65 100644 --- a/resources/svg/workbox.svg +++ b/resources/svg/workbox.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/wurst.svg b/resources/svg/wurst.svg index 21a0085..9436e43 100644 --- a/resources/svg/wurst.svg +++ b/resources/svg/wurst.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/x10.svg b/resources/svg/x10.svg index feacff5..c70965d 100644 --- a/resources/svg/x10.svg +++ b/resources/svg/x10.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/xamarin.svg b/resources/svg/xamarin.svg index f6be00b..0937aea 100644 --- a/resources/svg/xamarin.svg +++ b/resources/svg/xamarin.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/xmake.svg b/resources/svg/xmake.svg index b16bdd0..40d3893 100644 --- a/resources/svg/xmake.svg +++ b/resources/svg/xmake.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/xmos.svg b/resources/svg/xmos.svg index c05dd11..899acbb 100644 --- a/resources/svg/xmos.svg +++ b/resources/svg/xmos.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/xpages.svg b/resources/svg/xpages.svg index cfafe53..c74d407 100644 --- a/resources/svg/xpages.svg +++ b/resources/svg/xpages.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/xtend.svg b/resources/svg/xtend.svg index ef5962f..a53ac27 100644 --- a/resources/svg/xtend.svg +++ b/resources/svg/xtend.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/xubuntu.svg b/resources/svg/xubuntu.svg index 55062bc..6ff9de6 100644 --- a/resources/svg/xubuntu.svg +++ b/resources/svg/xubuntu.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/yaml-alt1.svg b/resources/svg/yaml-alt1.svg index f515183..e2d2c5d 100644 --- a/resources/svg/yaml-alt1.svg +++ b/resources/svg/yaml-alt1.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/yaml-alt2.svg b/resources/svg/yaml-alt2.svg index d4421e8..99d0194 100644 --- a/resources/svg/yaml-alt2.svg +++ b/resources/svg/yaml-alt2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/yaml-alt3.svg b/resources/svg/yaml-alt3.svg index 3f3d45f..c47cd91 100644 --- a/resources/svg/yaml-alt3.svg +++ b/resources/svg/yaml-alt3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/yaml-alt4.svg b/resources/svg/yaml-alt4.svg index 09cefb7..9318259 100644 --- a/resources/svg/yaml-alt4.svg +++ b/resources/svg/yaml-alt4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/yaml.svg b/resources/svg/yaml.svg index 0fb0736..3edc0f4 100644 --- a/resources/svg/yaml.svg +++ b/resources/svg/yaml.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/yamllint.svg b/resources/svg/yamllint.svg index 1c120c4..98c37ae 100644 --- a/resources/svg/yamllint.svg +++ b/resources/svg/yamllint.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/yandex.svg b/resources/svg/yandex.svg index b65e25c..7169085 100644 --- a/resources/svg/yandex.svg +++ b/resources/svg/yandex.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/yang.svg b/resources/svg/yang.svg index f194779..f877e5a 100644 --- a/resources/svg/yang.svg +++ b/resources/svg/yang.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/yara.svg b/resources/svg/yara.svg index d8bdcc7..c22a032 100644 --- a/resources/svg/yara.svg +++ b/resources/svg/yara.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/yarn.svg b/resources/svg/yarn.svg index edf41fb..bd9c94e 100644 --- a/resources/svg/yarn.svg +++ b/resources/svg/yarn.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/yasm.svg b/resources/svg/yasm.svg index 6f4f8b8..3636683 100644 --- a/resources/svg/yasm.svg +++ b/resources/svg/yasm.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/yorick.svg b/resources/svg/yorick.svg index 3669375..96c5945 100644 --- a/resources/svg/yorick.svg +++ b/resources/svg/yorick.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/yui.svg b/resources/svg/yui.svg index 05a2093..c4c3a0c 100644 --- a/resources/svg/yui.svg +++ b/resources/svg/yui.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/zbrush.svg b/resources/svg/zbrush.svg index 6c3336d..a3d9a97 100644 --- a/resources/svg/zbrush.svg +++ b/resources/svg/zbrush.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/zeit.svg b/resources/svg/zeit.svg index 1865fca..35b36da 100644 --- a/resources/svg/zeit.svg +++ b/resources/svg/zeit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/zephir.svg b/resources/svg/zephir.svg index 3dbcce8..1bcfce6 100644 --- a/resources/svg/zephir.svg +++ b/resources/svg/zephir.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/zig.svg b/resources/svg/zig.svg index f949fee..a3421b2 100644 --- a/resources/svg/zig.svg +++ b/resources/svg/zig.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/zilog.svg b/resources/svg/zilog.svg index 39a3af6..7e64310 100644 --- a/resources/svg/zilog.svg +++ b/resources/svg/zilog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/zimpl.svg b/resources/svg/zimpl.svg index 4e0dd7c..30cfe9c 100644 --- a/resources/svg/zimpl.svg +++ b/resources/svg/zimpl.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/zorinos.svg b/resources/svg/zorinos.svg index 9b3c66f..3bef1b8 100644 --- a/resources/svg/zorinos.svg +++ b/resources/svg/zorinos.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/svg/zork.svg b/resources/svg/zork.svg index fee31f0..57ed07a 100644 --- a/resources/svg/zork.svg +++ b/resources/svg/zork.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/BladeFileIconsServiceProvider.php b/src/BladeFileIconsServiceProvider.php index 473cb82..d24b3de 100644 --- a/src/BladeFileIconsServiceProvider.php +++ b/src/BladeFileIconsServiceProvider.php @@ -19,7 +19,6 @@ public function register(): void $factory->add('file-icons', array_merge(['path' => __DIR__.'/../resources/svg'], $config)); }); - } private function registerConfig(): void diff --git a/tests/CompilesIconsTest.php b/tests/CompilesIconsTest.php index 3c3c6f9..6576e30 100644 --- a/tests/CompilesIconsTest.php +++ b/tests/CompilesIconsTest.php @@ -18,7 +18,7 @@ public function it_compiles_a_single_anonymous_component() // Note: the empty class here seems to be a Blade components bug. $expected = <<<'SVG' - + SVG; $this->assertSame($expected, $result); @@ -30,7 +30,7 @@ public function it_can_add_classes_to_icons() $result = svg('fileicon-ada', 'w-6 h-6 text-gray-500')->toHtml(); $expected = <<<'SVG' - + SVG; $this->assertSame($expected, $result); @@ -42,7 +42,7 @@ public function it_can_add_styles_to_icons() $result = svg('fileicon-ada', ['style' => 'color: #555'])->toHtml(); $expected = <<<'SVG' - + SVG; $this->assertSame($expected, $result); @@ -56,7 +56,7 @@ public function it_can_add_default_class_from_config() $result = svg('fileicon-ada')->toHtml(); $expected = <<<'SVG' - + SVG; $this->assertSame($expected, $result); @@ -71,7 +71,7 @@ public function it_can_merge_default_class_from_config() $result = svg('fileicon-ada', 'w-6 h-6')->toHtml(); $expected = <<<'SVG' - + SVG; $this->assertSame($expected, $result);