Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 1.15 KB

README.md

File metadata and controls

45 lines (35 loc) · 1.15 KB

Minecraft BDS versions

LinuxWindows
Stable 1.21.42.01 1.21.42.01
Preview 1.21.50.25 1.21.50.25

This repository acts as an automatic archive of BDS versions. You can consume the versions.json file to get the stable build and a history of versions.

An example to get the latest stable build:

#!/bin/bash

LATEST_VERSION=`curl -s https://raw.githubusercontent.com/Bedrock-OSS/BDS-Versions/main/versions.json | jq -r '.linux.stable'`

echo "The latest Linux BDS is [${LATEST_VERSION}]"

DOWNLOAD_URL=`curl -s https://raw.githubusercontent.com/Bedrock-OSS/BDS-Versions/main/linux/${LATEST_VERSION}.json | jq -r '.download_url'`

wget ${DOWNLOAD_URL}

People using this repo