@quenty/playerutils 8.5.0 → 8.5.1-canary.497.2df557a.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,6 +3,17 @@
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
+ ## [8.5.1-canary.497.2df557a.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/playerutils@8.5.0...@quenty/playerutils@8.5.1-canary.497.2df557a.0) (2024-09-20)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Rename `:upper()` to `string.upper` ([2df557a](https://github.com/Quenty/NevermoreEngine/commit/2df557a9a5463c2c7beb257ff9f7786ac8ad746a))
12
+
13
+
14
+
15
+
16
+
6
17
  # [8.5.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/playerutils@8.4.0...@quenty/playerutils@8.5.0) (2024-09-12)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/playerutils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/playerutils",
3
- "version": "8.5.0",
3
+ "version": "8.5.1-canary.497.2df557a.0",
4
4
  "description": "Player utility functions",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -28,12 +28,12 @@
28
28
  "access": "public"
29
29
  },
30
30
  "dependencies": {
31
- "@quenty/brio": "^14.5.0",
32
- "@quenty/instanceutils": "^13.5.0",
33
- "@quenty/loader": "^10.4.0",
34
- "@quenty/maid": "^3.3.0",
35
- "@quenty/promise": "^10.4.0",
36
- "@quenty/rx": "^13.5.0"
31
+ "@quenty/brio": "14.5.1-canary.497.2df557a.0",
32
+ "@quenty/instanceutils": "13.5.1-canary.497.2df557a.0",
33
+ "@quenty/loader": "10.4.1-canary.497.2df557a.0",
34
+ "@quenty/maid": "3.3.0",
35
+ "@quenty/promise": "10.4.1-canary.497.2df557a.0",
36
+ "@quenty/rx": "13.5.1-canary.497.2df557a.0"
37
37
  },
38
- "gitHead": "fb172906f3ee725269ec1e5f4daf9dca227e729d"
38
+ "gitHead": "2df557a9a5463c2c7beb257ff9f7786ac8ad746a"
39
39
  }
@@ -43,10 +43,10 @@ end
43
43
  @return string -- Formatted name
44
44
  ]=]
45
45
  function PlayerUtils.formatDisplayName(name, displayName)
46
- if name:lower() == displayName:lower() then
46
+ if string.lower(name) == string.lower(displayName) then
47
47
  return displayName
48
48
  else
49
- return ("%s (@%s)"):format(displayName, name)
49
+ return string.format("%s (@%s)", displayName, name)
50
50
  end
51
51
  end
52
52
 
@@ -131,4 +131,4 @@ function PlayerUtils.promiseLoadCharacterWithHumanoidDescription(player, humanoi
131
131
  end)
132
132
  end
133
133
 
134
- return PlayerUtils
134
+ return PlayerUtils