@minecraft-docker/mcctl 2.13.0 → 2.14.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 +14 -0
- package/README.md +7 -8
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,20 @@ 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.14.0] - 2026-02-21
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **Console Mod Detail Cards** - Enhanced installed mods display with rich card UI in Server Detail Mods tab
|
|
12
|
+
- Replace simple slug Chip display with card UI showing mod icon, title, description, download count, author, and Modrinth link
|
|
13
|
+
- Batch API endpoint using Modrinth `GET /v2/projects?ids=[]` for efficient metadata retrieval
|
|
14
|
+
- 3-state rendering: Skeleton (loading), Detail Card (full info), Fallback Card (slug only on API failure)
|
|
15
|
+
- React Query caching with staleTime 5min, gcTime 30min for mod metadata
|
|
16
|
+
- BFF proxy route for mod projects API
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- **Modrinth Adapter** - Add `getProjects()` batch method with parallel team member resolution
|
|
20
|
+
- **IModSourcePort** - Add optional `getProjects?()` method to mod source port interface
|
|
21
|
+
|
|
8
22
|
## [2.13.0] - 2026-02-21
|
|
9
23
|
|
|
10
24
|
### Added
|
package/README.md
CHANGED
|
@@ -77,6 +77,13 @@ mcctl logs myserver
|
|
|
77
77
|
|
|
78
78
|
## Changelog
|
|
79
79
|
|
|
80
|
+
### v2.14.0 (2026-02-21)
|
|
81
|
+
- **feat(console)**: Enhanced installed mods display with rich card UI and batch API
|
|
82
|
+
- Replace slug Chips with card UI showing icon, title, description, downloads, author, Modrinth link
|
|
83
|
+
- Batch API using Modrinth `GET /v2/projects?ids=[]` for efficient metadata retrieval
|
|
84
|
+
- 3-state rendering: Skeleton / Detail Card / Fallback Card
|
|
85
|
+
- React Query caching (staleTime 5min, gcTime 30min)
|
|
86
|
+
|
|
80
87
|
### v2.13.0 (2026-02-21)
|
|
81
88
|
- **feat(console)**: Improve Server Activity tab to match Audit Logs page UI (#391, #392)
|
|
82
89
|
- Convert to reusable `AuditLogTable` with Action/Status inline filters and pagination (25/50)
|
|
@@ -98,14 +105,6 @@ mcctl logs myserver
|
|
|
98
105
|
- **feat(console)**: Phase 5 - File Upload/Download with streaming proxy, drag-and-drop (#379, #386)
|
|
99
106
|
- **feat(console)**: Phase 6 - File Operations: delete, rename, new folder dialogs (#380, #385)
|
|
100
107
|
|
|
101
|
-
### v2.9.0 (2026-02-18)
|
|
102
|
-
- **feat(console)**: Server Files Management - complete 4-phase implementation
|
|
103
|
-
- Phase 1: File Browser with directory navigation and file listing (#375, #381)
|
|
104
|
-
- Phase 2: Text Editor for reading/writing server config files (#376, #382)
|
|
105
|
-
- Phase 3: Player Editor smart routing for whitelist/ops/bans (#377, #383)
|
|
106
|
-
- Phase 4: server.properties Form Editor with visual form-based editing (#378, #384)
|
|
107
|
-
- **refactor(console)**: Remove Roboto Mono font, use MUI default (#373, #374)
|
|
108
|
-
|
|
109
108
|
[Full Changelog](https://github.com/smallmiro/minecraft-server-manager/releases)
|
|
110
109
|
|
|
111
110
|
## AI Assistant
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@minecraft-docker/mcctl",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.14.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.
|
|
59
|
-
"@minecraft-docker/shared": "^2.
|
|
58
|
+
"@minecraft-docker/mod-source-modrinth": "^2.14.0",
|
|
59
|
+
"@minecraft-docker/shared": "^2.14.0",
|
|
60
60
|
"better-sqlite3": "^12.6.2",
|
|
61
61
|
"commander": "^12.0.0",
|
|
62
62
|
"js-yaml": "^4.1.0",
|