@quenty/elo 7.23.0 → 7.23.1

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,14 @@
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.23.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/elo@7.23.0...@quenty/elo@7.23.1) (2025-11-12)
7
+
8
+ **Note:** Version bump only for package @quenty/elo
9
+
10
+
11
+
12
+
13
+
6
14
  # [7.23.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/elo@7.22.0...@quenty/elo@7.23.0) (2025-10-08)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/elo
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/elo",
3
- "version": "7.23.0",
3
+ "version": "7.23.1",
4
4
  "description": "Elo rating utility library.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -29,12 +29,12 @@
29
29
  "access": "public"
30
30
  },
31
31
  "devDependencies": {
32
- "@quenty/blend": "^12.22.0",
32
+ "@quenty/blend": "^12.22.1",
33
33
  "@quenty/loader": "^10.9.0",
34
34
  "@quenty/maid": "^3.5.0"
35
35
  },
36
36
  "dependencies": {
37
37
  "@quenty/probability": "^2.3.1"
38
38
  },
39
- "gitHead": "d396d6f77d25ba25f1f45bbc252216131f88eeed"
39
+ "gitHead": "f14f6bf0f8ca2b041c70ed27b68ad385a76e6164"
40
40
  }
@@ -28,7 +28,7 @@ end
28
28
  local function MatchResultCard(props)
29
29
  return Blend.New "Frame" {
30
30
  Name = "MatchResultCard",
31
- Size = UDim2.new(0, 140, 0, 0),
31
+ Size = UDim2.fromOffset(140, 0),
32
32
  AutomaticSize = Enum.AutomaticSize.Y,
33
33
  BackgroundTransparency = 1,
34
34
 
@@ -63,7 +63,7 @@ local function MatchResultCard(props)
63
63
  return Color3.fromRGB(103, 39, 39)
64
64
  end
65
65
  end),
66
- Size = UDim2.new(0, 60, 0, 30),
66
+ Size = UDim2.fromOffset(60, 30),
67
67
 
68
68
  Blend.New "UICorner" {
69
69
  CornerRadius = UDim.new(0.5, 0),
@@ -103,7 +103,7 @@ local function PlayerScoreChange(props)
103
103
 
104
104
  return Blend.New "Frame" {
105
105
  Name = "PlayerScoreChange",
106
- Size = UDim2.new(0, 0, 0, 0),
106
+ Size = UDim2.fromScale(0, 0),
107
107
  AutomaticSize = Enum.AutomaticSize.XY,
108
108
  BackgroundColor3 = Color3.new(0.9, 0.9, 0.9),
109
109
  BackgroundTransparency = 0,
@@ -144,7 +144,7 @@ local function PlayerScoreChange(props)
144
144
 
145
145
  Blend.New "Frame" {
146
146
  Name = "MatchResults",
147
- Size = UDim2.new(0, 90, 0, 40),
147
+ Size = UDim2.fromOffset(90, 40),
148
148
  BackgroundColor3 = Color3.fromRGB(185, 185, 185),
149
149
 
150
150
  Blend.New "UICorner" {
@@ -242,7 +242,7 @@ local function EloGroup(props)
242
242
 
243
243
  Blend.New "Frame" {
244
244
  Name = "Header",
245
- Size = UDim2.new(0, 200, 0, 30),
245
+ Size = UDim2.fromOffset(200, 30),
246
246
  AnchorPoint = Vector2.new(0.5, 0.5),
247
247
  Position = UDim2.fromScale(0.5, 0),
248
248
  BackgroundColor3 = Color3.new(0.1, 0.1, 0.1),
@@ -317,7 +317,7 @@ return function(target)
317
317
  TextLabel({
318
318
  TextColor3 = Color3.new(1, 1, 1),
319
319
  Text = matchResultType,
320
- Size = UDim2.new(0, 100, 0, 30),
320
+ Size = UDim2.fromOffset(100, 30),
321
321
  })
322
322
  )
323
323
 
@@ -355,9 +355,9 @@ return function(target)
355
355
 
356
356
  maid:GiveTask(Blend.mount(target, {
357
357
  Blend.New "ScrollingFrame" {
358
- Size = UDim2.new(1, 0, 1, 0),
358
+ Size = UDim2.fromScale(1, 1),
359
359
  BackgroundTransparency = 1,
360
- CanvasSize = UDim2.new(0, 0, 0, 0),
360
+ CanvasSize = UDim2.fromScale(0, 0),
361
361
  AutomaticCanvasSize = Enum.AutomaticSize.Y,
362
362
 
363
363
  Blend.New "UIPadding" {