@minecraft-docker/mcctl 2.8.0 → 2.9.0
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 +33 -0
- package/README.md +11 -16
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,39 @@ 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.9.0] - 2026-02-18
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **Console File Browser** - Phase 1: Directory navigation and file listing for server files management (#375, #381)
|
|
12
|
+
- Browse server file system with directory tree navigation
|
|
13
|
+
- File listing with name, size, and modification date
|
|
14
|
+
- Breadcrumb navigation for directory path
|
|
15
|
+
- **Console Text Editor** - Phase 2: Read and write text files directly from the web console (#376, #382)
|
|
16
|
+
- View and edit server configuration files (server.properties, config files, etc.)
|
|
17
|
+
- Syntax-aware text editing with save functionality
|
|
18
|
+
- **Console Player Editor Smart Routing** - Phase 3: Smart routing for player management files (#377, #383)
|
|
19
|
+
- Automatic detection and routing for whitelist.json, ops.json, banned-players.json
|
|
20
|
+
- Dedicated player editor UI for player management files
|
|
21
|
+
- Smart file type detection with specialized editing interfaces
|
|
22
|
+
- **Console server.properties Form Editor** - Phase 4: Visual form-based editor for server.properties (#378, #384)
|
|
23
|
+
- Form-based editing with field descriptions and validation
|
|
24
|
+
- Grouped settings by category (gameplay, world, network, etc.)
|
|
25
|
+
- Type-safe inputs (boolean toggles, number fields, dropdowns)
|
|
26
|
+
|
|
27
|
+
### Changed
|
|
28
|
+
- **Console Font Cleanup** - Remove Roboto Mono font, use MUI default font stack (#373, #374)
|
|
29
|
+
- Cleaner typography using Material UI default fonts
|
|
30
|
+
- Reduced bundle size by removing custom font dependency
|
|
31
|
+
|
|
32
|
+
## [2.8.1] - 2026-02-18
|
|
33
|
+
|
|
34
|
+
### Changed
|
|
35
|
+
- **Console Responsive Design Overhaul** - Improve responsive design across 14 components for mobile, tablet, and desktop (#371, #372)
|
|
36
|
+
- **P0 Critical**: ServerCard/WorldCard responsive height, page headers responsive flexDirection, NetworkSettings/PlayitSection table mobile scroll
|
|
37
|
+
- **P1 Important**: ServerDetail responsive tabs and console height, CreateServerDialog fullScreen on mobile, ServerConsole responsive header, StickyActionBar responsive padding
|
|
38
|
+
- **P2 Nice to have**: Dashboard responsive breakpoints, ServerOverview chip flex-wrap, ConnectionInfoCard word-break, UserList table overflow
|
|
39
|
+
- Accessibility: Add aria-label to console close button, fullScreen close button for dialogs
|
|
40
|
+
|
|
8
41
|
## [2.8.0] - 2026-02-18
|
|
9
42
|
|
|
10
43
|
### Added
|
package/README.md
CHANGED
|
@@ -77,33 +77,28 @@ mcctl logs myserver
|
|
|
77
77
|
|
|
78
78
|
## Changelog
|
|
79
79
|
|
|
80
|
+
### v2.9.0 (2026-02-18)
|
|
81
|
+
- **feat(console)**: Server Files Management - complete 4-phase implementation
|
|
82
|
+
- Phase 1: File Browser with directory navigation and file listing (#375, #381)
|
|
83
|
+
- Phase 2: Text Editor for reading/writing server config files (#376, #382)
|
|
84
|
+
- Phase 3: Player Editor smart routing for whitelist/ops/bans (#377, #383)
|
|
85
|
+
- Phase 4: server.properties Form Editor with visual form-based editing (#378, #384)
|
|
86
|
+
- **refactor(console)**: Remove Roboto Mono font, use MUI default (#373, #374)
|
|
87
|
+
|
|
88
|
+
### v2.8.1 (2026-02-18)
|
|
89
|
+
- **refactor(console)**: Improve responsive design across 14 components for mobile/tablet/desktop (#371, #372)
|
|
90
|
+
|
|
80
91
|
### v2.8.0 (2026-02-18)
|
|
81
92
|
- **feat(console)**: HostnameDisplay common component with popover for multiple hostnames (#369, #370)
|
|
82
|
-
- Applied to ServerCard, ServerOverview, ServerDetailPage, InfoRow, ConnectionInfoCard
|
|
83
|
-
- Extracted CopyButton and hostname utilities as shared components
|
|
84
|
-
- **fix(console)**: Resolve DOM nesting warning and preserve InfoRow null behavior
|
|
85
|
-
- **test(console)**: Add HostnameDisplay component tests
|
|
86
93
|
|
|
87
94
|
### v2.7.0 (2026-02-18)
|
|
88
95
|
- **feat(console)**: Replace Ubuntu font with Roboto Mono across all console components
|
|
89
|
-
- Unified typography: layout, MUI theme, and 11 components updated
|
|
90
|
-
- Minecraft font preserved for game branding
|
|
91
96
|
|
|
92
97
|
### v2.6.1 (2026-02-17)
|
|
93
98
|
- **fix(console)**: Remove individual Restart badges, show specific field names in StickyActionBar
|
|
94
99
|
|
|
95
100
|
### v2.6.0 (2026-02-17)
|
|
96
101
|
- **feat(console)**: Server Properties Full UI - 6 sections, ~40 fields with Progressive Disclosure (#365, #366)
|
|
97
|
-
- **test(api)**: Add 22 ConfigService tests + 6 API integration tests (#367, #368)
|
|
98
|
-
|
|
99
|
-
### v2.5.0 (2026-02-17)
|
|
100
|
-
- **feat(console)**: Add Online Mode and Whitelist security settings UI (#357, #358, #362)
|
|
101
|
-
- **fix(api)**: Pass memory parameter to create-server.sh (#356, #360)
|
|
102
|
-
- **fix(console)**: Align player list field name with backend (#359, #361)
|
|
103
|
-
- **fix(api)**: Detect RCON error in whitelist remove and fall back to file (#363, #364)
|
|
104
|
-
|
|
105
|
-
### v2.4.1 (2026-02-14)
|
|
106
|
-
- **fix(ci)**: Fix mcctl-api npm publish missing workspace replacement for mod-source-modrinth
|
|
107
102
|
|
|
108
103
|
[Full Changelog](https://github.com/smallmiro/minecraft-server-manager/releases)
|
|
109
104
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@minecraft-docker/mcctl",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.9.0",
|
|
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.9.0",
|
|
59
|
+
"@minecraft-docker/shared": "^2.9.0",
|
|
60
60
|
"better-sqlite3": "^12.6.2",
|
|
61
61
|
"commander": "^12.0.0",
|
|
62
62
|
"js-yaml": "^4.1.0",
|