@quenty/screenshothudservice 7.19.0-canary.559.b31717d.0 → 7.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 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
- # [7.19.0-canary.559.b31717d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/screenshothudservice@7.18.3...@quenty/screenshothudservice@7.19.0-canary.559.b31717d.0) (2025-05-10)
6
+ # [7.19.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/screenshothudservice@7.18.3...@quenty/screenshothudservice@7.19.0) (2025-05-10)
7
7
 
8
8
 
9
9
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/screenshothudservice",
3
- "version": "7.19.0-canary.559.b31717d.0",
3
+ "version": "7.19.0",
4
4
  "description": "Provides centralized API surface for screenshot hud API",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,20 +25,20 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/baseobject": "10.8.3",
29
- "@quenty/brio": "14.18.0-canary.559.b31717d.0",
30
- "@quenty/instanceutils": "13.18.0-canary.559.b31717d.0",
31
- "@quenty/loader": "10.8.3",
32
- "@quenty/maid": "3.4.3",
33
- "@quenty/promise": "10.11.0-canary.559.b31717d.0",
34
- "@quenty/rx": "13.18.0-canary.559.b31717d.0",
35
- "@quenty/servicebag": "11.12.0-canary.559.b31717d.0",
36
- "@quenty/signal": "7.10.3",
37
- "@quenty/statestack": "14.19.0-canary.559.b31717d.0",
38
- "@quenty/valueobject": "13.18.0-canary.559.b31717d.0"
28
+ "@quenty/baseobject": "^10.9.0",
29
+ "@quenty/brio": "^14.18.0",
30
+ "@quenty/instanceutils": "^13.18.0",
31
+ "@quenty/loader": "^10.9.0",
32
+ "@quenty/maid": "^3.5.0",
33
+ "@quenty/promise": "^10.11.0",
34
+ "@quenty/rx": "^13.18.0",
35
+ "@quenty/servicebag": "^11.12.0",
36
+ "@quenty/signal": "^7.11.0",
37
+ "@quenty/statestack": "^14.19.0",
38
+ "@quenty/valueobject": "^13.18.0"
39
39
  },
40
40
  "publishConfig": {
41
41
  "access": "public"
42
42
  },
43
- "gitHead": "b31717d8c9f7620c457f5018a2affa760a65334a"
43
+ "gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
44
44
  }
@@ -6,9 +6,9 @@
6
6
  local require = require(script.Parent.loader).load(script)
7
7
 
8
8
  local BaseObject = require("BaseObject")
9
- local ValueObject = require("ValueObject")
10
- local Signal = require("Signal")
11
9
  local Observable = require("Observable")
10
+ local Signal = require("Signal")
11
+ local ValueObject = require("ValueObject")
12
12
 
13
13
  local ScreenshotHudModel = setmetatable({}, BaseObject)
14
14
  ScreenshotHudModel.ClassName = "ScreenshotHudModel"
@@ -277,4 +277,4 @@ function ScreenshotHudModel.InternalFireClosedRequested(self: ScreenshotHudModel
277
277
  self.CloseRequested:Fire()
278
278
  end
279
279
 
280
- return ScreenshotHudModel
280
+ return ScreenshotHudModel
@@ -7,11 +7,11 @@ local require = require(script.Parent.loader).load(script)
7
7
  local GuiService = game:GetService("GuiService")
8
8
 
9
9
  local Maid = require("Maid")
10
- local RxInstanceUtils = require("RxInstanceUtils")
11
- local StateStack = require("StateStack")
12
10
  local Rx = require("Rx")
13
11
  local RxBrioUtils = require("RxBrioUtils")
12
+ local RxInstanceUtils = require("RxInstanceUtils")
14
13
  local ServiceBag = require("ServiceBag")
14
+ local StateStack = require("StateStack")
15
15
 
16
16
  local ScreenshotHudServiceClient = {}
17
17
  ScreenshotHudServiceClient.ServiceName = "ScreenshotHudServiceClient"
@@ -57,8 +57,8 @@ end
57
57
 
58
58
  function ScreenshotHudServiceClient:_bindModelToHUD(maid: Maid.Maid, model, screenshotHUD)
59
59
  maid:GiveTask(Rx.combineLatest({
60
- visible = model:ObserveCloseButtonVisible();
61
- position = model:ObserveCloseButtonPosition();
60
+ visible = model:ObserveCloseButtonVisible(),
61
+ position = model:ObserveCloseButtonPosition(),
62
62
  }):Subscribe(function(state)
63
63
  if state.visible then
64
64
  screenshotHUD.CloseButtonPosition = state.position
@@ -70,8 +70,8 @@ function ScreenshotHudServiceClient:_bindModelToHUD(maid: Maid.Maid, model, scre
70
70
 
71
71
  -- I'm not sure why you would do this, but it's here
72
72
  maid:GiveTask(Rx.combineLatest({
73
- visible = model:ObserveCameraButtonVisible();
74
- position = model:ObserveCameraButtonPosition();
73
+ visible = model:ObserveCameraButtonVisible(),
74
+ position = model:ObserveCameraButtonPosition(),
75
75
  }):Subscribe(function(state)
76
76
  if state.visible then
77
77
  screenshotHUD.CameraButtonPosition = state.position
@@ -139,4 +139,4 @@ function ScreenshotHudServiceClient:Destroy()
139
139
  self._maid:DoCleaning()
140
140
  end
141
141
 
142
- return ScreenshotHudServiceClient
142
+ return ScreenshotHudServiceClient
@@ -26,4 +26,4 @@ maid:GiveTask(hudService:PushModel(screenshotHudModel))
26
26
 
27
27
  maid:GiveTask(screenshotHudModel.CloseRequested:Connect(function()
28
28
  maid:DoCleaning()
29
- end))
29
+ end))
@@ -6,4 +6,3 @@ local ServerScriptService = game:GetService("ServerScriptService")
6
6
 
7
7
  local loader = ServerScriptService:FindFirstChild("LoaderUtils", true).Parent
8
8
  require(loader).bootstrapGame(ServerScriptService.screenshothudservice)
9
-