7478cdf4a4
* 3 new, 1 deleted New: rules.unitcapvariable rules.unitcap laccess.color Deleted: lenum.color * 1 line changed rules.unitcap * 2 new, 1 deleted New: mods.initfailed setting.modcrashdisable.name Deleted: mods.alphainfo - Отключение модов после вылета на старте * Fixed #4715 * Content parser class discovery improvements * Use github build status (#4718) Why does this still use travis? It was ditched months ago * Make status colors the same (#4719) It bothers me ok * Better splash damage handling for small radii * Fixed #4729 * Uncap content names in resolution * Fixed UnitReq parsing * Fixed #4732 * Allow JSON mod content types from other class loaders * Better JSON null validation / Disable mods on startup crash * Logic tooltips on mobile devices w/ long-press * Add Survival and PvP servers (#4736) * Update servers_v6.json (#4735) add 1 more server for CxZx * arc * Balance tweaks * Fixing remaining typos\errors in bundle_fr (#4397) * Fixing remaining typos errors in bundle_fr There are some errors that had managed to get through the verification. Imma chase them down! * added logic hints and some typo fixes * Fixing 2 typos in bundle.properties L1548: Color statement affects every following draw operations. * smolfixes * Fixed "fix" in #4397 * [Bundle][RO] Update (#4725) * [Bundle][RO] Update This PR was tested in-game and is ready to merge at any time. Changelog: - New strings/changes up to commit |
||
---|---|---|
.github | ||
android | ||
annotations | ||
core | ||
desktop | ||
fastlane | ||
gradle/wrapper | ||
ios | ||
server | ||
tests | ||
tools | ||
.gitignore | ||
build.gradle | ||
CONTRIBUTING.md | ||
gradle.properties | ||
gradlew | ||
gradlew.bat | ||
ISSUES.md | ||
jitpack.yml | ||
LICENSE | ||
README.md | ||
SERVERLIST.md | ||
servers_be.json | ||
servers_v6.json | ||
servers.json | ||
settings.gradle | ||
TRANSLATING.md |
A sandbox tower defense game written in Java.
Contributing
See CONTRIBUTING.
Building
Bleeding-edge builds are generated automatically for every commit. You can see them here.
If you'd rather compile on your own, follow these instructions.
First, make sure you have JDK 14 installed. Open a terminal in the root directory, cd
to the Mindustry folder and run the following commands:
Windows
Running: gradlew desktop:run
Building: gradlew desktop:dist
Sprite Packing: gradlew tools:pack
Linux/Mac OS
Running: ./gradlew desktop:run
Building: ./gradlew desktop:dist
Sprite Packing: ./gradlew tools:pack
Server
Server builds are bundled with each released build (in Releases). If you'd rather compile on your own, replace 'desktop' with 'server', e.g. gradlew server:dist
.
Android
- Install the Android SDK here. Make sure you're downloading the "Command line tools only", as Android Studio is not required.
- Set the
ANDROID_HOME
environment variable to point to your unzipped Android SDK directory. - Run
gradlew android:assembleDebug
(or./gradlew
if on linux/mac). This will create an unsigned APK inandroid/build/outputs/apk
.
To debug the application on a connected phone, run gradlew android:installDebug android:run
.
Troubleshooting
Permission Denied
If the terminal returns Permission denied
or Command not found
on Mac/Linux, run chmod +x ./gradlew
before running ./gradlew
. This is a one-time procedure.
Gradle may take up to several minutes to download files. Be patient.
After building, the output .JAR file should be in /desktop/build/libs/Mindustry.jar
for desktop builds, and in /server/build/libs/server-release.jar
for server builds.
Feature Requests
Post feature requests and feedback here.