@minecraft-docker/mcctl 1.7.10 → 1.7.11

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
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.7.11] - 2026-02-04
9
+
10
+ ### Fixed
11
+ - **World size calculation** - Check LEVEL config before WORLD_NAME for correct world directory resolution
12
+ - itzg/minecraft-server uses LEVEL to specify the world directory name
13
+ - Servers configured with LEVEL (like Wild-Deity) were showing "0 B" for world size
14
+ - Now properly checks LEVEL first, then falls back to WORLD_NAME
15
+
8
16
  ## [1.7.10] - 2026-02-04
9
17
 
10
18
  ### Added
package/README.md CHANGED
@@ -73,6 +73,10 @@ mcctl logs myserver
73
73
 
74
74
  ## Changelog
75
75
 
76
+ ### v1.7.11 (2026-02-04)
77
+ - **fix(shared)**: Check LEVEL config before WORLD_NAME for world size calculation
78
+ - Fixes servers using LEVEL config showing "0 B" for world size
79
+
76
80
  ### v1.7.10 (2026-02-04)
77
81
  - **feat(console)**: Add ANSI color support for console logs
78
82
  - **feat(console)**: Add loading indicator with nprogress
@@ -93,9 +97,6 @@ mcctl logs myserver
93
97
  ### v1.7.6 (2026-01-31)
94
98
  - **feat(mcctl-api)**: First npm release of REST API package
95
99
 
96
- ### v1.7.5 (2026-01-31)
97
- - **fix**: Resolve Edge runtime error in mcctl-console middleware (#201)
98
-
99
100
  [Full Changelog](https://github.com/smallmiro/minecraft-server-manager/releases)
100
101
 
101
102
  ## AI Assistant
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@minecraft-docker/mcctl",
3
- "version": "1.7.10",
3
+ "version": "1.7.11",
4
4
  "description": "CLI tool for managing Docker Minecraft servers with mc-router",
5
5
  "type": "module",
6
6
  "bin": {
@@ -55,8 +55,8 @@
55
55
  ],
56
56
  "dependencies": {
57
57
  "@clack/prompts": "^0.8.0",
58
- "@minecraft-docker/mod-source-modrinth": "^1.7.10",
59
- "@minecraft-docker/shared": "^1.7.10",
58
+ "@minecraft-docker/mod-source-modrinth": "^1.7.11",
59
+ "@minecraft-docker/shared": "^1.7.11",
60
60
  "commander": "^12.0.0",
61
61
  "js-yaml": "^4.1.0",
62
62
  "picocolors": "^1.1.0",