Skip to content

Release v0.0.30-alpha

Latest

Choose a tag to compare

@github-actions github-actions released this 13 Dec 17:05
· 8 commits to main since this release

Downloads

  • Woodlanders-Windows-Portable.zip - Windows executable with bundled JRE (no Java installation required)
  • Woodlanders-Linux-x86_64.AppImage - Linux executable with bundled JRE (no Java installation required)
  • woodlanders-launcher-installer.zip - Launcher installer with auto Java/JavaFX setup (recommended for new users)
  • woodlanders-launcher.jar - Standalone launcher JAR (requires Java 21+)
  • woodlanders-client.jar - Client JAR (requires Java 21+)
  • woodlanders-server.jar - Dedicated server JAR (requires Java 21+)

Launcher Installer

The launcher installer (woodlanders-launcher-installer.zip) provides:

  • Automatic Java 21 + JavaFX installation (if needed)
  • Desktop and Start Menu shortcuts
  • Multi-language support (English, Polish, Portuguese, Dutch, German)
  • Auto-updates game from GitHub releases
  • Version management and offline mode

Installation: Extract the ZIP and run woodlanders-setup-launcher.exe

Latest Launcher: Download the latest launcher here - easiest option, you don't need to constantly download new versions. This launcher handles it all for you.

Available Launcher Platforms:

  • Windows: woodlanders-launcher-windows-installer.zip (158 KB)
  • macOS: woodlanders-launcher-macos-0.1.2.dmg (255 MB)
  • Linux (Flatpak): woodlanders-launcher.flatpak (207 MB)
  • Linux (Snap): woodlanders-launcher_0.1.2_amd64.snap (201 MB)

Server Requirements by Player Count

Players CPU Cores RAM Upload Speed
5-10 2 1GB 2 Mbps
10-20 2-4 2GB 5 Mbps
20-50 4 4GB 10 Mbps
50+ 8+ 8GB 20 Mbps

Server Launch Commands

# Basic start
java -jar woodlanders-server.jar

# Basic & config
java -jar woodlanders-server.jar --config server.properties

# With memory allocation
java -Xms2G -Xmx2G -jar woodlanders-server.jar

# With memory & config
java -Xms2G -Xmx2G -jar woodlanders-server.jar --config server.properties

# With custom port
java -jar woodlanders-server.jar --port 7777

# With all options
java -Xms4G -Xmx4G -XX:+UseG1GC -jar woodlanders-server.jar --port 25565 --max-clients 50