@quenty/binder 14.6.1-canary.497.496fc5b.0 → 14.6.1-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 +5 -2
- package/package.json +11 -11
- package/src/Shared/Binder.lua +2 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,9 +3,12 @@
|
|
|
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
|
-
## [14.6.1-canary.497.
|
|
6
|
+
## [14.6.1-canary.497.9e2859c.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@14.6.0...@quenty/binder@14.6.1-canary.497.9e2859c.0) (2024-09-24)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Rename stragglers ([25c8512](https://github.com/Quenty/NevermoreEngine/commit/25c85124769eb0c92ad4d4c51bc950d9c319c994))
|
|
9
12
|
|
|
10
13
|
|
|
11
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/binder",
|
|
3
|
-
"version": "14.6.1-canary.497.
|
|
3
|
+
"version": "14.6.1-canary.497.9e2859c.0",
|
|
4
4
|
"description": "Utility object to Bind a class to Roblox object, and associated helper methods",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,19 +25,19 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/baseobject": "10.4.1-canary.497.
|
|
29
|
-
"@quenty/brio": "14.5.1-canary.497.
|
|
30
|
-
"@quenty/instanceutils": "13.5.1-canary.497.
|
|
31
|
-
"@quenty/linkutils": "13.5.1-canary.497.
|
|
32
|
-
"@quenty/loader": "10.4.1-canary.497.
|
|
28
|
+
"@quenty/baseobject": "10.4.1-canary.497.9e2859c.0",
|
|
29
|
+
"@quenty/brio": "14.5.1-canary.497.9e2859c.0",
|
|
30
|
+
"@quenty/instanceutils": "13.5.1-canary.497.9e2859c.0",
|
|
31
|
+
"@quenty/linkutils": "13.5.1-canary.497.9e2859c.0",
|
|
32
|
+
"@quenty/loader": "10.4.1-canary.497.9e2859c.0",
|
|
33
33
|
"@quenty/maid": "3.3.0",
|
|
34
|
-
"@quenty/promise": "10.4.1-canary.497.
|
|
35
|
-
"@quenty/rx": "13.5.1-canary.497.
|
|
36
|
-
"@quenty/signal": "7.4.1-canary.497.
|
|
37
|
-
"@quenty/valueobject": "13.5.1-canary.497.
|
|
34
|
+
"@quenty/promise": "10.4.1-canary.497.9e2859c.0",
|
|
35
|
+
"@quenty/rx": "13.5.1-canary.497.9e2859c.0",
|
|
36
|
+
"@quenty/signal": "7.4.1-canary.497.9e2859c.0",
|
|
37
|
+
"@quenty/valueobject": "13.5.1-canary.497.9e2859c.0"
|
|
38
38
|
},
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "9e2859c1924d409f38f9f8e8e822abd8b4ebdb55"
|
|
43
43
|
}
|
package/src/Shared/Binder.lua
CHANGED
|
@@ -450,8 +450,7 @@ end
|
|
|
450
450
|
]=]
|
|
451
451
|
function Binder:Bind(inst)
|
|
452
452
|
if RunService:IsClient() then
|
|
453
|
-
warn(("[Binder.Bind] - Bindings '%s' done on the client! Will be disrupted upon server replication! %s")
|
|
454
|
-
:format(self._tagName, debug.traceback()))
|
|
453
|
+
warn(string.format("[Binder.Bind] - Bindings '%s' done on the client! Will be disrupted upon server replication! %s", self._tagName, debug.traceback()))
|
|
455
454
|
end
|
|
456
455
|
|
|
457
456
|
CollectionService:AddTag(inst, self._tagName)
|
|
@@ -605,8 +604,7 @@ function Binder:_add(inst)
|
|
|
605
604
|
if self._pendingInstSet[inst] ~= true then
|
|
606
605
|
-- Got GCed in the process of loading?!
|
|
607
606
|
-- Constructor probably yields. Yikes.
|
|
608
|
-
warn(("[Binder._add] - Failed to load instance %q of %q, removed while loading!"
|
|
609
|
-
:format(
|
|
607
|
+
warn(string.format("[Binder._add] - Failed to load instance %q of %q, removed while loading!",
|
|
610
608
|
inst:GetFullName(),
|
|
611
609
|
tostring(type(self._constructor) == "table" and self._constructor.ClassName or self._constructor)))
|
|
612
610
|
return
|