mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-31 03:52:31 +00:00
## About The Pull Request I had to add new Windows signatures to auxtools so it would work on 515. I then had to bump the auxtools lua dependency and push a new release version. This PR bumps the auxlua dependency version. ## Why It's Good For The Game Fixes admin lua scripting on Windows for 515, for now (it will probably break again as more 515 beta releases come down the pipeline, but what else can you do about it? It's probably still broken on Linux but that's because nobody's found the 515 function signatures on Linux.) ## Changelog 🆑 admin: Fixed admin lua scripting on Windows-hosted servers running on beta version 515.1602 (the latest version as of this change) /🆑
28 lines
517 B
Bash
28 lines
517 B
Bash
#!/bin/sh
|
|
|
|
#Project dependencies file
|
|
#Final authority on what's required to fully build the project
|
|
|
|
# byond version
|
|
export BYOND_MAJOR=514
|
|
export BYOND_MINOR=1588
|
|
|
|
#rust_g git tag
|
|
export RUST_G_VERSION=1.2.0
|
|
|
|
#node version
|
|
export NODE_VERSION=14
|
|
export NODE_VERSION_PRECISE=14.16.1
|
|
|
|
# SpacemanDMM git tag
|
|
export SPACEMAN_DMM_VERSION=suite-1.7.3
|
|
|
|
# Python version for mapmerge and other tools
|
|
export PYTHON_VERSION=3.9.0
|
|
|
|
#auxlua repo
|
|
export AUXLUA_REPO=tgstation/auxlua
|
|
|
|
#auxlua git tag
|
|
export AUXLUA_VERSION=1.4.1
|