@minecraft-docker/mcctl 1.7.10 → 1.7.12
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 +14 -0
- package/README.md +8 -6
- package/package.json +3 -3
- package/scripts/create-server.sh +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,20 @@ 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.12] - 2026-02-05
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **TEMPLATE_DIR path duplication** - Correct TEMPLATE_DIR path in create-server.sh that caused duplicate directory segments (#230)
|
|
12
|
+
- **API error reporting** - Improve error reporting for server creation script failures with stderr capture (#230)
|
|
13
|
+
|
|
14
|
+
## [1.7.11] - 2026-02-04
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
- **World size calculation** - Check LEVEL config before WORLD_NAME for correct world directory resolution
|
|
18
|
+
- itzg/minecraft-server uses LEVEL to specify the world directory name
|
|
19
|
+
- Servers configured with LEVEL (like Wild-Deity) were showing "0 B" for world size
|
|
20
|
+
- Now properly checks LEVEL first, then falls back to WORLD_NAME
|
|
21
|
+
|
|
8
22
|
## [1.7.10] - 2026-02-04
|
|
9
23
|
|
|
10
24
|
### Added
|
package/README.md
CHANGED
|
@@ -73,6 +73,14 @@ mcctl logs myserver
|
|
|
73
73
|
|
|
74
74
|
## Changelog
|
|
75
75
|
|
|
76
|
+
### v1.7.12 (2026-02-05)
|
|
77
|
+
- **fix(scripts)**: Correct TEMPLATE_DIR path duplication in create-server.sh (#230)
|
|
78
|
+
- **fix(api)**: Improve error reporting for server creation script failures (#230)
|
|
79
|
+
|
|
80
|
+
### v1.7.11 (2026-02-04)
|
|
81
|
+
- **fix(shared)**: Check LEVEL config before WORLD_NAME for world size calculation
|
|
82
|
+
- Fixes servers using LEVEL config showing "0 B" for world size
|
|
83
|
+
|
|
76
84
|
### v1.7.10 (2026-02-04)
|
|
77
85
|
- **feat(console)**: Add ANSI color support for console logs
|
|
78
86
|
- **feat(console)**: Add loading indicator with nprogress
|
|
@@ -90,12 +98,6 @@ mcctl logs myserver
|
|
|
90
98
|
### v1.7.7 (2026-01-31)
|
|
91
99
|
- **feat(cli)**: Auto-install mcctl-api on console init
|
|
92
100
|
|
|
93
|
-
### v1.7.6 (2026-01-31)
|
|
94
|
-
- **feat(mcctl-api)**: First npm release of REST API package
|
|
95
|
-
|
|
96
|
-
### v1.7.5 (2026-01-31)
|
|
97
|
-
- **fix**: Resolve Edge runtime error in mcctl-console middleware (#201)
|
|
98
|
-
|
|
99
101
|
[Full Changelog](https://github.com/smallmiro/minecraft-server-manager/releases)
|
|
100
102
|
|
|
101
103
|
## AI Assistant
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@minecraft-docker/mcctl",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.12",
|
|
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.
|
|
59
|
-
"@minecraft-docker/shared": "^1.7.
|
|
58
|
+
"@minecraft-docker/mod-source-modrinth": "^1.7.12",
|
|
59
|
+
"@minecraft-docker/shared": "^1.7.12",
|
|
60
60
|
"commander": "^12.0.0",
|
|
61
61
|
"js-yaml": "^4.1.0",
|
|
62
62
|
"picocolors": "^1.1.0",
|
package/scripts/create-server.sh
CHANGED
|
@@ -47,7 +47,7 @@ if [[ -n "${MCCTL_ROOT:-}" ]]; then
|
|
|
47
47
|
# Running via npm package
|
|
48
48
|
PLATFORM_DIR="$MCCTL_ROOT"
|
|
49
49
|
SCRIPT_DIR="${MCCTL_SCRIPTS:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|
50
|
-
TEMPLATE_DIR="${MCCTL_TEMPLATES:-$PLATFORM_DIR/servers/_template}
|
|
50
|
+
TEMPLATE_DIR="${MCCTL_TEMPLATES:-$PLATFORM_DIR/servers/_template}"
|
|
51
51
|
else
|
|
52
52
|
# Running directly (development mode)
|
|
53
53
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|