@minecraft-docker/mcctl 2.5.0 → 2.6.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 +18 -0
- package/README.md +4 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,24 @@ 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.6.0] - 2026-02-17
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **Console Server Properties Full UI** - Complete server configuration management with 6 sections and ~40 fields using Progressive Disclosure pattern (#365, #366)
|
|
12
|
+
- General section: server name, MOTD, max players, difficulty, game mode, hardcore
|
|
13
|
+
- World section: level name, seed, level type, world generation settings
|
|
14
|
+
- Performance section: view distance, simulation distance, max tick time, network compression
|
|
15
|
+
- Network section: server port, enable query, enable RCON, connection settings
|
|
16
|
+
- Advanced section: spawn protection, max world size, entity limits, function permission level
|
|
17
|
+
- Operators section: enforce whitelist, enforce secure profile, OP permission level
|
|
18
|
+
- Collapsible sections with Progressive Disclosure for reduced cognitive load
|
|
19
|
+
- Real-time config updates via ConfigService REST API
|
|
20
|
+
|
|
21
|
+
### Tests
|
|
22
|
+
- **ConfigService Field Tests** - Add 22 unit tests for new ConfigService fields and 6 API integration tests (#367, #368)
|
|
23
|
+
- Full coverage for all ~40 config fields across 6 sections
|
|
24
|
+
- GET/PUT API endpoint tests for server configuration
|
|
25
|
+
|
|
8
26
|
## [2.5.0] - 2026-02-17
|
|
9
27
|
|
|
10
28
|
### Added
|
package/README.md
CHANGED
|
@@ -77,6 +77,10 @@ mcctl logs myserver
|
|
|
77
77
|
|
|
78
78
|
## Changelog
|
|
79
79
|
|
|
80
|
+
### v2.6.0 (2026-02-17)
|
|
81
|
+
- **feat(console)**: Server Properties Full UI - 6 sections, ~40 fields with Progressive Disclosure (#365, #366)
|
|
82
|
+
- **test(api)**: Add 22 ConfigService tests + 6 API integration tests (#367, #368)
|
|
83
|
+
|
|
80
84
|
### v2.5.0 (2026-02-17)
|
|
81
85
|
- **feat(console)**: Add Online Mode and Whitelist security settings UI (#357, #358, #362)
|
|
82
86
|
- **fix(api)**: Pass memory parameter to create-server.sh (#356, #360)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@minecraft-docker/mcctl",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.6.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.6.0",
|
|
59
|
+
"@minecraft-docker/shared": "^2.6.0",
|
|
60
60
|
"better-sqlite3": "^12.6.2",
|
|
61
61
|
"commander": "^12.0.0",
|
|
62
62
|
"js-yaml": "^4.1.0",
|