@minecraft-docker/mcctl 2.12.1 → 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.
Files changed (3) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/README.md +13 -11
  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.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
+
22
+ ## [2.13.0] - 2026-02-21
23
+
24
+ ### Added
25
+ - **Console Server Activity Tab Redesign** - Improve Server Activity tab to match Audit Logs page UI (#391, #392)
26
+ - Convert Server Activity tab from simple List to reusable `AuditLogTable` component
27
+ - Add Action/Status inline filters for activity filtering
28
+ - Add pagination support with configurable rows per page (25/50)
29
+ - Add `hideTargetColumn` and `rowsPerPageOptions` props to `AuditLogTable` for reusability
30
+
31
+ ### Documentation
32
+ - **mcctl update Command** - Add documentation for `mcctl update` command usage
33
+
8
34
  ## [2.12.1] - 2026-02-20
9
35
 
10
36
  ### Added
package/README.md CHANGED
@@ -77,6 +77,19 @@ 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
+
87
+ ### v2.13.0 (2026-02-21)
88
+ - **feat(console)**: Improve Server Activity tab to match Audit Logs page UI (#391, #392)
89
+ - Convert to reusable `AuditLogTable` with Action/Status inline filters and pagination (25/50)
90
+ - Add `hideTargetColumn` and `rowsPerPageOptions` props for reusability
91
+ - **docs**: Add mcctl update command documentation
92
+
80
93
  ### v2.12.1 (2026-02-20)
81
94
  - **docs**: Add server management guide (EN/KO) for start/stop operations
82
95
  - **docs**: Remove obsolete v1.6.8~v1.6.11 World Storage Bug warning
@@ -92,17 +105,6 @@ mcctl logs myserver
92
105
  - **feat(console)**: Phase 5 - File Upload/Download with streaming proxy, drag-and-drop (#379, #386)
93
106
  - **feat(console)**: Phase 6 - File Operations: delete, rename, new folder dialogs (#380, #385)
94
107
 
95
- ### v2.9.0 (2026-02-18)
96
- - **feat(console)**: Server Files Management - complete 4-phase implementation
97
- - Phase 1: File Browser with directory navigation and file listing (#375, #381)
98
- - Phase 2: Text Editor for reading/writing server config files (#376, #382)
99
- - Phase 3: Player Editor smart routing for whitelist/ops/bans (#377, #383)
100
- - Phase 4: server.properties Form Editor with visual form-based editing (#378, #384)
101
- - **refactor(console)**: Remove Roboto Mono font, use MUI default (#373, #374)
102
-
103
- ### v2.8.1 (2026-02-18)
104
- - **refactor(console)**: Improve responsive design across 14 components for mobile/tablet/desktop (#371, #372)
105
-
106
108
  [Full Changelog](https://github.com/smallmiro/minecraft-server-manager/releases)
107
109
 
108
110
  ## AI Assistant
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@minecraft-docker/mcctl",
3
- "version": "2.12.1",
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.12.1",
59
- "@minecraft-docker/shared": "^2.12.1",
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",