@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 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
- ## [4.3.1-canary.261.5628274.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputkeymaputils@4.3.0...@quenty/inputkeymaputils@4.3.1-canary.261.5628274.0) (2022-05-21)
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
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2014-2021 Quenty
3
+ Copyright (c) 2014-2022 Quenty
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/inputkeymaputils",
3
- "version": "4.3.1-canary.261.5628274.0",
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": "4.2.1-canary.261.5628274.0",
30
- "@quenty/brio": "5.2.1-canary.261.5628274.0",
31
- "@quenty/inputmode": "4.2.1-canary.261.5628274.0",
32
- "@quenty/loader": "4.1.1-canary.261.5628274.0",
33
- "@quenty/maid": "2.3.0",
34
- "@quenty/observablecollection": "2.2.1-canary.261.5628274.0",
35
- "@quenty/rx": "4.2.1-canary.261.5628274.0",
36
- "@quenty/servicebag": "4.2.1-canary.261.5628274.0",
37
- "@quenty/statestack": "5.3.1-canary.261.5628274.0",
38
- "@quenty/table": "2.2.1-canary.261.5628274.0",
39
- "@quenty/valuebaseutils": "4.2.1-canary.261.5628274.0",
40
- "@quenty/valueobject": "4.2.1-canary.261.5628274.0"
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": "5628274461f4fa0135e63b62e99fcd508d4c94f9"
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:DoCleaning()
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