@quenty/tie 4.18.0 → 4.19.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 +10 -10
- package/test/scripts/Server/ServerMain.server.lua +1 -1
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
|
+
# [4.19.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/tie@4.18.0...@quenty/tie@4.19.0) (2023-05-26)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* Initial refactor of guis to use ValueObject instead of ValueObject ([723aba0](https://github.com/Quenty/NevermoreEngine/commit/723aba0208cae7e06c9d8bf2d8f0092d042d70ea))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [4.18.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/tie@4.17.0...@quenty/tie@4.18.0) (2023-05-08)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/tie
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/tie",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.19.0",
|
|
4
4
|
"description": "Tie allows interfaces to be defined between Lua OOP and Roblox objects.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -28,26 +28,26 @@
|
|
|
28
28
|
"Quenty"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@quenty/attributeutils": "^8.
|
|
31
|
+
"@quenty/attributeutils": "^8.15.0",
|
|
32
32
|
"@quenty/baseobject": "^6.2.1",
|
|
33
|
-
"@quenty/brio": "^8.
|
|
34
|
-
"@quenty/instanceutils": "^7.
|
|
33
|
+
"@quenty/brio": "^8.13.0",
|
|
34
|
+
"@quenty/instanceutils": "^7.14.0",
|
|
35
35
|
"@quenty/loader": "^6.2.1",
|
|
36
36
|
"@quenty/maid": "^2.5.0",
|
|
37
|
-
"@quenty/rx": "^7.
|
|
38
|
-
"@quenty/statestack": "^8.
|
|
37
|
+
"@quenty/rx": "^7.11.0",
|
|
38
|
+
"@quenty/statestack": "^8.14.0",
|
|
39
39
|
"@quenty/string": "^3.1.0",
|
|
40
40
|
"@quenty/symbol": "^2.2.0",
|
|
41
41
|
"@quenty/table": "^3.2.0",
|
|
42
|
-
"@quenty/valuebaseutils": "^7.
|
|
43
|
-
"@quenty/valueobject": "^7.
|
|
42
|
+
"@quenty/valuebaseutils": "^7.14.0",
|
|
43
|
+
"@quenty/valueobject": "^7.14.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@quenty/promise": "^6.5.0",
|
|
47
|
-
"@quenty/signal": "^2.
|
|
47
|
+
"@quenty/signal": "^2.4.0"
|
|
48
48
|
},
|
|
49
49
|
"publishConfig": {
|
|
50
50
|
"access": "public"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "11058e90e51ea83d3dad6ae9abe59cc19c36b94b"
|
|
53
53
|
}
|
|
@@ -152,7 +152,7 @@ end
|
|
|
152
152
|
-- print(os.clock() - startTime)
|
|
153
153
|
|
|
154
154
|
-- local action = adornee.Action
|
|
155
|
-
-- action:SetAttribute("DisplayName", Vector3.
|
|
155
|
+
-- action:SetAttribute("DisplayName", Vector3.zero)
|
|
156
156
|
|
|
157
157
|
-- action.Parent = nil
|
|
158
158
|
-- task.wait(0.1)
|