@minecraft-docker/mcctl 2.15.0 → 2.15.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 +11 -0
  2. package/README.md +11 -16
  3. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -5,6 +5,17 @@ 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.1] - 2026-02-22
9
+
10
+ ### Changed
11
+ - **Web Console Documentation** - Comprehensive update with screenshots and detailed feature descriptions (#407, #408)
12
+ - Added screenshots for all major console features (Dashboard, Server Management, World Management, etc.)
13
+ - Updated feature descriptions with step-by-step usage guides
14
+ - Enhanced documentation structure for better readability
15
+
16
+ ### Fixed
17
+ - **pnpm-lock.yaml** - Sync lockfile with mcctl-api package.json for node-cron dependency
18
+
8
19
  ## [2.15.0] - 2026-02-22
9
20
 
10
21
  ### Added
package/README.md CHANGED
@@ -77,34 +77,29 @@ mcctl logs myserver
77
77
 
78
78
  ## Changelog
79
79
 
80
+ ### v2.15.1 (2026-02-22)
81
+ - **docs**: Comprehensive web console documentation update with screenshots (#407, #408)
82
+ - **fix**: Sync pnpm-lock.yaml with mcctl-api package.json (node-cron)
83
+
84
+ ### v2.15.0 (2026-02-22)
85
+ - **feat**: Automated backup scheduling with cron-based scheduler (#394, #395)
86
+ - CLI `mcctl backup schedule` with list/add/remove/enable/disable operations
87
+ - REST API endpoints for schedule CRUD with node-cron integration
88
+ - Web Console UI with schedule management dialog and toggle
89
+ - Shell injection prevention, 54+ tests across all layers
90
+
80
91
  ### v2.14.0 (2026-02-21)
81
92
  - **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
93
 
87
94
  ### v2.13.0 (2026-02-21)
88
95
  - **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
96
 
93
97
  ### v2.12.1 (2026-02-20)
94
98
  - **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
99
 
97
100
  ### v2.12.0 (2026-02-20)
98
101
  - **refactor(console)**: Convert file editors from Dialog to inline Card-based views (#389, #390)
99
102
 
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
103
  [Full Changelog](https://github.com/smallmiro/minecraft-server-manager/releases)
109
104
 
110
105
  ## 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.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.15.0",
59
- "@minecraft-docker/shared": "^2.15.0",
58
+ "@minecraft-docker/mod-source-modrinth": "^2.15.1",
59
+ "@minecraft-docker/shared": "^2.15.1",
60
60
  "better-sqlite3": "^12.6.2",
61
61
  "commander": "^12.0.0",
62
62
  "js-yaml": "^4.1.0",