@quenty/softshutdown 1.4.1 → 2.0.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
+ # [2.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/softshutdown@1.4.1...@quenty/softshutdown@2.0.0) (2022-08-14)
7
+
8
+
9
+ ### Features
10
+
11
+ * Add ServiceName to most services for faster debugging ([39fc3f4](https://github.com/Quenty/NevermoreEngine/commit/39fc3f4f2beb92fff49b2264424e07af7907324e))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [1.4.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/softshutdown@1.4.0...@quenty/softshutdown@1.4.1) (2022-08-11)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/softshutdown
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/softshutdown",
3
- "version": "1.4.1",
3
+ "version": "2.0.0",
4
4
  "description": "This service lets you shut down servers without losing a bunch of players. When game.OnClose is called, the script teleports everyone in the server into a reserved server.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -29,22 +29,22 @@
29
29
  "access": "public"
30
30
  },
31
31
  "dependencies": {
32
- "@quenty/attributeutils": "^6.2.0",
32
+ "@quenty/attributeutils": "^7.0.0",
33
33
  "@quenty/baseobject": "^5.1.0",
34
- "@quenty/basicpane": "^5.2.0",
35
- "@quenty/blend": "^4.3.1",
36
- "@quenty/clienttranslator": "^6.3.1",
37
- "@quenty/datastore": "^5.3.0",
34
+ "@quenty/basicpane": "^6.0.0",
35
+ "@quenty/blend": "^5.0.0",
36
+ "@quenty/clienttranslator": "^7.0.0",
37
+ "@quenty/datastore": "^6.0.0",
38
38
  "@quenty/loader": "^5.0.0",
39
39
  "@quenty/maid": "^2.4.0",
40
40
  "@quenty/math": "^2.2.0",
41
41
  "@quenty/promise": "^5.1.0",
42
- "@quenty/rx": "^5.2.0",
42
+ "@quenty/rx": "^6.0.0",
43
43
  "@quenty/servicebag": "^5.1.0",
44
44
  "@quenty/table": "^3.1.0",
45
45
  "@quenty/teleportserviceutils": "^2.2.0",
46
46
  "@quenty/uiobjectutils": "^2.1.0",
47
- "@quenty/valuebaseutils": "^5.2.1"
47
+ "@quenty/valuebaseutils": "^6.0.0"
48
48
  },
49
- "gitHead": "45ffe88b893e29690163a42c3830c983f6098a59"
49
+ "gitHead": "dbb62609f980983cc32da90acfef13e30ed41113"
50
50
  }
@@ -19,6 +19,7 @@ local SoftShutdownUI = require("SoftShutdownUI")
19
19
  local RxValueBaseUtils = require("RxValueBaseUtils")
20
20
 
21
21
  local SoftShutdownServiceClient = {}
22
+ SoftShutdownServiceClient.ServiceName = "SoftShutdownServiceClient"
22
23
 
23
24
  local DISABLE_CORE_GUI_TYPES = {
24
25
  Enum.CoreGuiType.PlayerList;
@@ -4,7 +4,7 @@
4
4
 
5
5
  local require = require(script.Parent.loader).load(script)
6
6
 
7
- return require("JSONTranslator").new("en", {
7
+ return require("JSONTranslator").new("SoftShutdownTranslator", "en", {
8
8
  shutdown = {
9
9
  lobby = {
10
10
  title = "Rebooting servers for update.";
@@ -28,6 +28,7 @@ local SoftShutdownConstants = require("SoftShutdownConstants")
28
28
  local TeleportServiceUtils = require("TeleportServiceUtils")
29
29
 
30
30
  local SoftShutdownService = {}
31
+ SoftShutdownService.ServiceName = "SoftShutdownService"
31
32
 
32
33
  function SoftShutdownService:Init()
33
34
  self._dataStore = DataStoreService:GetDataStore("IsSoftShutdownServer")