mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-21 12:08:55 +01:00
* Bumps SpacemanDMM to 1.7.3 (#73346) <!-- Write **BELOW** The Headers and **ABOVE** The comments else it may not be viewable. --> <!-- You can view Contributing.MD for a detailed description of the pull request process. --> ## About The Pull Request On the tin. You can read more about what this update entails at the changelog here: https://github.com/SpaceManiac/SpacemanDMM/releases/tag/suite-1.7.3 . Just a lot of tools that were developed in 2021/2022/2023 that are finally available for use in this way thanks to a release. And more importantly: <!-- Describe The Pull Request. Please be sure every change is documented or this can delay review and even discourage maintainers from merging your PR! --> ## Why It's Good For The Game Fixes #67166 oh my god this has been irritating me for so long it should (theoretically) be fixed now since the code fixing this is now in the release's source phew the button to click actually takes you to where you need to go thank GOD <!-- Argue for the merits of your changes and how they benefit the game, especially if they are controversial and/or far reaching. If you can't actually explain WHY what you are doing will improve the game, then it probably isn't good for the game in the first place. --> ## Changelog <!-- If your PR modifies aspects of the game that can be concretely observed by players or admins you should add a changelog. If your change does NOT meet this description, remove this section. Be sure to properly mark your PRs to prevent unnecessary GBP loss. You can read up on GBP and it's effects on PRs in the tgstation guides for contributors. Please note that maintainers freely reserve the right to remove and add tags should they deem it appropriate. You can attempt to finagle the system all you want, but it's best to shoot for clear communication right off the bat. --> Nothing that particularly concerns players. <!-- Both 🆑's are required for the changelog to work! You can put your name to the right of the first 🆑 if you want to overwrite your GitHub username as author ingame. --> <!-- You can use multiple of the same prefix (they're only used for the icon ingame) and delete the unneeded ones. Despite some of the tags, changelogs should generally represent how a player might be affected by the changes rather than a summary of the PR's contents. --> * Bumps SpacemanDMM to 1.7.3 --------- Co-authored-by: san7890 <the@san7890.com>
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.0
|