@quenty/rogue-properties 11.7.2-canary.497.496fc5b.0 → 11.7.2

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,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
- ## [11.7.2-canary.497.496fc5b.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rogue-properties@11.7.1...@quenty/rogue-properties@11.7.2-canary.497.496fc5b.0) (2024-09-20)
6
+ ## [11.7.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rogue-properties@11.7.1...@quenty/rogue-properties@11.7.2) (2024-09-22)
7
7
 
8
- **Note:** Version bump only for package @quenty/rogue-properties
8
+
9
+ ### Bug Fixes
10
+
11
+ * Can get modified version of RogueSetter ([4e1b5a3](https://github.com/Quenty/NevermoreEngine/commit/4e1b5a308fa53a00f1d84700720b70b09cc8031e))
9
12
 
10
13
 
11
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/rogue-properties",
3
- "version": "11.7.2-canary.497.496fc5b.0",
3
+ "version": "11.7.2",
4
4
  "description": "Roguelike properties which can be modified by external provides",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -24,33 +24,33 @@
24
24
  "Quenty"
25
25
  ],
26
26
  "dependencies": {
27
- "@quenty/adorneedata": "7.6.1-canary.497.496fc5b.0",
28
- "@quenty/baseobject": "10.4.1-canary.497.496fc5b.0",
29
- "@quenty/binder": "14.6.1-canary.497.496fc5b.0",
30
- "@quenty/brio": "14.5.1-canary.497.496fc5b.0",
31
- "@quenty/defaultvalueutils": "1.2.0",
32
- "@quenty/ducktype": "5.4.1-canary.497.496fc5b.0",
33
- "@quenty/instanceutils": "13.5.1-canary.497.496fc5b.0",
34
- "@quenty/jsonutils": "10.4.1-canary.497.496fc5b.0",
35
- "@quenty/linkutils": "13.5.1-canary.497.496fc5b.0",
36
- "@quenty/loader": "10.4.1-canary.497.496fc5b.0",
37
- "@quenty/maid": "3.3.0",
38
- "@quenty/observablecollection": "12.5.2-canary.497.496fc5b.0",
39
- "@quenty/rx": "13.5.1-canary.497.496fc5b.0",
40
- "@quenty/rxbinderutils": "14.6.1-canary.497.496fc5b.0",
41
- "@quenty/rxsignal": "7.5.1-canary.497.496fc5b.0",
42
- "@quenty/servicebag": "11.5.2-canary.497.496fc5b.0",
43
- "@quenty/signal": "7.4.1-canary.497.496fc5b.0",
44
- "@quenty/spring": "10.4.1-canary.497.496fc5b.0",
45
- "@quenty/string": "3.2.0",
46
- "@quenty/table": "3.5.0",
47
- "@quenty/tie": "10.7.1-canary.497.496fc5b.0",
48
- "@quenty/valuebaseutils": "13.5.1-canary.497.496fc5b.0",
49
- "@quenty/valueobject": "13.5.1-canary.497.496fc5b.0",
27
+ "@quenty/adorneedata": "^7.6.0",
28
+ "@quenty/baseobject": "^10.4.0",
29
+ "@quenty/binder": "^14.6.0",
30
+ "@quenty/brio": "^14.5.0",
31
+ "@quenty/defaultvalueutils": "^1.2.0",
32
+ "@quenty/ducktype": "^5.4.0",
33
+ "@quenty/instanceutils": "^13.5.0",
34
+ "@quenty/jsonutils": "^10.4.0",
35
+ "@quenty/linkutils": "^13.5.0",
36
+ "@quenty/loader": "^10.4.0",
37
+ "@quenty/maid": "^3.3.0",
38
+ "@quenty/observablecollection": "^12.5.2",
39
+ "@quenty/rx": "^13.5.0",
40
+ "@quenty/rxbinderutils": "^14.6.0",
41
+ "@quenty/rxsignal": "^7.5.0",
42
+ "@quenty/servicebag": "^11.5.1",
43
+ "@quenty/signal": "^7.4.0",
44
+ "@quenty/spring": "^10.4.1",
45
+ "@quenty/string": "^3.2.0",
46
+ "@quenty/table": "^3.5.0",
47
+ "@quenty/tie": "^10.7.0",
48
+ "@quenty/valuebaseutils": "^13.5.0",
49
+ "@quenty/valueobject": "^13.5.0",
50
50
  "@quentystudios/t": "^3.0.0"
51
51
  },
52
52
  "publishConfig": {
53
53
  "access": "public"
54
54
  },
55
- "gitHead": "496fc5bb230a226ec6c86a8dfd025b8e326d92d8"
55
+ "gitHead": "1cd1ee70499c9c4a52465d2e5125732b8a10cb27"
56
56
  }
@@ -148,7 +148,7 @@ function RoguePropertyDefinition:_computeStorageInstanceType()
148
148
  elseif self._valueType == "CFrame" then
149
149
  return "CFrameValue"
150
150
  else
151
- error(string.format("Unknown valueType %q", tostring(self._valueType)))
151
+ error(("Unknown valueType %q"):format(tostring(self._valueType)))
152
152
  end
153
153
  end
154
154
 
@@ -12,7 +12,7 @@ function RoguePropertyUtils.decodeProperty(definition, value)
12
12
  if definition:GetValueType() == "table" then
13
13
  local ok, decoded, err = JSONUtils.jsonDecode(value)
14
14
  if not ok then
15
- warn(string.format("Failed to decode current value of %s. %q", definition:GetName(), tostring(err)))
15
+ warn(("Failed to decode current value of %s. %q"):format(definition:GetName(), tostring(err)))
16
16
  return definition:GetDefaultValue()
17
17
  end
18
18
 
@@ -26,7 +26,7 @@ function RoguePropertyUtils.encodeProperty(definition, value)
26
26
  if definition:GetValueType() == "table" then
27
27
  local ok, encoded, err = JSONUtils.jsonEncode(value)
28
28
  if not ok then
29
- warn(string.format("Failed to encode current value of %s. %q", definition:GetName(), tostring(err)))
29
+ warn(("Failed to encode current value of %s. %q"):format(definition:GetName(), tostring(err)))
30
30
  return definition:GetEncodedDefaultValue()
31
31
  end
32
32
 
@@ -21,7 +21,7 @@ function RogueSetter.new(valueObject, serviceBag)
21
21
  return self
22
22
  end
23
23
 
24
- function RogueSetter:GetModifiedValue()
24
+ function RogueSetter:GetModifiedVersion()
25
25
  return self._obj.Value
26
26
  end
27
27