• Sirherobrine23 released this 2021-05-07 02:43:46 +00:00 | 863 commits to main since this release

    like all projects we have, mistakes to fix, vulnerabilities to fix, and new features that won't make anyone happy.

    • a new server for Minecraft Bedrock has been added to the family, welcome JSPrismarine.

    • we modified the entire start of basic_service.js now it will return new functions:

    1. start().log(callback)
    const server = bds.start()
    server.log(function (data){
       fs.writeFileSync("/tmp/LogTest.log", data)
       if (data.slice(-1) === "\n") data = data.slice(0, -1)
       console.log(data)
    })
    
    1. start().command(string, callback)
       const server = bds.start()
       server.command("list", log => alert(log))
    
    • a new script to download from the servers.
    1. you can now force the installation if you have already done so. example bds.download (" latest ", true), bds.download (" 1.16.5 ", false)
    • now it will not be necessary to restart the entire project in order for a new configuration to take effect, as they will be requested at the time of execution.

    • Rest API

    1. entered Alpha, adding maps directly via a post in our api.

    2. now /info will give a summary of the system and the server.

    3. now most of the requests are responding with JSON.

    now you have a script to check if wget/curl is installed because we don't have a fetch.sync yet

    • initial support for termux (Android), some features may fail or not work properly.

    • a Docker image is under construction for the general functioning of the servers.

    • replacing some dependencies made by the project itself.

    Downloads