@quenty/cmdrservice 13.1.0 → 13.2.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 +4 -4
- package/src/Client/CmdrServiceClient.lua +8 -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
|
+
# [13.2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/cmdrservice@13.1.0...@quenty/cmdrservice@13.2.0) (2024-03-27)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* Update avatar editor stuff ([16d10a8](https://github.com/Quenty/NevermoreEngine/commit/16d10a876c90d3b43d69b5f66e217e4c3749296b))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [13.1.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/cmdrservice@13.0.0...@quenty/cmdrservice@13.1.0) (2024-03-09)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/cmdrservice
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/cmdrservice",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.2.0",
|
|
4
4
|
"description": "Bridge between cmdr and Nevermore services using servicebag",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@quenty/loader": "^10.1.0",
|
|
29
29
|
"@quenty/maid": "^3.1.0",
|
|
30
|
-
"@quenty/permissionprovider": "^14.
|
|
30
|
+
"@quenty/permissionprovider": "^14.2.0",
|
|
31
31
|
"@quenty/promise": "^10.1.0",
|
|
32
|
-
"@quenty/remoting": "^12.
|
|
32
|
+
"@quenty/remoting": "^12.2.0",
|
|
33
33
|
"@quenty/servicebag": "^11.1.0",
|
|
34
34
|
"@quenty/string": "^3.1.0",
|
|
35
35
|
"@quenty/templateprovider": "^11.1.0",
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"publishConfig": {
|
|
39
39
|
"access": "public"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "ab3631a54c4e8d448b4229c7e422a9c7f43c0dd7"
|
|
42
42
|
}
|
|
@@ -9,6 +9,7 @@ local require = require(script.Parent.loader).load(script)
|
|
|
9
9
|
|
|
10
10
|
local ReplicatedStorage = game:GetService("ReplicatedStorage")
|
|
11
11
|
local Players = game:GetService("Players")
|
|
12
|
+
local RunService = game:GetService("RunService")
|
|
12
13
|
|
|
13
14
|
local Maid = require("Maid")
|
|
14
15
|
local PermissionServiceClient = require("PermissionServiceClient")
|
|
@@ -124,7 +125,13 @@ function CmdrServiceClient:PromiseCmdr()
|
|
|
124
125
|
return self._cmdrPromise
|
|
125
126
|
end
|
|
126
127
|
|
|
127
|
-
|
|
128
|
+
-- Suppress warning in test mode for hoarcekat
|
|
129
|
+
local timeout = nil
|
|
130
|
+
if not RunService:IsRunning() then
|
|
131
|
+
timeout = 1e10
|
|
132
|
+
end
|
|
133
|
+
|
|
134
|
+
self._cmdrPromise = self._maid:GivePromise(promiseChild(ReplicatedStorage, "CmdrClient", timeout))
|
|
128
135
|
:Then(function(cmdClient)
|
|
129
136
|
return Promise.spawn(function(resolve, _reject)
|
|
130
137
|
-- Requiring cmdr can yield
|