@minecraft-docker/mcctl 2.9.0 → 2.11.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 CHANGED
@@ -5,6 +5,35 @@ 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.11.0] - 2026-02-19
9
+
10
+ ### Added
11
+ - **Console Tab-Specific Console Section** - Show Console section only on Overview tab (#387, #388)
12
+ - Console section now appears exclusively in the Overview tab for cleaner UX
13
+ - Console open state resets automatically when leaving Overview tab
14
+ - Unit tests added for console visibility on tab switch
15
+
16
+ ### Changed
17
+ - **Console server.properties Editor Redesign** - Replace modal dialog with inline view
18
+ - `ServerPropertiesDialog` (modal overlay) replaced with `ServerPropertiesView` (inline full-page view)
19
+ - New `RawPropertiesEditor` component for raw properties editing
20
+ - Properties editor now renders within the Files tab instead of as a dialog overlay
21
+ - Improved UX with back navigation instead of dialog close
22
+
23
+ ## [2.10.0] - 2026-02-19
24
+
25
+ ### Added
26
+ - **Console File Upload/Download** - Phase 5: Streaming file transfers with drag-and-drop support (#379, #386)
27
+ - File upload with streaming proxy via `@fastify/multipart`
28
+ - Drag-and-drop file upload interface
29
+ - File download with streaming response
30
+ - Progress indicators for upload/download operations
31
+ - **Console File Operations** - Phase 6: File management actions (delete, rename, new folder) (#380, #385)
32
+ - Delete confirmation dialog with safety checks
33
+ - Rename dialog for files and directories
34
+ - New folder creation dialog
35
+ - Contextual file operation menus
36
+
8
37
  ## [2.9.0] - 2026-02-18
9
38
 
10
39
  ### Added
package/README.md CHANGED
@@ -77,6 +77,14 @@ mcctl logs myserver
77
77
 
78
78
  ## Changelog
79
79
 
80
+ ### v2.11.0 (2026-02-19)
81
+ - **feat(console)**: Show Console section only on Overview tab (#387, #388)
82
+ - **refactor(console)**: Redesign server.properties editor as inline view (replace dialog with full-page view)
83
+
84
+ ### v2.10.0 (2026-02-19)
85
+ - **feat(console)**: Phase 5 - File Upload/Download with streaming proxy, drag-and-drop (#379, #386)
86
+ - **feat(console)**: Phase 6 - File Operations: delete, rename, new folder dialogs (#380, #385)
87
+
80
88
  ### v2.9.0 (2026-02-18)
81
89
  - **feat(console)**: Server Files Management - complete 4-phase implementation
82
90
  - Phase 1: File Browser with directory navigation and file listing (#375, #381)
@@ -94,12 +102,6 @@ mcctl logs myserver
94
102
  ### v2.7.0 (2026-02-18)
95
103
  - **feat(console)**: Replace Ubuntu font with Roboto Mono across all console components
96
104
 
97
- ### v2.6.1 (2026-02-17)
98
- - **fix(console)**: Remove individual Restart badges, show specific field names in StickyActionBar
99
-
100
- ### v2.6.0 (2026-02-17)
101
- - **feat(console)**: Server Properties Full UI - 6 sections, ~40 fields with Progressive Disclosure (#365, #366)
102
-
103
105
  [Full Changelog](https://github.com/smallmiro/minecraft-server-manager/releases)
104
106
 
105
107
  ## AI Assistant
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@minecraft-docker/mcctl",
3
- "version": "2.9.0",
3
+ "version": "2.11.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.9.0",
59
- "@minecraft-docker/shared": "^2.9.0",
58
+ "@minecraft-docker/mod-source-modrinth": "^2.11.0",
59
+ "@minecraft-docker/shared": "^2.11.0",
60
60
  "better-sqlite3": "^12.6.2",
61
61
  "commander": "^12.0.0",
62
62
  "js-yaml": "^4.1.0",