com.robotsquid.squidhub 0.5.3 → 0.5.4
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 +19 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.5.4
|
|
4
|
+
|
|
5
|
+
**No functional change from 0.5.3.**
|
|
6
|
+
|
|
7
|
+
Published to supersede an accidental blanket deprecation: `npm deprecate` was
|
|
8
|
+
run without a version specifier, which marks *every* published version rather
|
|
9
|
+
than one, so 0.5.0 through 0.5.3 all carry npm's generic "Package no longer
|
|
10
|
+
supported" text — including the version people should have been installing.
|
|
11
|
+
|
|
12
|
+
Deprecation is per-version and there is no package-level flag, so a new release
|
|
13
|
+
is undeprecated by definition. ⚠️ The older versions keep their misleading
|
|
14
|
+
marking; three of them ought to be deprecated anyway (0.5.0 ships no root
|
|
15
|
+
`.meta` files, 0.5.1 predates the uncompressed-upload model, 0.5.2 rewrites
|
|
16
|
+
compressed asset URLs for a hosting model that no longer exists), just not for
|
|
17
|
+
the reason the text gives.
|
|
18
|
+
|
|
19
|
+
⚠️ **`npm deprecate <package>` with no `@version` applies to everything.** Always
|
|
20
|
+
write `npm deprecate <package>@<version>`.
|
|
21
|
+
|
|
3
22
|
## 0.5.3
|
|
4
23
|
|
|
5
24
|
**Compressed builds are now refused in the Editor**, with a message naming the
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "com.robotsquid.squidhub",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.4",
|
|
4
4
|
"displayName": "SquidHub",
|
|
5
5
|
"description": "Cloud saves, analytics and the coin economy for Unity WebGL games published on SquidHub. Installs the C# wrapper, the .jslib half and the page bridge, and rewrites the exported index.html so it survives the platform's CSP.",
|
|
6
6
|
"unity": "2021.3",
|