@quenty/inputkeymaputils 14.5.0 → 14.5.1-canary.474.daf1700.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/package.json +19 -19
- package/src/Shared/Types/SlottedTouchButtonUtils.lua +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [14.5.1-canary.474.daf1700.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputkeymaputils@14.5.0...@quenty/inputkeymaputils@14.5.1-canary.474.daf1700.0) (2024-05-17)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Rename priority1 & priority2 -> primary4 & primary5 ([daf1700](https://github.com/Quenty/NevermoreEngine/commit/daf1700dcf89e1d0c3f7576f899ba79b37b7f877))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* Add slotIds for priority1 and priority2 buttons ([55c4529](https://github.com/Quenty/NevermoreEngine/commit/55c4529de568cf5ce768c78085adc2f5f7c434b5))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [14.5.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputkeymaputils@14.4.0...@quenty/inputkeymaputils@14.5.0) (2024-05-09)
|
|
7
23
|
|
|
8
24
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/inputkeymaputils",
|
|
3
|
-
"version": "14.5.0",
|
|
3
|
+
"version": "14.5.1-canary.474.daf1700.0",
|
|
4
4
|
"description": "System to define rebindable key bindings and inputs for Roblox.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -26,26 +26,26 @@
|
|
|
26
26
|
"Quenty"
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@quenty/baseobject": "
|
|
30
|
-
"@quenty/brio": "
|
|
31
|
-
"@quenty/clienttranslator": "
|
|
32
|
-
"@quenty/ducktype": "
|
|
33
|
-
"@quenty/enumutils": "
|
|
34
|
-
"@quenty/inputmode": "
|
|
35
|
-
"@quenty/loader": "
|
|
36
|
-
"@quenty/maid": "
|
|
37
|
-
"@quenty/observablecollection": "
|
|
38
|
-
"@quenty/pseudolocalize": "
|
|
39
|
-
"@quenty/rx": "
|
|
40
|
-
"@quenty/servicebag": "
|
|
41
|
-
"@quenty/statestack": "
|
|
42
|
-
"@quenty/string": "
|
|
43
|
-
"@quenty/table": "
|
|
44
|
-
"@quenty/valuebaseutils": "
|
|
45
|
-
"@quenty/valueobject": "
|
|
29
|
+
"@quenty/baseobject": "10.3.0",
|
|
30
|
+
"@quenty/brio": "14.3.0",
|
|
31
|
+
"@quenty/clienttranslator": "14.4.0",
|
|
32
|
+
"@quenty/ducktype": "5.3.0",
|
|
33
|
+
"@quenty/enumutils": "3.2.0",
|
|
34
|
+
"@quenty/inputmode": "13.4.0",
|
|
35
|
+
"@quenty/loader": "10.3.0",
|
|
36
|
+
"@quenty/maid": "3.2.0",
|
|
37
|
+
"@quenty/observablecollection": "12.3.0",
|
|
38
|
+
"@quenty/pseudolocalize": "3.3.0",
|
|
39
|
+
"@quenty/rx": "13.3.0",
|
|
40
|
+
"@quenty/servicebag": "11.4.0",
|
|
41
|
+
"@quenty/statestack": "14.4.0",
|
|
42
|
+
"@quenty/string": "3.2.0",
|
|
43
|
+
"@quenty/table": "3.5.0",
|
|
44
|
+
"@quenty/valuebaseutils": "13.3.0",
|
|
45
|
+
"@quenty/valueobject": "13.3.0"
|
|
46
46
|
},
|
|
47
47
|
"publishConfig": {
|
|
48
48
|
"access": "public"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "daf1700dcf89e1d0c3f7576f899ba79b37b7f877"
|
|
51
51
|
}
|
|
@@ -40,6 +40,7 @@ function SlottedTouchButtonUtils.createSlottedTouchButton(slotId)
|
|
|
40
40
|
or slotId == "primary2"
|
|
41
41
|
or slotId == "primary3"
|
|
42
42
|
or slotId == "primary4"
|
|
43
|
+
or slotId == "primary5"
|
|
43
44
|
or slotId == "inner1"
|
|
44
45
|
or slotId == "inner2"
|
|
45
46
|
or slotId == "jumpbutton"
|
|
@@ -99,4 +100,4 @@ function SlottedTouchButtonUtils.getSlottedTouchButtonData(inputKeyMapList)
|
|
|
99
100
|
return slottedTouchButtons
|
|
100
101
|
end
|
|
101
102
|
|
|
102
|
-
return SlottedTouchButtonUtils
|
|
103
|
+
return SlottedTouchButtonUtils
|