@quenty/inputkeymaputils 4.3.1-canary.261.5628274.0 → 5.1.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 +12 -1
- package/LICENSE.md +1 -1
- package/package.json +14 -14
- package/src/Client/InputKeyMapListProvider.lua +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,18 @@
|
|
|
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
|
-
|
|
6
|
+
# [5.1.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputkeymaputils@5.0.0...@quenty/inputkeymaputils@5.1.0) (2022-06-21)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* Add MemoryStore package ([f1a7cdd](https://github.com/Quenty/NevermoreEngine/commit/f1a7cddcb8e41b7dbf3898233e846925cbea2740))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [5.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputkeymaputils@4.3.0...@quenty/inputkeymaputils@5.0.0) (2022-05-21)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/inputkeymaputils
|
|
9
20
|
|
package/LICENSE.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/inputkeymaputils",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.1.0",
|
|
4
4
|
"description": "Utility methods for input map",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -26,21 +26,21 @@
|
|
|
26
26
|
"Quenty"
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@quenty/baseobject": "
|
|
30
|
-
"@quenty/brio": "
|
|
31
|
-
"@quenty/inputmode": "
|
|
32
|
-
"@quenty/loader": "
|
|
33
|
-
"@quenty/maid": "2.3.0",
|
|
34
|
-
"@quenty/observablecollection": "
|
|
35
|
-
"@quenty/rx": "
|
|
36
|
-
"@quenty/servicebag": "
|
|
37
|
-
"@quenty/statestack": "
|
|
38
|
-
"@quenty/table": "
|
|
39
|
-
"@quenty/valuebaseutils": "
|
|
40
|
-
"@quenty/valueobject": "
|
|
29
|
+
"@quenty/baseobject": "^5.0.0",
|
|
30
|
+
"@quenty/brio": "^6.1.0",
|
|
31
|
+
"@quenty/inputmode": "^5.1.0",
|
|
32
|
+
"@quenty/loader": "^5.0.0",
|
|
33
|
+
"@quenty/maid": "^2.3.0",
|
|
34
|
+
"@quenty/observablecollection": "^3.1.0",
|
|
35
|
+
"@quenty/rx": "^5.1.0",
|
|
36
|
+
"@quenty/servicebag": "^5.0.0",
|
|
37
|
+
"@quenty/statestack": "^6.1.0",
|
|
38
|
+
"@quenty/table": "^3.1.0",
|
|
39
|
+
"@quenty/valuebaseutils": "^5.1.0",
|
|
40
|
+
"@quenty/valueobject": "^5.1.0"
|
|
41
41
|
},
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "c8732cc5dea767b3ff362db43137e2a16da7bc0d"
|
|
46
46
|
}
|
|
@@ -140,7 +140,11 @@ function InputKeyMapListProvider:Start()
|
|
|
140
140
|
end
|
|
141
141
|
|
|
142
142
|
function InputKeyMapListProvider:Destroy()
|
|
143
|
-
self._maid
|
|
143
|
+
if self._maid then
|
|
144
|
+
self._maid:DoCleaning()
|
|
145
|
+
self._maid = nil
|
|
146
|
+
end
|
|
147
|
+
|
|
144
148
|
self._inputKeyMapLists = nil
|
|
145
149
|
end
|
|
146
150
|
|