@quenty/clienttranslator 4.7.0 → 5.0.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 +11 -0
- package/package.json +6 -6
- package/src/Client/JSONTranslator.lua +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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
|
+
# [5.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/clienttranslator@4.7.0...@quenty/clienttranslator@5.0.0) (2022-03-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* Rewrite gameconfig package to live-update and use binders ([430979d](https://github.com/Quenty/NevermoreEngine/commit/430979d74bffe712bd03c838be2caf4ac9395e79))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [4.7.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/clienttranslator@4.6.1...@quenty/clienttranslator@4.7.0) (2022-01-17)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/clienttranslator
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/clienttranslator",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "Gets local translator for player",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,15 +25,15 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/blend": "^
|
|
29
|
-
"@quenty/loader": "^
|
|
28
|
+
"@quenty/blend": "^3.0.0",
|
|
29
|
+
"@quenty/loader": "^4.0.0",
|
|
30
30
|
"@quenty/maid": "^2.1.0",
|
|
31
|
-
"@quenty/promise": "^
|
|
31
|
+
"@quenty/promise": "^4.0.0",
|
|
32
32
|
"@quenty/pseudolocalize": "^2.0.1",
|
|
33
|
-
"@quenty/rx": "^
|
|
33
|
+
"@quenty/rx": "^4.0.0"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "dd428cab58282c975a4c082957dc8f58e3186905"
|
|
39
39
|
}
|
|
@@ -65,6 +65,10 @@ function JSONTranslator.new(...)
|
|
|
65
65
|
return self
|
|
66
66
|
end
|
|
67
67
|
|
|
68
|
+
function JSONTranslator:GetLocalizationTable()
|
|
69
|
+
return self._localizationTable
|
|
70
|
+
end
|
|
71
|
+
|
|
68
72
|
--[=[
|
|
69
73
|
Returns a promise that will resolve once the translator is loaded from the cloud.
|
|
70
74
|
@return Promise
|