@quenty/textserviceutils 7.9.0 → 7.10.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 +11 -0
- package/package.json +6 -6
- package/src/Shared/TextServiceUtils.lua +3 -1
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
|
+
# [7.10.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/textserviceutils@7.9.0...@quenty/textserviceutils@7.10.0) (2023-02-21)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Suppress warnings while cancelling ([2f49c88](https://github.com/Quenty/NevermoreEngine/commit/2f49c88e604b679251ae4e412ea845bc9c15e398))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [7.9.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/textserviceutils@7.8.0...@quenty/textserviceutils@7.9.0) (2023-01-17)
|
|
7
18
|
|
|
8
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/textserviceutils",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.10.0",
|
|
4
4
|
"description": "Holds utilities involving the Roblox TextService and text fitting to size.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"access": "public"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@quenty/blend": "^6.
|
|
34
|
-
"@quenty/loader": "^6.0
|
|
35
|
-
"@quenty/promise": "^6.0
|
|
36
|
-
"@quenty/rx": "^7.
|
|
33
|
+
"@quenty/blend": "^6.8.0",
|
|
34
|
+
"@quenty/loader": "^6.1.0",
|
|
35
|
+
"@quenty/promise": "^6.1.0",
|
|
36
|
+
"@quenty/rx": "^7.5.0"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "e084b0cc097ddbcb7c782b8ecbd9c2d619c49354"
|
|
39
39
|
}
|
|
@@ -70,7 +70,9 @@ local function startQueueProcess()
|
|
|
70
70
|
local ok = promiseTimeoutOrDone:Yield()
|
|
71
71
|
|
|
72
72
|
-- Cancel our delayed task
|
|
73
|
-
|
|
73
|
+
pcall(function()
|
|
74
|
+
task.cancel(pendingTask)
|
|
75
|
+
end)
|
|
74
76
|
|
|
75
77
|
if not ok then
|
|
76
78
|
warn("[TextServiceUtils] - Requeuing entry")
|