@quenty/settings-inputkeymap 10.9.0-canary.490.601c967.0 → 10.10.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,23 @@
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
- # [10.9.0-canary.490.601c967.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/settings-inputkeymap@10.8.1...@quenty/settings-inputkeymap@10.9.0-canary.490.601c967.0) (2024-08-27)
6
+ # [10.10.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/settings-inputkeymap@10.9.0...@quenty/settings-inputkeymap@10.10.0) (2024-09-12)
7
+
8
+ **Note:** Version bump only for package @quenty/settings-inputkeymap
9
+
10
+
11
+
12
+
13
+
14
+ # [10.9.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/settings-inputkeymap@10.8.2...@quenty/settings-inputkeymap@10.9.0) (2024-08-09)
15
+
16
+ **Note:** Version bump only for package @quenty/settings-inputkeymap
17
+
18
+
19
+
20
+
21
+
22
+ ## [10.8.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/settings-inputkeymap@10.8.1...@quenty/settings-inputkeymap@10.8.2) (2024-07-16)
7
23
 
8
24
  **Note:** Version bump only for package @quenty/settings-inputkeymap
9
25
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/settings-inputkeymap",
3
- "version": "10.9.0-canary.490.601c967.0",
3
+ "version": "10.10.0",
4
4
  "description": "Input key map setting saving for players",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -28,17 +28,17 @@
28
28
  "access": "public"
29
29
  },
30
30
  "dependencies": {
31
- "@quenty/baseobject": "10.4.0-canary.490.601c967.0",
32
- "@quenty/enumutils": "3.2.0",
33
- "@quenty/inputkeymaputils": "14.7.0-canary.490.601c967.0",
34
- "@quenty/inputmode": "13.5.0-canary.490.601c967.0",
35
- "@quenty/jsonutils": "10.4.0-canary.490.601c967.0",
36
- "@quenty/loader": "10.4.0-canary.490.601c967.0",
37
- "@quenty/maid": "3.2.0",
38
- "@quenty/servicebag": "11.5.0-canary.490.601c967.0",
39
- "@quenty/settings": "11.7.0-canary.490.601c967.0",
40
- "@quenty/string": "3.2.0",
41
- "@quenty/table": "3.5.0"
31
+ "@quenty/baseobject": "^10.4.0",
32
+ "@quenty/enumutils": "^3.2.0",
33
+ "@quenty/inputkeymaputils": "^14.8.0",
34
+ "@quenty/inputmode": "^13.6.0",
35
+ "@quenty/jsonutils": "^10.4.0",
36
+ "@quenty/loader": "^10.4.0",
37
+ "@quenty/maid": "^3.3.0",
38
+ "@quenty/servicebag": "^11.5.0",
39
+ "@quenty/settings": "^11.8.0",
40
+ "@quenty/string": "^3.2.0",
41
+ "@quenty/table": "^3.5.0"
42
42
  },
43
- "gitHead": "601c9671f09638be4f326e41fcfe3343ccfe76d8"
43
+ "gitHead": "fb172906f3ee725269ec1e5f4daf9dca227e729d"
44
44
  }
@@ -22,7 +22,7 @@ local InputKeyMapSettingUtils = {}
22
22
  @return string
23
23
  ]=]
24
24
  function InputKeyMapSettingUtils.getSettingName(inputKeyMapList, inputModeType)
25
- return ("Keybind_%s_%s"):format(String.toCamelCase(inputKeyMapList:GetListName()), inputModeType.Name)
25
+ return string.format("Keybind_%s_%s", String.toCamelCase(inputKeyMapList:GetListName()), inputModeType.Name)
26
26
  end
27
27
 
28
28
  --[=[
@@ -40,7 +40,7 @@ function InputKeyMapSettingUtils.encodeInputTypeList(list)
40
40
  elseif InputTypeUtils.isKnownInputType(inputType) then
41
41
  table.insert(newList, inputType)
42
42
  else
43
- warn(("[InputKeyMapSettingUtils] - Unknown inputType %q"):format(tostring(inputType)))
43
+ warn(string.format("[InputKeyMapSettingUtils] - Unknown inputType %q", tostring(inputType)))
44
44
  table.insert(newList, inputType) -- Encode anyway
45
45
  end
46
46
  end
@@ -77,7 +77,7 @@ function InputKeyMapSettingUtils.decodeInputTypeList(encoded)
77
77
  elseif InputTypeUtils.isKnownInputType(inputType) then
78
78
  table.insert(decodedList, inputType)
79
79
  else
80
- warn(("[InputKeyMapSettingUtils] - Unknown inputType %q"):format(tostring(inputType)))
80
+ warn(string.format("[InputKeyMapSettingUtils] - Unknown inputType %q", tostring(inputType)))
81
81
  table.insert(decodedList, inputType) -- Decode anyway
82
82
  end
83
83
  end