@minecraft-docker/mcctl 2.12.1 → 2.13.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 +12 -0
- package/README.md +6 -3
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ 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.13.0] - 2026-02-21
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **Console Server Activity Tab Redesign** - Improve Server Activity tab to match Audit Logs page UI (#391, #392)
|
|
12
|
+
- Convert Server Activity tab from simple List to reusable `AuditLogTable` component
|
|
13
|
+
- Add Action/Status inline filters for activity filtering
|
|
14
|
+
- Add pagination support with configurable rows per page (25/50)
|
|
15
|
+
- Add `hideTargetColumn` and `rowsPerPageOptions` props to `AuditLogTable` for reusability
|
|
16
|
+
|
|
17
|
+
### Documentation
|
|
18
|
+
- **mcctl update Command** - Add documentation for `mcctl update` command usage
|
|
19
|
+
|
|
8
20
|
## [2.12.1] - 2026-02-20
|
|
9
21
|
|
|
10
22
|
### Added
|
package/README.md
CHANGED
|
@@ -77,6 +77,12 @@ mcctl logs myserver
|
|
|
77
77
|
|
|
78
78
|
## Changelog
|
|
79
79
|
|
|
80
|
+
### v2.13.0 (2026-02-21)
|
|
81
|
+
- **feat(console)**: Improve Server Activity tab to match Audit Logs page UI (#391, #392)
|
|
82
|
+
- Convert to reusable `AuditLogTable` with Action/Status inline filters and pagination (25/50)
|
|
83
|
+
- Add `hideTargetColumn` and `rowsPerPageOptions` props for reusability
|
|
84
|
+
- **docs**: Add mcctl update command documentation
|
|
85
|
+
|
|
80
86
|
### v2.12.1 (2026-02-20)
|
|
81
87
|
- **docs**: Add server management guide (EN/KO) for start/stop operations
|
|
82
88
|
- **docs**: Remove obsolete v1.6.8~v1.6.11 World Storage Bug warning
|
|
@@ -100,9 +106,6 @@ mcctl logs myserver
|
|
|
100
106
|
- Phase 4: server.properties Form Editor with visual form-based editing (#378, #384)
|
|
101
107
|
- **refactor(console)**: Remove Roboto Mono font, use MUI default (#373, #374)
|
|
102
108
|
|
|
103
|
-
### v2.8.1 (2026-02-18)
|
|
104
|
-
- **refactor(console)**: Improve responsive design across 14 components for mobile/tablet/desktop (#371, #372)
|
|
105
|
-
|
|
106
109
|
[Full Changelog](https://github.com/smallmiro/minecraft-server-manager/releases)
|
|
107
110
|
|
|
108
111
|
## AI Assistant
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@minecraft-docker/mcctl",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.13.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.13.0",
|
|
59
|
+
"@minecraft-docker/shared": "^2.13.0",
|
|
60
60
|
"better-sqlite3": "^12.6.2",
|
|
61
61
|
"commander": "^12.0.0",
|
|
62
62
|
"js-yaml": "^4.1.0",
|