@minecraft-docker/mcctl 2.8.1 → 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.
Files changed (3) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/README.md +8 -15
  3. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -5,6 +5,30 @@ 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
+
8
32
  ## [2.8.1] - 2026-02-18
9
33
 
10
34
  ### Changed
package/README.md CHANGED
@@ -77,35 +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
+
80
88
  ### v2.8.1 (2026-02-18)
81
89
  - **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
90
 
85
91
  ### v2.8.0 (2026-02-18)
86
92
  - **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
93
 
92
94
  ### v2.7.0 (2026-02-18)
93
95
  - **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
96
 
97
97
  ### v2.6.1 (2026-02-17)
98
98
  - **fix(console)**: Remove individual Restart badges, show specific field names in StickyActionBar
99
99
 
100
100
  ### v2.6.0 (2026-02-17)
101
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
102
 
110
103
  [Full Changelog](https://github.com/smallmiro/minecraft-server-manager/releases)
111
104
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@minecraft-docker/mcctl",
3
- "version": "2.8.1",
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.8.1",
59
- "@minecraft-docker/shared": "^2.8.1",
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",