Skip to content

Commit 8ca9a2a

Browse files
committed
Add various car and truck icons
1 parent e14633c commit 8ca9a2a

15 files changed

+80
-9
lines changed

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,31 @@
22

33
## [3.0.0] - 2026-02-21
44

5-
⚠️ This major release contains new and redesigned icons that may affect your setup. A machine-readable version of the icon upgrade paths can be found in the [`migrations.json`](/migrations.json) file.
5+
⚠️ This major release contains new, redesigned, and renamed icons that may affect your setup. A machine-readable version of the icon upgrade paths can be found in the [`migrations.json`](/migrations.json) file.
66

77
### New icons
88

99
- <img src="https://pinhead.ink/v3/maple_leaf.svg" width="15px"/> Add `maple_leaf`
1010
- <img src="https://pinhead.ink/v3/car_profile.svg" width="15px"/> Add `car_profile`
11+
- <img src="https://pinhead.ink/v3/car_profile_with_raised_hood.svg" width="15px"/> Add `car_profile_with_raised_hood`
12+
- <img src="https://pinhead.ink/v3/compact_box_truck.svg" width="15px"/> Add `compact_box_truck`
13+
- <img src="https://pinhead.ink/v3/compact_box_truck_with_greek_cross.svg" width="15px"/> Add `compact_box_truck_with_greek_cross`
14+
- <img src="https://pinhead.ink/v3/compact_box_truck_with_heavy_six_point_asterisk.svg" width="15px"/> Add `compact_box_truck_with_heavy_six_point_asterisk`
15+
- <img src="https://pinhead.ink/v3/flatbed_truck.svg" width="15px"/> Add `flatbed_truck`
16+
- <img src="https://pinhead.ink/v3/pickup_truck.svg" width="15px"/> Add `pickup_truck`
17+
- <img src="https://pinhead.ink/v3/pickup_truck_with_crates.svg" width="15px"/> Add `pickup_truck_with_crates`
18+
- <img src="https://pinhead.ink/v3/pickup_truck_with_raised_hood.svg" width="15px"/> Add `pickup_truck_with_raised_hood`
1119
- <img src="https://pinhead.ink/v3/mobile_phone_with_keypad_and_antenna_and_wifi.svg" width="15px"/> Add `mobile_phone_with_keypad_and_antenna_and_wifi`
1220
- <img src="https://pinhead.ink/v3/mobile_phone_with_touchscreen_and_antenna_and_wifi.svg" width="15px"/> Add `mobile_phone_with_touchscreen_and_antenna_and_wifi`
1321

1422
### Redesigned icons
1523

1624
- <img src="https://pinhead.ink/v2/wifi.svg" width="15px"/> -> <img src="https://pinhead.ink/v3/wifi.svg" width="15px"/> Update `wifi` to be simpler and bolder, and therefore more legible at smaller sizes and easier to combine with other icons
1725

26+
### Renamed and redesigned icons
27+
28+
- <img src="https://pinhead.ink/v2/truck.svg" width="15px"/> `truck` -> <img src="https://pinhead.ink/v3/box_truck.svg" width="15px"/> `box_truck`
29+
1830
## [2.1.1] - 2026-02-20
1931

2032
### Developer changes

β€Ždocs/index.jsβ€Ž

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function setupPage(pageData) {
3434
.setAttribute('href', '#' + packageJson.versionIcon.slice(0, -4).split('/').slice(-1)[0])
3535
.append(
3636
new Chainable('img')
37-
.setAttribute('src', packageJson.versionIcon || "https://pinhead.ink/v1/heart.svg")
37+
.setAttribute('src', packageJson.versionIcon || "/v1/heart.svg")
3838
),
3939
new Chainable('span')
4040
.append('v' + version)
@@ -46,7 +46,7 @@ function setupPage(pageData) {
4646
.append('download'),
4747
new Chainable('img')
4848
.setAttribute('class', 'inline-icon')
49-
.setAttribute('src', `https://pinhead.ink/v${majorVersion}/arrow_down_to_down_bracket.svg`)
49+
.setAttribute('src', `/v${majorVersion}/arrow_down_to_down_bracket.svg`)
5050
),
5151
new Chainable('a')
5252
.setAttribute('href', `https://www.npmjs.com/package/@waysidemapping/pinhead/v/${version}`)
@@ -56,7 +56,7 @@ function setupPage(pageData) {
5656
.append('npm package'),
5757
new Chainable('img')
5858
.setAttribute('class', 'inline-icon')
59-
.setAttribute('src', `https://pinhead.ink/v${majorVersion}/arrow_top_right_from_square_outline.svg`)
59+
.setAttribute('src', `/v${majorVersion}/arrow_top_right_from_square_outline.svg`)
6060
),
6161
new Chainable('a')
6262
.setAttribute('href', `https://github.com/waysidemapping/pinhead/releases/tag/v${version}`)
@@ -66,7 +66,7 @@ function setupPage(pageData) {
6666
.append('github release'),
6767
new Chainable('img')
6868
.setAttribute('class', 'inline-icon')
69-
.setAttribute('src', `https://pinhead.ink/v${majorVersion}/arrow_top_right_from_square_outline.svg`)
69+
.setAttribute('src', `/v${majorVersion}/arrow_top_right_from_square_outline.svg`)
7070
)
7171
].join(''));
7272

Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 1 addition & 1 deletion
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading

0 commit comments

Comments
Β (0)