bedrock support

This commit is contained in:
2026-03-11 23:29:13 +00:00
parent cf3e2c8c78
commit 28be3105b6
7 changed files with 200 additions and 10 deletions
+30
View File
@@ -9,6 +9,7 @@ Automatically detects new Minecraft releases and posts them to a subreddit.
- ✅ Tracks posted versions to avoid duplicates
- ✅ Runs continuously with configurable check interval
- ✅ Supports multiple release types (releases, snapshots, etc.)
-**Bedrock Edition support** - Detects Windows Bedrock releases
- ✅ Docker & Docker Compose ready
-**Customizable post templates via subreddit wiki**
-**Different post formats for different release types**
@@ -60,6 +61,35 @@ snapshot:
👉 See [WIKI_CONFIG.md](WIKI_CONFIG.md) for complete setup and examples.
## Bedrock Edition Support
The bot can track **Minecraft Bedrock Edition (Windows)** releases in addition to Java Edition.
**To enable Bedrock tracking:**
1. **With Docker:** Add to your `.env` file:
```
CHECK_BEDROCK=true
```
2. **Manual:** Set environment variable before running:
```bash
set CHECK_BEDROCK=true
python main.py
```
3. **Configure Bedrock posts** in your wiki page (optional):
```yaml
bedrock-windows:
title: "Minecraft Bedrock {version} Available (Windows)"
body: |
# Bedrock Edition {version}
Download from the Microsoft Store
**Released:** {release_date}
```
The bot will now check for both Java and Bedrock releases every cycle, posting about each separately.
## Manual Setup
### 1. Install Dependencies