@quenty/soundgroup 1.25.4-canary.99eacfd.0 → 1.25.4

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,7 +3,7 @@
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
- ## [1.25.4-canary.99eacfd.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/soundgroup@1.25.3...@quenty/soundgroup@1.25.4-canary.99eacfd.0) (2025-12-12)
6
+ ## [1.25.4](https://github.com/Quenty/NevermoreEngine/compare/@quenty/soundgroup@1.25.3...@quenty/soundgroup@1.25.4) (2025-12-28)
7
7
 
8
8
  **Note:** Version bump only for package @quenty/soundgroup
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/soundgroup",
3
- "version": "1.25.4-canary.99eacfd.0",
3
+ "version": "1.25.4",
4
4
  "description": "Service and utility methods to working with sound groups and sounds in Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,20 +25,20 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/baseobject": "10.9.0",
29
- "@quenty/brio": "14.20.1",
30
- "@quenty/counter": "7.21.4-canary.99eacfd.0",
31
- "@quenty/instanceutils": "13.20.2",
32
- "@quenty/loader": "10.9.0",
33
- "@quenty/maid": "3.5.0",
34
- "@quenty/observablecollection": "12.24.2",
35
- "@quenty/rx": "13.20.0",
36
- "@quenty/signal": "7.11.1",
37
- "@quenty/table": "3.8.0",
38
- "@quenty/valueobject": "13.21.2"
28
+ "@quenty/baseobject": "^10.9.0",
29
+ "@quenty/brio": "^14.20.1",
30
+ "@quenty/counter": "^7.21.4",
31
+ "@quenty/instanceutils": "^13.20.2",
32
+ "@quenty/loader": "^10.9.0",
33
+ "@quenty/maid": "^3.5.0",
34
+ "@quenty/observablecollection": "^12.24.3",
35
+ "@quenty/rx": "^13.20.0",
36
+ "@quenty/signal": "^7.11.1",
37
+ "@quenty/table": "^3.8.0",
38
+ "@quenty/valueobject": "^13.21.3"
39
39
  },
40
40
  "publishConfig": {
41
41
  "access": "public"
42
42
  },
43
- "gitHead": "99eacfd66c3484684fb82fb4655c76afb85c5f81"
43
+ "gitHead": "821c9336020dfbcf5cd2f67f2dfe61624233ee06"
44
44
  }
@@ -23,17 +23,19 @@ SoundEffectsList.__index = SoundEffectsList
23
23
 
24
24
  export type SoundEffectApplier = (SoundGroup | Sound) -> MaidTaskUtils.MaidTask?
25
25
 
26
- export type SoundEffectsList = typeof(setmetatable(
27
- {} :: {
28
- _effectList: ObservableList.ObservableList<SoundEffectApplier>,
29
- _appliedCount: Counter.Counter,
30
- _isActive: ValueObject.ValueObject<boolean>,
31
- _hasEffects: ValueObject.ValueObject<boolean>,
32
- IsActiveChanged: Signal.Signal<boolean>,
33
- HasEffects: () -> boolean,
34
- },
35
- {} :: typeof({ __index = SoundEffectsList })
36
- )) & BaseObject.BaseObject
26
+ export type SoundEffectsList =
27
+ typeof(setmetatable(
28
+ {} :: {
29
+ _effectList: ObservableList.ObservableList<SoundEffectApplier>,
30
+ _appliedCount: Counter.Counter,
31
+ _isActive: ValueObject.ValueObject<boolean>,
32
+ _hasEffects: ValueObject.ValueObject<boolean>,
33
+ IsActiveChanged: Signal.Signal<boolean>,
34
+ HasEffects: () -> boolean,
35
+ },
36
+ {} :: typeof({ __index = SoundEffectsList })
37
+ ))
38
+ & BaseObject.BaseObject
37
39
 
38
40
  function SoundEffectsList.new(): SoundEffectsList
39
41
  local self: SoundEffectsList = setmetatable(BaseObject.new() :: any, SoundEffectsList)
@@ -21,13 +21,15 @@ local SoundEffectsRegistry = setmetatable({}, BaseObject)
21
21
  SoundEffectsRegistry.ClassName = "SoundEffectsRegistry"
22
22
  SoundEffectsRegistry.__index = SoundEffectsRegistry
23
23
 
24
- export type SoundEffectsRegistry = typeof(setmetatable(
25
- {} :: {
26
- _pathToEffectList: ObservableMap.ObservableMap<string, SoundEffectsList.SoundEffectsList>,
27
- _activeEffectsPathSet: ObservableSet.ObservableSet<string>,
28
- },
29
- {} :: typeof({ __index = SoundEffectsRegistry })
30
- )) & BaseObject.BaseObject
24
+ export type SoundEffectsRegistry =
25
+ typeof(setmetatable(
26
+ {} :: {
27
+ _pathToEffectList: ObservableMap.ObservableMap<string, SoundEffectsList.SoundEffectsList>,
28
+ _activeEffectsPathSet: ObservableSet.ObservableSet<string>,
29
+ },
30
+ {} :: typeof({ __index = SoundEffectsRegistry })
31
+ ))
32
+ & BaseObject.BaseObject
31
33
 
32
34
  function SoundEffectsRegistry.new(): SoundEffectsRegistry
33
35
  local self: SoundEffectsRegistry = setmetatable(BaseObject.new() :: any, SoundEffectsRegistry)
@@ -18,13 +18,15 @@ local SoundGroupTracker = setmetatable({}, BaseObject)
18
18
  SoundGroupTracker.ClassName = "SoundGroupTracker"
19
19
  SoundGroupTracker.__index = SoundGroupTracker
20
20
 
21
- export type SoundGroupTracker = typeof(setmetatable(
22
- {} :: {
23
- _pathToSoundGroupList: ObservableMapList.ObservableMapList<string, SoundGroup>,
24
- _soundGroupToPath: ObservableMap.ObservableMap<SoundGroup, string>,
25
- },
26
- {} :: typeof({ __index = SoundGroupTracker })
27
- )) & BaseObject.BaseObject
21
+ export type SoundGroupTracker =
22
+ typeof(setmetatable(
23
+ {} :: {
24
+ _pathToSoundGroupList: ObservableMapList.ObservableMapList<string, SoundGroup>,
25
+ _soundGroupToPath: ObservableMap.ObservableMap<SoundGroup, string>,
26
+ },
27
+ {} :: typeof({ __index = SoundGroupTracker })
28
+ ))
29
+ & BaseObject.BaseObject
28
30
 
29
31
  function SoundGroupTracker.new(root): SoundGroupTracker
30
32
  local self: SoundGroupTracker = setmetatable(BaseObject.new() :: any, SoundGroupTracker)