@minecraft-docker/mcctl 1.6.3 → 1.6.5
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/README.md +39 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -71,9 +71,48 @@ mcctl logs myserver
|
|
|
71
71
|
- Docker & Docker Compose
|
|
72
72
|
- Linux or macOS
|
|
73
73
|
|
|
74
|
+
## Changelog
|
|
75
|
+
|
|
76
|
+
### v1.6.3 (2026-01-30)
|
|
77
|
+
- **fix**: npm publish support for `@minecraft-docker/mod-source-modrinth` package
|
|
78
|
+
- **docs**: Added project badges to README
|
|
79
|
+
- **docs**: Created development guide (EN/KO)
|
|
80
|
+
- **ci**: Added mod-source-modrinth to release workflow
|
|
81
|
+
|
|
82
|
+
### v1.6.2 (2026-01-28)
|
|
83
|
+
- **feat**: Improved API, E2E tests, and documentation
|
|
84
|
+
- **fix**: Various bug fixes and stability improvements
|
|
85
|
+
|
|
86
|
+
### v1.6.0 (2026-01-24)
|
|
87
|
+
- **feat**: Added mod management commands (`mcctl mod search/add/remove`)
|
|
88
|
+
- **feat**: Modrinth integration for mod search and installation
|
|
89
|
+
|
|
90
|
+
### v1.5.0 (2026-01-21)
|
|
91
|
+
- **feat**: Added player management with Mojang API integration
|
|
92
|
+
- **feat**: Local player cache for offline UUID lookup
|
|
93
|
+
|
|
94
|
+
### v1.4.0 (2026-01-20)
|
|
95
|
+
- **feat**: World management commands (`mcctl world new/assign/release`)
|
|
96
|
+
- **feat**: Server backup and restore functionality
|
|
97
|
+
|
|
98
|
+
[Full Changelog](https://github.com/smallmiro/minecraft-server-manager/releases)
|
|
99
|
+
|
|
100
|
+
## AI Assistant
|
|
101
|
+
|
|
102
|
+
Get help using mcctl with our AI-powered assistant:
|
|
103
|
+
|
|
104
|
+
- **[NotebookLM AI Assistant](https://notebooklm.google.com/notebook/e91b656e-0d95-45b4-a961-fb1610b13962)** - Interactive Q&A about mcctl commands, configuration, and troubleshooting
|
|
105
|
+
|
|
106
|
+
You can also use the [LLM Knowledge Base](https://minecraft-server-manager.readthedocs.io/en/latest/documentforllmagent/) with ChatGPT, Claude, or other AI assistants:
|
|
107
|
+
|
|
108
|
+
1. Download the knowledge base document
|
|
109
|
+
2. Upload to your preferred AI assistant
|
|
110
|
+
3. Ask questions about mcctl usage
|
|
111
|
+
|
|
74
112
|
## Documentation
|
|
75
113
|
|
|
76
114
|
- [Full Documentation](https://minecraft-server-manager.readthedocs.io/)
|
|
115
|
+
- [REST API Reference](https://minecraft-server-manager.readthedocs.io/en/latest/api/)
|
|
77
116
|
- [GitHub Repository](https://github.com/smallmiro/minecraft-server-manager)
|
|
78
117
|
|
|
79
118
|
## License
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@minecraft-docker/mcctl",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.5",
|
|
4
4
|
"description": "CLI tool for managing Docker Minecraft servers with mc-router",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@clack/prompts": "^0.8.0",
|
|
51
51
|
"@minecraft-docker/mod-source-modrinth": "^1.0.0",
|
|
52
|
-
"@minecraft-docker/shared": "^1.6.
|
|
52
|
+
"@minecraft-docker/shared": "^1.6.5",
|
|
53
53
|
"commander": "^12.0.0",
|
|
54
54
|
"js-yaml": "^4.1.0",
|
|
55
55
|
"picocolors": "^1.1.0",
|