add more software icons

ref #470
This commit is contained in:
Collin Barrett 2018-09-15 17:52:50 -05:00
parent 43d4102548
commit 0ad8aa4409
6 changed files with 8 additions and 12 deletions

View file

@ -45,13 +45,7 @@
"id": 8,
"downloadUrl": "https://chrome.google.com/webstore/detail/personal-blocklist-by-goo/nolijncfnkgaikbjbdaogikpmpbdcdef",
"homeUrl": "https://chrome.google.com/webstore/detail/personal-blocklist-by-goo/nolijncfnkgaikbjbdaogikpmpbdcdef",
"name": "Personal Blocklist (Chrome)"
},
{
"id": 9,
"downloadUrl": "https://addons.mozilla.org/firefox/addon/personal-blocklist/",
"homeUrl": "https://github.com/wildskyf/personal-blocklist",
"name": "Personal Blocklist (Firefox)"
"name": "Personal Blocklist"
},
{
"id": 10,

View file

@ -39,10 +39,6 @@
"softwareId": 8,
"syntaxId": 2
},
{
"softwareId": 9,
"syntaxId": 2
},
{
"softwareId": 14,
"syntaxId": 2

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 658 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -4,6 +4,9 @@ import img2 from "../../../../imgs/software/2-Adblock-Plus.svg";
import img3 from "../../../../imgs/software/3-AdGuard.png";
import img4 from "../../../../imgs/software/4-DNS66.png";
import img5 from "../../../../imgs/software/5-Nano-Adblocker.png";
import img6 from "../../../../imgs/software/6-AdBlock.png";
import img7 from "../../../../imgs/software/7-AdAway.png";
import img8 from "../../../../imgs/software/8-Personal-Blocklist.png";
interface IProps {
id: number;
@ -28,5 +31,8 @@ const icons: { [id: number]: IIcon; } = {
2: { image: img2, imageTitle: "Adblock Plus" },
3: { image: img3, imageTitle: "AdGuard" },
4: { image: img4, imageTitle: "DNS66" },
5: { image: img5, imageTitle: "Nano Adblocker" }
5: { image: img5, imageTitle: "Nano Adblocker" },
6: { image: img6, imageTitle: "AdBlock" },
7: { image: img7, imageTitle: "AdAway" },
8: { image: img8, imageTitle: "Personal Blocklist" }
};