playcademy 0.14.5 → 0.14.6
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/dist/constants/src/overworld.ts +5 -2
- package/dist/index.js +1 -1
- package/dist/utils.js +1 -1
- package/dist/version.js +1 -1
- package/package.json +2 -2
|
@@ -10,10 +10,13 @@
|
|
|
10
10
|
// ═══════════════════════════════════════════════════════════════════════
|
|
11
11
|
|
|
12
12
|
/**
|
|
13
|
-
* Minimum viewport dimensions for the game
|
|
13
|
+
* Minimum viewport dimensions for the game.
|
|
14
|
+
*
|
|
15
|
+
* Height reduced from 640px to 600px to accommodate devices with taskbars
|
|
16
|
+
* (e.g., Chromebooks in school deployments that showed 632px viewport).
|
|
14
17
|
*/
|
|
15
18
|
export const MIN_VIEWPORT_WIDTH = 960
|
|
16
|
-
export const MIN_VIEWPORT_HEIGHT =
|
|
19
|
+
export const MIN_VIEWPORT_HEIGHT = 600
|
|
17
20
|
|
|
18
21
|
/**
|
|
19
22
|
* Maximum player level
|
package/dist/index.js
CHANGED
package/dist/utils.js
CHANGED
package/dist/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "playcademy",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@inquirer/prompts": "^7.8.6",
|
|
47
|
-
"@playcademy/sdk": "0.1.
|
|
47
|
+
"@playcademy/sdk": "0.1.15",
|
|
48
48
|
"chokidar": "^4.0.3",
|
|
49
49
|
"colorette": "^2.0.20",
|
|
50
50
|
"commander": "^14.0.1",
|