Skip to content

Commit 5ae648a

Browse files
authored
Merge branch 'develop' into new-icon-testrail
2 parents d1e402e + 45fecd6 commit 5ae648a

17 files changed

Lines changed: 122 additions & 10 deletions

README.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -269,10 +269,10 @@ https://www.python.org/downloads/
269269
> **Note**
270270
> Make sure your Python install includes [pip](https://pypi.org/project/pip/)
271271
272-
<h3>Install Selenium</h3>
272+
<h3>Install Dependencies</h3>
273273

274274
```bash
275-
python3 -m pip install --upgrade pip && pip install selenium==4.1.0 requests==2.25.1
275+
python -m pip install -r ./.github/scripts/requirements.txt
276276
```
277277

278278
<h3 id="building-icons">Build the new icons</h3>
@@ -281,11 +281,7 @@ python3 -m pip install --upgrade pip && pip install selenium==4.1.0 requests==2.
281281
Usually, this is done on each release, but you can have a sneak peek before a release.</p>
282282

283283
```bash
284-
# Linux/Unix
285284
npm run build-icons
286-
287-
# Windows
288-
python3 ./.github/scripts/icomoon_build_githubless.py ./.github/scripts/build_assets/geckodriver-v0.32.2-win64/geckodriver.exe ./icomoon.json ./devicon.json ./icons ./ --headless
289285
```
290286

291287
<i>The process might take a while, depending on your operating system's speed and the amount of icons.</i>
@@ -311,7 +307,7 @@ npm run dev # Will run on port 8000
311307
<p>Or this command, which does exactly the same, but the port can be customized.</p>
312308

313309
```bash
314-
python3 -m http.server <port>
310+
python -m http.server <port>
315311
```
316312

317313
<p>You're done now! :tada: Your build of Devicons should be available at <code>https://localhost:8000</code> (or the desired port).</p>

devicon.json

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,37 @@
9898
}
9999
]
100100
},
101+
{
102+
"name": "aframe",
103+
"altnames": [
104+
"a-frame"
105+
],
106+
"tags": [
107+
"framework",
108+
"html",
109+
"javascript",
110+
"js",
111+
"web"
112+
],
113+
"versions": {
114+
"svg": [
115+
"original",
116+
"original-wordmark",
117+
"plain"
118+
],
119+
"font": [
120+
"original-wordmark",
121+
"plain"
122+
]
123+
},
124+
"color": "#ee295f",
125+
"aliases": [
126+
{
127+
"base": "original-wordmark",
128+
"alias": "plain-wordmark"
129+
}
130+
]
131+
},
101132
{
102133
"name": "aftereffects",
103134
"altnames": [
@@ -1021,6 +1052,32 @@
10211052
}
10221053
]
10231054
},
1055+
{
1056+
"name": "babylonjs",
1057+
"altnames": [
1058+
"babylon.js"
1059+
],
1060+
"tags": [
1061+
"3d",
1062+
"javascript",
1063+
"library",
1064+
"web"
1065+
],
1066+
"versions": {
1067+
"svg": [
1068+
"original",
1069+
"original-wordmark",
1070+
"plain",
1071+
"plain-wordmark"
1072+
],
1073+
"font": [
1074+
"plain",
1075+
"plain-wordmark"
1076+
]
1077+
},
1078+
"color": "#bb464b",
1079+
"aliases": []
1080+
},
10241081
{
10251082
"name": "backbonejs",
10261083
"altnames": [],
@@ -10053,6 +10110,34 @@
1005310110
}
1005410111
]
1005510112
},
10113+
{
10114+
"name": "qtest",
10115+
"altnames": [],
10116+
"tags": [
10117+
"testing"
10118+
],
10119+
"versions": {
10120+
"svg": [
10121+
"original",
10122+
"original-wordmark"
10123+
],
10124+
"font": [
10125+
"original",
10126+
"original-wordmark"
10127+
]
10128+
},
10129+
"color": "#1a62b3",
10130+
"aliases": [
10131+
{
10132+
"base": "original",
10133+
"alias": "plain"
10134+
},
10135+
{
10136+
"base": "original-wordmark",
10137+
"alias": "plain-wordmark"
10138+
}
10139+
]
10140+
},
1005610141
{
1005710142
"name": "quarkus",
1005810143
"altnames": [],
Lines changed: 1 addition & 0 deletions
Loading

icons/aframe/aframe-original.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/aframe/aframe-plain.svg

Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)