@minecraft-docker/mcctl 2.7.0 → 2.8.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/README.md +12 -9
  3. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -5,6 +5,32 @@ 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.8.1] - 2026-02-18
9
+
10
+ ### Changed
11
+ - **Console Responsive Design Overhaul** - Improve responsive design across 14 components for mobile, tablet, and desktop (#371, #372)
12
+ - **P0 Critical**: ServerCard/WorldCard responsive height, page headers responsive flexDirection, NetworkSettings/PlayitSection table mobile scroll
13
+ - **P1 Important**: ServerDetail responsive tabs and console height, CreateServerDialog fullScreen on mobile, ServerConsole responsive header, StickyActionBar responsive padding
14
+ - **P2 Nice to have**: Dashboard responsive breakpoints, ServerOverview chip flex-wrap, ConnectionInfoCard word-break, UserList table overflow
15
+ - Accessibility: Add aria-label to console close button, fullScreen close button for dialogs
16
+
17
+ ## [2.8.0] - 2026-02-18
18
+
19
+ ### Added
20
+ - **Console HostnameDisplay Common Component** - Reusable hostname display with popover for multiple hostnames (#369, #370)
21
+ - Shows primary hostname with (+N) Chip for servers with multiple hostnames
22
+ - Clicking Chip opens Popover with all hostnames and copy buttons
23
+ - Applied to 5 locations: ServerCard, ServerOverview, ServerDetailPage header, ServerDetail InfoRow, ConnectionInfoCard LAN Address
24
+ - Extracted `parseHostnames` and `getPrimaryHostname` utilities into `src/utils/hostname.ts`
25
+ - Extracted `CopyButton` into shared common component with configurable icon size
26
+
27
+ ### Fixed
28
+ - **Console DOM Nesting Warning** - Change InfoRow value wrapper to `component="div"` to prevent invalid DOM nesting with HostnameDisplay
29
+ - **Console InfoRow Null Behavior** - Preserve undefined hostname handling for hidden InfoRow display
30
+
31
+ ### Tests
32
+ - **HostnameDisplay Component Tests** - Cover all render paths, Popover interaction, copy-to-clipboard, port suffix formatting, and event propagation prevention
33
+
8
34
  ## [2.7.0] - 2026-02-18
9
35
 
10
36
  ### Changed
package/README.md CHANGED
@@ -77,6 +77,18 @@ mcctl logs myserver
77
77
 
78
78
  ## Changelog
79
79
 
80
+ ### v2.8.1 (2026-02-18)
81
+ - **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
+
85
+ ### v2.8.0 (2026-02-18)
86
+ - **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
+
80
92
  ### v2.7.0 (2026-02-18)
81
93
  - **feat(console)**: Replace Ubuntu font with Roboto Mono across all console components
82
94
  - Unified typography: layout, MUI theme, and 11 components updated
@@ -95,15 +107,6 @@ mcctl logs myserver
95
107
  - **fix(console)**: Align player list field name with backend (#359, #361)
96
108
  - **fix(api)**: Detect RCON error in whitelist remove and fall back to file (#363, #364)
97
109
 
98
- ### v2.4.1 (2026-02-14)
99
- - **fix(ci)**: Fix mcctl-api npm publish missing workspace replacement for mod-source-modrinth
100
-
101
- ### v2.4.0 (2026-02-14)
102
- - **feat(cli)**: Add `mcctl upgrade` command for upgrading mcctl and all services (#326, #355)
103
- - **feat(cli)**: Add creeper ASCII banner with version check on `mcctl init` (#353, #354)
104
- - **feat(console)**: Implement Mods tab functionality (#351, #352)
105
- - **feat(cli)**: Add `mcctl playit domain` subcommand (#347, #348)
106
-
107
110
  [Full Changelog](https://github.com/smallmiro/minecraft-server-manager/releases)
108
111
 
109
112
  ## AI Assistant
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@minecraft-docker/mcctl",
3
- "version": "2.7.0",
3
+ "version": "2.8.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.7.0",
59
- "@minecraft-docker/shared": "^2.7.0",
58
+ "@minecraft-docker/mod-source-modrinth": "^2.8.1",
59
+ "@minecraft-docker/shared": "^2.8.1",
60
60
  "better-sqlite3": "^12.6.2",
61
61
  "commander": "^12.0.0",
62
62
  "js-yaml": "^4.1.0",