@minecraft-docker/mcctl 2.11.0 → 2.12.1
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 +21 -0
- package/README.md +7 -6
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,27 @@ 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
|
+
## [2.12.1] - 2026-02-20
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **Server Management Guide** - New bilingual (EN/KO) documentation for server start/stop operations
|
|
12
|
+
- Comprehensive guide covering `mcctl start`, `mcctl stop`, `mcctl up`, `mcctl down` commands
|
|
13
|
+
- Server lifecycle management with auto-scaling behavior
|
|
14
|
+
- Added to MkDocs navigation under Usage section
|
|
15
|
+
|
|
16
|
+
### Removed
|
|
17
|
+
- **World Storage Bug Warning** - Remove obsolete v1.6.8~v1.6.11 bug warning from documentation
|
|
18
|
+
- Issue was fully resolved in v1.6.12; warning no longer relevant
|
|
19
|
+
|
|
20
|
+
## [2.12.0] - 2026-02-20
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
- **Console File Editors Inline Redesign** - Convert TextEditor and PlayerEditorDialog from fullScreen Dialog overlays to inline Card-based views (#389, #390)
|
|
24
|
+
- All file editors now use consistent inline replacement rendering pattern
|
|
25
|
+
- Shared header pattern with back button, icon, title, and actions
|
|
26
|
+
- Matches ServerPropertiesView inline design for unified UX
|
|
27
|
+
- Eliminates modal overlays in favor of in-page navigation
|
|
28
|
+
|
|
8
29
|
## [2.11.0] - 2026-02-19
|
|
9
30
|
|
|
10
31
|
### Added
|
package/README.md
CHANGED
|
@@ -77,6 +77,13 @@ mcctl logs myserver
|
|
|
77
77
|
|
|
78
78
|
## Changelog
|
|
79
79
|
|
|
80
|
+
### v2.12.1 (2026-02-20)
|
|
81
|
+
- **docs**: Add server management guide (EN/KO) for start/stop operations
|
|
82
|
+
- **docs**: Remove obsolete v1.6.8~v1.6.11 World Storage Bug warning
|
|
83
|
+
|
|
84
|
+
### v2.12.0 (2026-02-20)
|
|
85
|
+
- **refactor(console)**: Convert file editors from Dialog to inline Card-based views (#389, #390)
|
|
86
|
+
|
|
80
87
|
### v2.11.0 (2026-02-19)
|
|
81
88
|
- **feat(console)**: Show Console section only on Overview tab (#387, #388)
|
|
82
89
|
- **refactor(console)**: Redesign server.properties editor as inline view (replace dialog with full-page view)
|
|
@@ -96,12 +103,6 @@ mcctl logs myserver
|
|
|
96
103
|
### v2.8.1 (2026-02-18)
|
|
97
104
|
- **refactor(console)**: Improve responsive design across 14 components for mobile/tablet/desktop (#371, #372)
|
|
98
105
|
|
|
99
|
-
### v2.8.0 (2026-02-18)
|
|
100
|
-
- **feat(console)**: HostnameDisplay common component with popover for multiple hostnames (#369, #370)
|
|
101
|
-
|
|
102
|
-
### v2.7.0 (2026-02-18)
|
|
103
|
-
- **feat(console)**: Replace Ubuntu font with Roboto Mono across all console components
|
|
104
|
-
|
|
105
106
|
[Full Changelog](https://github.com/smallmiro/minecraft-server-manager/releases)
|
|
106
107
|
|
|
107
108
|
## AI Assistant
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@minecraft-docker/mcctl",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.12.1",
|
|
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": "^2.
|
|
59
|
-
"@minecraft-docker/shared": "^2.
|
|
58
|
+
"@minecraft-docker/mod-source-modrinth": "^2.12.1",
|
|
59
|
+
"@minecraft-docker/shared": "^2.12.1",
|
|
60
60
|
"better-sqlite3": "^12.6.2",
|
|
61
61
|
"commander": "^12.0.0",
|
|
62
62
|
"js-yaml": "^4.1.0",
|