Skip to content

Commit 44f249c

Browse files
committed
feat(highlight): Fix a lot of bugs, convert to CCDrawNode
1 parent 1c1cb19 commit 44f249c

File tree

8 files changed

+420
-284
lines changed

8 files changed

+420
-284
lines changed

.github/workflows/geode-build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
- name: Build the mod
2828
uses: geode-sdk/build-geode-mod@main
2929
with:
30+
sdk: 'nightly'
3031
bindings: geode-sdk/bindings
3132
bindings-ref: main
3233
combine: true

mod.json

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"win": "2.2074",
55
"mac": "2.2074"
66
},
7-
"version": "v4.2.0-beta.13",
7+
"version": "v4.2.0-beta.20",
88
"id": "spaghettdev.betterinputs",
99
"name": "BetterInputs",
1010
"developer": "SpaghettDev",
@@ -20,16 +20,28 @@
2020
},
2121
"settings": {
2222
"allow-any-character": {
23-
"type": "bool",
24-
"default": true,
2523
"name": "Allow any character",
26-
"description": "Allows inputting any character (even ones not allowed) into input nodes."
24+
"description": "Allows inputting any character (even ones not allowed) into input nodes.",
25+
"type": "bool",
26+
"default": true
2727
},
2828
"bypass-length-check": {
29+
"name": "Bypass Length Check",
30+
"description": "Allows inserting however many characters into an input node.",
2931
"type": "bool",
30-
"default": true,
31-
"name": "Bypass length check",
32-
"description": "Allows inserting however many characters into an input node."
32+
"default": true
33+
},
34+
"alternate-cursor-blink": {
35+
"name": "Alternate Cursor blink",
36+
"description": "Alternate cursor blinking animation, similar to VSCode.",
37+
"type": "bool",
38+
"default": false
39+
},
40+
"highlight-color": {
41+
"name": "Selection Color",
42+
"description": "Sets the color of the highlight.",
43+
"type": "color",
44+
"default": "#5078FF"
3345
}
3446
}
3547
}

0 commit comments

Comments
 (0)