@minecraft-docker/mcctl 2.8.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.
- package/CHANGELOG.md +9 -0
- package/README.md +5 -3
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,15 @@ 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
|
+
|
|
8
17
|
## [2.8.0] - 2026-02-18
|
|
9
18
|
|
|
10
19
|
### Added
|
package/README.md
CHANGED
|
@@ -77,6 +77,11 @@ 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
|
+
|
|
80
85
|
### v2.8.0 (2026-02-18)
|
|
81
86
|
- **feat(console)**: HostnameDisplay common component with popover for multiple hostnames (#369, #370)
|
|
82
87
|
- Applied to ServerCard, ServerOverview, ServerDetailPage, InfoRow, ConnectionInfoCard
|
|
@@ -102,9 +107,6 @@ mcctl logs myserver
|
|
|
102
107
|
- **fix(console)**: Align player list field name with backend (#359, #361)
|
|
103
108
|
- **fix(api)**: Detect RCON error in whitelist remove and fall back to file (#363, #364)
|
|
104
109
|
|
|
105
|
-
### v2.4.1 (2026-02-14)
|
|
106
|
-
- **fix(ci)**: Fix mcctl-api npm publish missing workspace replacement for mod-source-modrinth
|
|
107
|
-
|
|
108
110
|
[Full Changelog](https://github.com/smallmiro/minecraft-server-manager/releases)
|
|
109
111
|
|
|
110
112
|
## AI Assistant
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@minecraft-docker/mcctl",
|
|
3
|
-
"version": "2.8.
|
|
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.8.
|
|
59
|
-
"@minecraft-docker/shared": "^2.8.
|
|
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",
|