@quenty/gamescalingutils 13.19.0-canary.559.b31717d.0 → 13.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
- # [13.19.0-canary.559.b31717d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/gamescalingutils@13.18.3...@quenty/gamescalingutils@13.19.0-canary.559.b31717d.0) (2025-05-10)
6
+ # [13.19.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/gamescalingutils@13.18.3...@quenty/gamescalingutils@13.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/gamescalingutils",
3
- "version": "13.19.0-canary.559.b31717d.0",
3
+ "version": "13.19.0",
4
4
  "description": "Scale ratios for the UI on different devices",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -28,12 +28,12 @@
28
28
  "access": "public"
29
29
  },
30
30
  "dependencies": {
31
- "@quenty/baseobject": "10.8.3",
32
- "@quenty/blend": "12.19.0-canary.559.b31717d.0",
33
- "@quenty/instanceutils": "13.18.0-canary.559.b31717d.0",
34
- "@quenty/loader": "10.8.3",
35
- "@quenty/rx": "13.18.0-canary.559.b31717d.0",
36
- "@quenty/valueobject": "13.18.0-canary.559.b31717d.0"
31
+ "@quenty/baseobject": "^10.9.0",
32
+ "@quenty/blend": "^12.19.0",
33
+ "@quenty/instanceutils": "^13.18.0",
34
+ "@quenty/loader": "^10.9.0",
35
+ "@quenty/rx": "^13.18.0",
36
+ "@quenty/valueobject": "^13.18.0"
37
37
  },
38
- "gitHead": "b31717d8c9f7620c457f5018a2affa760a65334a"
38
+ "gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
39
39
  }
@@ -6,10 +6,10 @@
6
6
  local require = require(script.Parent.loader).load(script)
7
7
 
8
8
  local BaseObject = require("BaseObject")
9
+ local Observable = require("Observable")
9
10
  local Rx = require("Rx")
10
11
  local RxInstanceUtils = require("RxInstanceUtils")
11
12
  local ValueObject = require("ValueObject")
12
- local Observable = require("Observable")
13
13
 
14
14
  local GameScalingHelper = setmetatable({}, BaseObject)
15
15
  GameScalingHelper.ClassName = "GameScalingHelper"
@@ -102,4 +102,4 @@ function GameScalingHelper.SetScreenGui(self: GameScalingHelper, screenGui: Scre
102
102
  return self:SetAbsoluteSize(RxInstanceUtils.observeProperty(screenGui, "AbsoluteSize"))
103
103
  end
104
104
 
105
- return GameScalingHelper
105
+ return GameScalingHelper
@@ -9,9 +9,9 @@ local require = require(script.Parent.loader).load(script)
9
9
  local GuiService = game:GetService("GuiService")
10
10
 
11
11
  local Blend = require("Blend")
12
+ local Observable = require("Observable")
12
13
  local Rx = require("Rx")
13
14
  local RxInstanceUtils = require("RxInstanceUtils")
14
- local Observable = require("Observable")
15
15
 
16
16
  local GameScalingUtils = {}
17
17
 
@@ -149,4 +149,4 @@ function GameScalingUtils.getDialogPadding(screenAbsoluteSize: Vector2): number
149
149
  end
150
150
  end
151
151
 
152
- return GameScalingUtils
152
+ return GameScalingUtils