@quenty/datastore 7.2.1 → 7.3.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,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.3.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/datastore@7.2.1...@quenty/datastore@7.3.0) (2022-11-08)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/datastore
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [7.2.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/datastore@7.2.0...@quenty/datastore@7.2.1) (2022-11-04)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @quenty/datastore
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/datastore",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.3.0",
|
|
4
4
|
"description": "Quenty's Datastore implementation for Roblox",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"publishConfig": {
|
|
39
39
|
"access": "public"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "3432599d8ed7bf7f0436d7cd5495925543450117"
|
|
42
42
|
}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
--[=[
|
|
2
2
|
DataStore manager for player that automatically saves on player leave and game close. Consider using
|
|
3
|
-
[PlayerDataStoreService] instead.
|
|
3
|
+
[PlayerDataStoreService] instead, which wraps one PlayerDataStoreManager.
|
|
4
|
+
|
|
5
|
+
This will ensure that the datastores are reused between different services and other things integrating
|
|
6
|
+
with Nevermore.
|
|
4
7
|
|
|
5
8
|
@server
|
|
6
9
|
@class PlayerDataStoreManager
|