@quenty/settings 11.11.0 → 11.11.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,6 +3,22 @@
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.11.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/settings@11.11.1...@quenty/settings@11.11.2) (2024-10-04)
7
+
8
+ **Note:** Version bump only for package @quenty/settings
9
+
10
+
11
+
12
+
13
+
14
+ ## [11.11.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/settings@11.11.0...@quenty/settings@11.11.1) (2024-10-04)
15
+
16
+ **Note:** Version bump only for package @quenty/settings
17
+
18
+
19
+
20
+
21
+
6
22
  # [11.11.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/settings@11.10.0...@quenty/settings@11.11.0) (2024-10-04)
7
23
 
8
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/settings",
3
- "version": "11.11.0",
3
+ "version": "11.11.2",
4
4
  "description": "Centralized player settings service",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,35 +25,36 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/attributeutils": "^14.8.0",
28
+ "@quenty/attributeutils": "^14.8.1",
29
29
  "@quenty/baseobject": "^10.6.0",
30
- "@quenty/binder": "^14.9.0",
31
- "@quenty/cmdrservice": "^13.10.0",
32
- "@quenty/datastore": "^13.10.0",
30
+ "@quenty/binder": "^14.9.1",
31
+ "@quenty/cmdrservice": "^13.10.1",
32
+ "@quenty/datastore": "^13.10.1",
33
33
  "@quenty/ducktype": "^5.6.0",
34
34
  "@quenty/enumutils": "^3.3.0",
35
35
  "@quenty/jsonutils": "^10.6.0",
36
36
  "@quenty/loader": "^10.6.0",
37
37
  "@quenty/maid": "^3.4.0",
38
- "@quenty/observablecollection": "^12.8.0",
39
- "@quenty/playerbinder": "^14.9.0",
40
- "@quenty/playerutils": "^8.8.0",
38
+ "@quenty/observablecollection": "^12.8.1",
39
+ "@quenty/playerbinder": "^14.9.1",
40
+ "@quenty/playerutils": "^8.8.1",
41
41
  "@quenty/remotefunctionutils": "^10.6.0",
42
- "@quenty/remoting": "^12.9.0",
42
+ "@quenty/remoting": "^12.9.1",
43
43
  "@quenty/rx": "^13.8.0",
44
- "@quenty/rxbinderutils": "^14.9.0",
44
+ "@quenty/rxbinderutils": "^14.9.1",
45
+ "@quenty/rxsignal": "^7.8.0",
45
46
  "@quenty/servicebag": "^11.8.0",
46
47
  "@quenty/signal": "^7.7.0",
47
- "@quenty/statestack": "^14.9.0",
48
+ "@quenty/statestack": "^14.9.1",
48
49
  "@quenty/string": "^3.3.0",
49
50
  "@quenty/symbol": "^3.2.0",
50
51
  "@quenty/table": "^3.5.0",
51
52
  "@quenty/throttle": "^10.7.0",
52
- "@quenty/tie": "^10.10.0",
53
- "@quenty/valueobject": "^13.8.0"
53
+ "@quenty/tie": "^10.10.1",
54
+ "@quenty/valueobject": "^13.8.1"
54
55
  },
55
56
  "publishConfig": {
56
57
  "access": "public"
57
58
  },
58
- "gitHead": "035abfa088c854a73e1c65b350267eaa17669646"
59
+ "gitHead": "bcb11ac687b1fbbe691c99e8e873f1e3a2f00a13"
59
60
  }
@@ -6,6 +6,7 @@ local require = require(script.Parent.loader).load(script)
6
6
 
7
7
  local SettingsDataService = require("SettingsDataService")
8
8
  local Rx = require("Rx")
9
+ local RxSignal = require("RxSignal")
9
10
 
10
11
  local SettingProperty = {}
11
12
  SettingProperty.ClassName = "SettingProperty"
@@ -69,15 +70,11 @@ function SettingProperty:__index(index)
69
70
  return self._definition:GetDefaultValue()
70
71
  end
71
72
  elseif index == "Changed" then
72
- return {
73
- Connect = function(callback)
74
- return self:Observe():Pipe({
73
+ return RxSignal.new(self:Observe():Pipe({
75
74
  -- TODO: Handle scenario where we're loading and .Value changes because of what
76
75
  -- we queried.
77
76
  Rx.skip(1);
78
- }):Subscribe(callback)
79
- end;
80
- }
77
+ }))
81
78
  elseif index == "DefaultValue" then
82
79
  return self._definition:GetDefaultValue()
83
80
  elseif SettingProperty[index] then