@minecraft-docker/mcctl 2.15.0 → 2.15.2

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 +21 -0
  2. package/README.md +15 -16
  3. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -5,6 +5,27 @@ 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.15.2] - 2026-02-22
9
+
10
+ ### Changed
11
+ - **Web Console Documentation** - Added server Overview/Mods tab screenshots with detailed descriptions (#409)
12
+ - Server Overview tab screenshot and feature walkthrough
13
+ - Server Mods tab screenshot with mod management UI description
14
+ - **Integrated Setup Guide** - New comprehensive guide for mcctl init to console init flow (#410)
15
+ - Step-by-step installation guide covering mcctl CLI setup through console initialization
16
+ - Bilingual documentation (English/Korean)
17
+
18
+ ## [2.15.1] - 2026-02-22
19
+
20
+ ### Changed
21
+ - **Web Console Documentation** - Comprehensive update with screenshots and detailed feature descriptions (#407, #408)
22
+ - Added screenshots for all major console features (Dashboard, Server Management, World Management, etc.)
23
+ - Updated feature descriptions with step-by-step usage guides
24
+ - Enhanced documentation structure for better readability
25
+
26
+ ### Fixed
27
+ - **pnpm-lock.yaml** - Sync lockfile with mcctl-api package.json for node-cron dependency
28
+
8
29
  ## [2.15.0] - 2026-02-22
9
30
 
10
31
  ### Added
package/README.md CHANGED
@@ -77,34 +77,33 @@ mcctl logs myserver
77
77
 
78
78
  ## Changelog
79
79
 
80
+ ### v2.15.2 (2026-02-22)
81
+ - **docs**: Server Overview/Mods tab screenshots with detailed descriptions (#409)
82
+ - **docs**: Integrated setup guide for mcctl init to console init flow (#410)
83
+
84
+ ### v2.15.1 (2026-02-22)
85
+ - **docs**: Comprehensive web console documentation update with screenshots (#407, #408)
86
+ - **fix**: Sync pnpm-lock.yaml with mcctl-api package.json (node-cron)
87
+
88
+ ### v2.15.0 (2026-02-22)
89
+ - **feat**: Automated backup scheduling with cron-based scheduler (#394, #395)
90
+ - CLI `mcctl backup schedule` with list/add/remove/enable/disable operations
91
+ - REST API endpoints for schedule CRUD with node-cron integration
92
+ - Web Console UI with schedule management dialog and toggle
93
+ - Shell injection prevention, 54+ tests across all layers
94
+
80
95
  ### v2.14.0 (2026-02-21)
81
96
  - **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
97
 
87
98
  ### v2.13.0 (2026-02-21)
88
99
  - **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
100
 
93
101
  ### v2.12.1 (2026-02-20)
94
102
  - **docs**: Add server management guide (EN/KO) for start/stop operations
95
- - **docs**: Remove obsolete v1.6.8~v1.6.11 World Storage Bug warning
96
103
 
97
104
  ### v2.12.0 (2026-02-20)
98
105
  - **refactor(console)**: Convert file editors from Dialog to inline Card-based views (#389, #390)
99
106
 
100
- ### v2.11.0 (2026-02-19)
101
- - **feat(console)**: Show Console section only on Overview tab (#387, #388)
102
- - **refactor(console)**: Redesign server.properties editor as inline view (replace dialog with full-page view)
103
-
104
- ### v2.10.0 (2026-02-19)
105
- - **feat(console)**: Phase 5 - File Upload/Download with streaming proxy, drag-and-drop (#379, #386)
106
- - **feat(console)**: Phase 6 - File Operations: delete, rename, new folder dialogs (#380, #385)
107
-
108
107
  [Full Changelog](https://github.com/smallmiro/minecraft-server-manager/releases)
109
108
 
110
109
  ## AI Assistant
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@minecraft-docker/mcctl",
3
- "version": "2.15.0",
3
+ "version": "2.15.2",
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.15.0",
59
- "@minecraft-docker/shared": "^2.15.0",
58
+ "@minecraft-docker/mod-source-modrinth": "^2.15.2",
59
+ "@minecraft-docker/shared": "^2.15.2",
60
60
  "better-sqlite3": "^12.6.2",
61
61
  "commander": "^12.0.0",
62
62
  "js-yaml": "^4.1.0",