@minecraft-docker/mcctl 2.8.1 → 2.10.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +38 -0
  2. package/README.md +12 -18
  3. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -5,6 +5,44 @@ 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.10.0] - 2026-02-19
9
+
10
+ ### Added
11
+ - **Console File Upload/Download** - Phase 5: Streaming file transfers with drag-and-drop support (#379, #386)
12
+ - File upload with streaming proxy via `@fastify/multipart`
13
+ - Drag-and-drop file upload interface
14
+ - File download with streaming response
15
+ - Progress indicators for upload/download operations
16
+ - **Console File Operations** - Phase 6: File management actions (delete, rename, new folder) (#380, #385)
17
+ - Delete confirmation dialog with safety checks
18
+ - Rename dialog for files and directories
19
+ - New folder creation dialog
20
+ - Contextual file operation menus
21
+
22
+ ## [2.9.0] - 2026-02-18
23
+
24
+ ### Added
25
+ - **Console File Browser** - Phase 1: Directory navigation and file listing for server files management (#375, #381)
26
+ - Browse server file system with directory tree navigation
27
+ - File listing with name, size, and modification date
28
+ - Breadcrumb navigation for directory path
29
+ - **Console Text Editor** - Phase 2: Read and write text files directly from the web console (#376, #382)
30
+ - View and edit server configuration files (server.properties, config files, etc.)
31
+ - Syntax-aware text editing with save functionality
32
+ - **Console Player Editor Smart Routing** - Phase 3: Smart routing for player management files (#377, #383)
33
+ - Automatic detection and routing for whitelist.json, ops.json, banned-players.json
34
+ - Dedicated player editor UI for player management files
35
+ - Smart file type detection with specialized editing interfaces
36
+ - **Console server.properties Form Editor** - Phase 4: Visual form-based editor for server.properties (#378, #384)
37
+ - Form-based editing with field descriptions and validation
38
+ - Grouped settings by category (gameplay, world, network, etc.)
39
+ - Type-safe inputs (boolean toggles, number fields, dropdowns)
40
+
41
+ ### Changed
42
+ - **Console Font Cleanup** - Remove Roboto Mono font, use MUI default font stack (#373, #374)
43
+ - Cleaner typography using Material UI default fonts
44
+ - Reduced bundle size by removing custom font dependency
45
+
8
46
  ## [2.8.1] - 2026-02-18
9
47
 
10
48
  ### Changed
package/README.md CHANGED
@@ -77,36 +77,30 @@ mcctl logs myserver
77
77
 
78
78
  ## Changelog
79
79
 
80
+ ### v2.10.0 (2026-02-19)
81
+ - **feat(console)**: Phase 5 - File Upload/Download with streaming proxy, drag-and-drop (#379, #386)
82
+ - **feat(console)**: Phase 6 - File Operations: delete, rename, new folder dialogs (#380, #385)
83
+
84
+ ### v2.9.0 (2026-02-18)
85
+ - **feat(console)**: Server Files Management - complete 4-phase implementation
86
+ - Phase 1: File Browser with directory navigation and file listing (#375, #381)
87
+ - Phase 2: Text Editor for reading/writing server config files (#376, #382)
88
+ - Phase 3: Player Editor smart routing for whitelist/ops/bans (#377, #383)
89
+ - Phase 4: server.properties Form Editor with visual form-based editing (#378, #384)
90
+ - **refactor(console)**: Remove Roboto Mono font, use MUI default (#373, #374)
91
+
80
92
  ### v2.8.1 (2026-02-18)
81
93
  - **refactor(console)**: Improve responsive design across 14 components for mobile/tablet/desktop (#371, #372)
82
- - ServerCard, WorldCard, Dashboard, ServerDetail, CreateServerDialog, ServerConsole, and more
83
- - FullScreen dialogs on mobile, responsive tables, accessible close buttons
84
94
 
85
95
  ### v2.8.0 (2026-02-18)
86
96
  - **feat(console)**: HostnameDisplay common component with popover for multiple hostnames (#369, #370)
87
- - Applied to ServerCard, ServerOverview, ServerDetailPage, InfoRow, ConnectionInfoCard
88
- - Extracted CopyButton and hostname utilities as shared components
89
- - **fix(console)**: Resolve DOM nesting warning and preserve InfoRow null behavior
90
- - **test(console)**: Add HostnameDisplay component tests
91
97
 
92
98
  ### v2.7.0 (2026-02-18)
93
99
  - **feat(console)**: Replace Ubuntu font with Roboto Mono across all console components
94
- - Unified typography: layout, MUI theme, and 11 components updated
95
- - Minecraft font preserved for game branding
96
100
 
97
101
  ### v2.6.1 (2026-02-17)
98
102
  - **fix(console)**: Remove individual Restart badges, show specific field names in StickyActionBar
99
103
 
100
- ### v2.6.0 (2026-02-17)
101
- - **feat(console)**: Server Properties Full UI - 6 sections, ~40 fields with Progressive Disclosure (#365, #366)
102
- - **test(api)**: Add 22 ConfigService tests + 6 API integration tests (#367, #368)
103
-
104
- ### v2.5.0 (2026-02-17)
105
- - **feat(console)**: Add Online Mode and Whitelist security settings UI (#357, #358, #362)
106
- - **fix(api)**: Pass memory parameter to create-server.sh (#356, #360)
107
- - **fix(console)**: Align player list field name with backend (#359, #361)
108
- - **fix(api)**: Detect RCON error in whitelist remove and fall back to file (#363, #364)
109
-
110
104
  [Full Changelog](https://github.com/smallmiro/minecraft-server-manager/releases)
111
105
 
112
106
  ## AI Assistant
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@minecraft-docker/mcctl",
3
- "version": "2.8.1",
3
+ "version": "2.10.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.8.1",
59
- "@minecraft-docker/shared": "^2.8.1",
58
+ "@minecraft-docker/mod-source-modrinth": "^2.10.0",
59
+ "@minecraft-docker/shared": "^2.10.0",
60
60
  "better-sqlite3": "^12.6.2",
61
61
  "commander": "^12.0.0",
62
62
  "js-yaml": "^4.1.0",