Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/icons/count_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/count_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/count_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/count_3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/count_4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/count_5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/count_6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/count_7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/count_8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/count_9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 12 additions & 2 deletions src/components/LayoutSelector.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { readFileAsText } from "../utils/utils";

// Layouts
import hashfrogJSON from "../layouts/hashfrog.json";
import hashfrogMentorJSON from "../layouts/HashFrogMentor.json";
import hashfrogSawsJSON from "../layouts/HashFrogSAWS.json";
import linsoJSON from "../layouts/linso.json";
import escapefromkakJSON from "../layouts/escapefromkak.json";
Expand Down Expand Up @@ -52,6 +53,9 @@ const LayoutSelector = () => {
case "hashfrogSaws":
selectedLayout = hashfrogSawsJSON;
break;
case "hashfrogMentor":
selectedLayout = hashfrogMentorJSON;
break;
default:
selectedLayout = hashfrogJSON;
break;
Expand Down Expand Up @@ -102,8 +106,8 @@ const LayoutSelector = () => {
</li>
<li className="list-divider">|</li>
<li>
<button type="button" className="btn btn-link btm-sm p-0" onClick={() => applyPreset("escapefromkak")}>
EscapeFromKak
<button type="button" className="btn btn-link btm-sm p-0" onClick={() => applyPreset("hashfrogMentor")}>
HashFrog Mentor
</button>
</li>
<li className="list-divider">|</li>
Expand All @@ -112,6 +116,12 @@ const LayoutSelector = () => {
HashFrog SAWS
</button>
</li>
<li className="list-divider">|</li>
<li>
<button type="button" className="btn btn-link btm-sm p-0" onClick={() => applyPreset("escapefromkak")}>
EscapeFromKak
</button>
</li>
</ul>
</div>
);
Expand Down
23 changes: 23 additions & 0 deletions src/data/elements.json
Original file line number Diff line number Diff line change
Expand Up @@ -3064,5 +3064,28 @@
"boss_tw_25x25.png"
],
"receiver": false
},
{
"id": "3408c14106b24e4c913cdbb48f838068",
"type": "simple",
"name": "numbers",
"displayName": "Numbers",
"size": [
20,
20
],
"icons": [
"count_0.png",
"count_1.png",
"count_2.png",
"count_3.png",
"count_4.png",
"count_5.png",
"count_6.png",
"count_7.png",
"count_8.png",
"count_9.png"
],
"receiver": false
}
]
Loading
Loading