Skip to content

Commit

Permalink
Rename "system" to "sensor".
Browse files Browse the repository at this point in the history
Bump minor version as renaming introduces incompatibilities.
(I should have bumped it earlier.)

fixes #55
  • Loading branch information
geordanr committed Aug 9, 2018
1 parent 05fd146 commit 5cec8a6
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 13 deletions.
23 changes: 23 additions & 0 deletions .vscode/tasks.json
@@ -0,0 +1,23 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "build",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"type": "npm",
"script": "test",
"group": {
"kind": "test",
"isDefault": true
}
}
]
}
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "xwing-miniatures-font",
"version": "2.1.2",
"version": "2.2.0",
"authors": [
"Geordan Rosario <geordan@gmail.com>"
],
Expand Down
10 changes: 5 additions & 5 deletions dist/xwing-miniatures.css
Expand Up @@ -314,6 +314,9 @@ i.xwing-miniatures-font-rotatearc:before {
i.xwing-miniatures-font-scum:before {
content: "#"; }

i.xwing-miniatures-font-sensor:before {
content: "S"; }

i.xwing-miniatures-font-shield:before {
content: "*"; }

Expand All @@ -338,9 +341,6 @@ i.xwing-miniatures-font-stop:before {
i.xwing-miniatures-font-straight:before {
content: "8"; }

i.xwing-miniatures-font-system:before {
content: "S"; }

i.xwing-miniatures-font-talent:before {
content: "E"; }

Expand Down Expand Up @@ -423,13 +423,13 @@ i.xwing-miniatures-font-token-reinforce-outline:before {
content: "ì"; }

i.xwing-miniatures-font-token-reinforce:before {
content: "Ý"; }
content: "Ü"; }

i.xwing-miniatures-font-token-reinforceaft-outline:before {
content: "î"; }

i.xwing-miniatures-font-token-reinforceaft:before {
content: "Ü"; }
content: "Ý"; }

i.xwing-miniatures-font-token-shield-outline:before {
content: "ë"; }
Expand Down
8 changes: 4 additions & 4 deletions index.html
Expand Up @@ -418,6 +418,10 @@ <h1>X-Wing Miniatures Font List</h1>
<td>xwing-miniatures-font-scum</td>
<td><i class="xwing-miniatures-font xwing-miniatures-font-scum"></i></td>
</tr>
<tr>
<td>xwing-miniatures-font-sensor</td>
<td><i class="xwing-miniatures-font xwing-miniatures-font-sensor"></i></td>
</tr>
<tr>
<td>xwing-miniatures-font-shield</td>
<td><i class="xwing-miniatures-font xwing-miniatures-font-shield"></i></td>
Expand Down Expand Up @@ -450,10 +454,6 @@ <h1>X-Wing Miniatures Font List</h1>
<td>xwing-miniatures-font-straight</td>
<td><i class="xwing-miniatures-font xwing-miniatures-font-straight"></i></td>
</tr>
<tr>
<td>xwing-miniatures-font-system</td>
<td><i class="xwing-miniatures-font xwing-miniatures-font-system"></i></td>
</tr>
<tr>
<td>xwing-miniatures-font-talent</td>
<td><i class="xwing-miniatures-font xwing-miniatures-font-talent"></i></td>
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "xwing-miniatures-font",
"version": "2.1.2",
"version": "2.2.0",
"description": "Font for the X-Wing Miniatures game",
"files": [
"dist/xwing-miniatures.css",
Expand Down
2 changes: 1 addition & 1 deletion src/json/icons-map.json
Expand Up @@ -101,6 +101,7 @@
"rightarc": "\u00a2",
"rotatearc": "\u0052",
"scum": "\u0023",
"sensor": "\u0053",
"shield": "\u002a",
"singleturretarc": "\u0070",
"slam": "\u0073",
Expand All @@ -109,7 +110,6 @@
"squad-point-cost": "\u0030",
"stop": "\u0035",
"straight": "\u0038",
"system": "\u0053",
"talent": "\u0045",
"team": "\u0054",
"tech": "\u0058",
Expand Down
2 changes: 1 addition & 1 deletion src/sass/_icons-map.scss
Expand Up @@ -100,6 +100,7 @@ $icons-map: (
rightarc: "\00a2",
rotatearc: "\0052",
scum: "\0023",
sensor: "\0053",
shield: "\002a",
singleturretarc: "\0070",
slam: "\0073",
Expand All @@ -108,7 +109,6 @@ $icons-map: (
squad-point-cost: "\0030",
stop: "\0035",
straight: "\0038",
system: "\0053",
talent: "\0045",
team: "\0054",
tech: "\0058",
Expand Down

0 comments on commit 5cec8a6

Please sign in to comment.