@minecraft-docker/mcctl 1.7.11 → 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 +6 -0
- package/README.md +4 -3
- package/package.json +3 -3
- package/scripts/create-server.sh +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ 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
|
+
|
|
8
14
|
## [1.7.11] - 2026-02-04
|
|
9
15
|
|
|
10
16
|
### Fixed
|
package/README.md
CHANGED
|
@@ -73,6 +73,10 @@ 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
|
+
|
|
76
80
|
### v1.7.11 (2026-02-04)
|
|
77
81
|
- **fix(shared)**: Check LEVEL config before WORLD_NAME for world size calculation
|
|
78
82
|
- Fixes servers using LEVEL config showing "0 B" for world size
|
|
@@ -94,9 +98,6 @@ mcctl logs myserver
|
|
|
94
98
|
### v1.7.7 (2026-01-31)
|
|
95
99
|
- **feat(cli)**: Auto-install mcctl-api on console init
|
|
96
100
|
|
|
97
|
-
### v1.7.6 (2026-01-31)
|
|
98
|
-
- **feat(mcctl-api)**: First npm release of REST API package
|
|
99
|
-
|
|
100
101
|
[Full Changelog](https://github.com/smallmiro/minecraft-server-manager/releases)
|
|
101
102
|
|
|
102
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)"
|