@quenty/genericscreenguiprovider 13.7.2 → 13.7.3-canary.497.9e2859c.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,6 +3,14 @@
|
|
|
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
|
+
## [13.7.3-canary.497.9e2859c.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/genericscreenguiprovider@13.7.2...@quenty/genericscreenguiprovider@13.7.3-canary.497.9e2859c.0) (2024-09-24)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/genericscreenguiprovider
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [13.7.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/genericscreenguiprovider@13.7.1...@quenty/genericscreenguiprovider@13.7.2) (2024-09-22)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @quenty/genericscreenguiprovider
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/genericscreenguiprovider",
|
|
3
|
-
"version": "13.7.
|
|
3
|
+
"version": "13.7.3-canary.497.9e2859c.0",
|
|
4
4
|
"description": "Providers screenGuis with a given display order for easy use",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -24,16 +24,16 @@
|
|
|
24
24
|
"Quenty"
|
|
25
25
|
],
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@quenty/blend": "
|
|
28
|
-
"@quenty/loader": "
|
|
29
|
-
"@quenty/maid": "
|
|
30
|
-
"@quenty/servicebag": "
|
|
31
|
-
"@quenty/string": "
|
|
32
|
-
"@quenty/uiobjectutils": "
|
|
33
|
-
"@quenty/valueobject": "
|
|
27
|
+
"@quenty/blend": "12.5.3-canary.497.9e2859c.0",
|
|
28
|
+
"@quenty/loader": "10.4.1-canary.497.9e2859c.0",
|
|
29
|
+
"@quenty/maid": "3.3.0",
|
|
30
|
+
"@quenty/servicebag": "11.5.2-canary.497.9e2859c.0",
|
|
31
|
+
"@quenty/string": "3.2.1-canary.497.9e2859c.0",
|
|
32
|
+
"@quenty/uiobjectutils": "6.4.2-canary.497.9e2859c.0",
|
|
33
|
+
"@quenty/valueobject": "13.5.1-canary.497.9e2859c.0"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "9e2859c1924d409f38f9f8e8e822abd8b4ebdb55"
|
|
39
39
|
}
|
|
@@ -152,7 +152,7 @@ end
|
|
|
152
152
|
]=]
|
|
153
153
|
function GenericScreenGuiProvider:GetDisplayOrder(orderName)
|
|
154
154
|
assert(type(orderName) == "string", "Bad orderName")
|
|
155
|
-
assert(self._order[orderName], ("No DisplayOrder with orderName '%s'"
|
|
155
|
+
assert(self._order[orderName], string.format("No DisplayOrder with orderName '%s'", tostring(orderName)))
|
|
156
156
|
|
|
157
157
|
return self._order[orderName]
|
|
158
158
|
end
|