Skip to content

Commit 4490cfb

Browse files
committed
chore: Update changelog and docs
1 parent d071bf0 commit 4490cfb

File tree

7 files changed

+63
-5
lines changed

7 files changed

+63
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
- Teleport player back to the spawn when they go bellow the world boundaries
1313
- Time can now be configured in the configuration file
14+
- Tab list header and footer customization
15+
- Player now shows up in the tab list
16+
- Added support for player skins
1417

1518
### Changed
1619

@@ -20,6 +23,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2023
- Format for the forwarding configuration changed (refer to the docs)
2124
- Spawn dimension setting was renamed to dimension and moved to the world section
2225

26+
### Fixed
27+
28+
- High memory usage when sending a large schematic over the network
29+
2330
## [1.5.2+mc1.21.8] - 2025-09-06
2431

2532
### Fixed

docs/.vitepress/config.mts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ export default defineConfig({
3939
{ text: "World Configuration", link: "/config/world.html" },
4040
{ text: "Proxy Integration", link: "/config/proxy-integration.html" },
4141
{ text: "Server List", link: "/config/server-list.html" },
42-
{ text: "Experimental World Features", link: "/config/experimental_world.html" },
42+
{ text: "Tab List", link: "/config/tab-list.html" },
43+
{ text: "Experimental World Features", link: "/config/experimental-world.html" },
4344
{
4445
text: "Default Configuration",
4546
link: "/config/default-configuration.html",
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,3 @@ The message can be disabled by setting an empty string:
104104
teleport_message = ""
105105
```
106106
:::
107-

docs/config/introduction.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ PicoLimbo uses a simple TOML configuration file to manage all server settings. T
99
- [Server Settings](./server-settings) - Core server configuration
1010
- [Server List Settings](./server-list) - Customize your server's appearance in the Minecraft client
1111
- [Forwarding Proxy Settings](./proxy-integration) - Configure proxy integration
12+
- [Tab List](./tab-list) - Configure the tab list
1213
- [World Settings](./world) - Configure the world
13-
- [Experimental World Settings](./experimental_world) - Experimental features for world customization
14+
- [Experimental World Settings](./experimental-world) - Experimental features for world customization

docs/config/tab-list.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Tab List Settings
2+
3+
Representing the `[tab_list]` section in `server.toml`.
4+
5+
Both the header and the footer supports [MiniMessage formatting](/customization/message-formatting.html) for colors and styling.
6+
You can use `\n` for line breaks in multi-line headers and footers.
7+
8+
> [!NOTE]
9+
> You can fully disable the tab list by setting both the header and footer to an empty string.
10+
11+
## Header
12+
13+
The header text displayed at the top of the player list.
14+
15+
:::code-group
16+
```toml [server.toml] {2}
17+
[tab_list]
18+
header = "<bold>Welcome to PicoLimbo</bold>"
19+
```
20+
:::
21+
22+
The header can be disabled by setting an empty string:
23+
24+
:::code-group
25+
```toml [server.toml] {2}
26+
[tab_list]
27+
header = ""
28+
```
29+
:::
30+
31+
## Footer
32+
33+
:::code-group
34+
```toml [server.toml] {2}
35+
[tab_list]
36+
footer = "<green>Enjoy your stay!</green>"
37+
```
38+
:::
39+
40+
The footer can be disabled by setting an empty string:
41+
42+
:::code-group
43+
```toml [server.toml] {2}
44+
[tab_list]
45+
footer = ""
46+
```
47+
:::

docs/config/tablist.md

Whitespace-only changes.

docs/index.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ hero:
1414
text: Documentation
1515
link: /about/introduction/
1616
- theme: alt
17-
text: Community & Support
17+
text: Join Discord
1818
link: https://discord.gg/M2a9dxJPRy
1919

2020
features:
@@ -33,6 +33,9 @@ features:
3333
details: "Integrates with all major Minecraft proxies: Velocity, BungeeCord and BungeeGuard authentication."
3434
link: /config/proxy-integration
3535
linkText: Read the documentation
36+
- icon: 👤
37+
title: Skin Support
38+
details: "Player skins are supported. What else to say about that?"
3639
- icon: ⚙️
3740
title: Highly Configurable
3841
details: "Customize your server using a simple TOML configuration file."
@@ -41,6 +44,6 @@ features:
4144
- icon: 🌍
4245
title: Schematic World (Experimental)
4346
details: "Load a custom world from a schematic file and customize spawn location (1.19+ only)."
44-
link: /config/experimental_world.html
47+
link: /config/experimental-world.html
4548
linkText: Read the documentation
4649
---

0 commit comments

Comments
 (0)