Go to file
Tobias Nett c3d5f34e9e
doc: add release guide (#680)
2022-09-03 13:18:21 +02:00
.devcontainer Add devcontainer for VS Code (#456) 2019-10-18 16:58:48 +02:00
.github build!: remove 32-bit Windows build (#673) 2022-08-22 19:16:34 +02:00
.idea build: runtime upgrade to Java 11.0.16.1 (from 11.0.7) (#672) 2022-08-22 09:22:35 +02:00
buildSrc chore: update license headers (#617) 2020-11-15 12:30:41 +01:00
buildres build!: remove 32-bit Windows build (#673) 2022-08-22 19:16:34 +02:00
config/gradle build!: remove 32-bit Windows build (#673) 2022-08-22 19:16:34 +02:00
docs doc: add release guide (#680) 2022-09-03 13:18:21 +02:00
gradle/wrapper build: update Gradle 6.8.2 >>> 7.1.1 (#644) 2021-07-27 19:49:39 -07:00
icons Move icons to resource folder 2016-04-04 00:24:25 +03:00
src feat: add request caching with OkHttp (#668) 2022-04-01 00:08:45 +02:00
.gitattributes fix: .gitattributes (#518) 2020-03-22 12:53:01 +01:00
.gitignore test: Fix Windows tests (#598) 2020-10-18 18:31:07 +02:00
.mailmap add .mailmap file 2019-10-11 17:24:33 +02:00
CHANGELOG.md release: 4.6.0 2022-09-03 12:15:06 +02:00
LICENSE Fixed header comments. 2013-02-21 13:38:30 +01:00
README.md doc: update documentation (#676) 2022-08-23 12:40:28 +02:00
api-config.json Adds gradle task to generate Web API client 2019-06-21 22:05:33 +05:30
build.gradle build: runtime upgrade to Java 11.0.16.1 (from 11.0.7) (#672) 2022-08-22 09:22:35 +02:00
gradlew build: update Gradle 6.8.2 >>> 7.1.1 (#644) 2021-07-27 19:49:39 -07:00
gradlew.bat build: update Gradle (6.4.1 >>> 6.7.1) (#618) 2020-11-30 19:51:55 +01:00
settings.gradle chore: update license headers (#617) 2020-11-15 12:30:41 +01:00

README.md

Community | Installation | Features | Development | Acknowledgements | License

Terasology Launcher is the official launcher for the open source game Terasology. It provides easy access to the different game versions and build types. Terasology and related projects are developed by a group of software enthusiast volunteers under the organization name MovingBlocks.

Community

If you want to get in contact with the Terasology community and the whole MovingBlocks team, you can easily connect with us, share your ideas, report and solve problems. We are present in nearly the complete round-up of social networks. Follow/friend us wherever you want, chat with us and tell the world.

 

                                  

Installation

  1. Download the corresponding archive for your platform from the latest release
  2. Extract the archive to the path where the launcher should be installed
  3. Start Terasology Launcher
Operating System Executable
Windows TerasologyLauncher.exe or bin/TerasologyLauncher.bat
Unix, Linux, Mac OS X bin/TerasologyLauncher

Features

The launcher installation directory is the folder you extracted the launcher archive into. This directory will also hold different versions of Terasology that are installed via the launcher.

On first start-up, the Terasology Launcher will prompt you with the selection of the Terasology data directory. The data directory is the place for configuration data and user-specific files such as key bindings and save games. The suggested default is a new directory in the user's home directory.

Terasology Launcher UI

The Terasology Launcher UI provides functionality to download, start, and delete different game versions. The game versions are grouped by the type of build they belong to:

Build Type Explanation
Terasology Released version of Terasology core game bundled with modules
Terasology Lite Released version of Terasology core game only

In addition to this main functionality, the UI displays information about new changes of the selected game version ("Changelog"), launcher information concerning changes, licensing and contribution guidelines ("About"), and logging data for the current launcher execution. Further, you have access to the social media representation of Terasology.

Terasology Launcher Settings UI

The settings view enables you to open the launcher installation, game installation and data directories for quick access. You can configure the memory settings for the game and even specify additional Java or game arguments as well as the logging level for the game. Please note, that the "Initial Game Memory" and "Maximum Game Memory" settings only apply to the game itself. The actual resource consumption may be higher due to additional resources required by the Java Virtual Machine (JVM).

The remaining settings can be used to configure the launcher. You can set the launcher language and decide whether the launcher should search for updates, close when a game is started and save downloaded game package files.

Development

To be able to run TerasologyLauncher from source follow these steps. This guide is designed for IntelliJ IDEA (you can use the free community edition), but alternative setups are possible.

:octocat: Get Ready

To contribute to this repo, please open a pull request from your fork of this repository.

For more information on building and developing the Terasology Launcher, make sure to read the rest of this README and CONTRIBUTING.md.

Requirements

You'll need the following tools:

  • Java SE Development Kit (JDK) 11. It should be possible to use a later version of the JDK for local development, please see the definition of push validation for the exact CI setup.
  • Git to clone the repo and commit changes.

Development is possible on all common platforms (Windows, Linux, MacOS).

🤓 Start developing

Familiarise yourself with Git's concept of repositories, branches, and commits. To get the latest changes from remote repositories you need to fetch all remote data via git fetch --all. This does not change your workspace, it just loads up your local Git database.

Apart from Git, basically everything can be done using the Gradle wrapper. The following list is an excerpt of some commonly used tasks.

Command Description
gradlew build Compile the source code, run tests and build a JAR.
gradlew install Create a local runnable installation (placed in ./build/install/TerasologyLauncher).
gradlew run Build and run the launcher.
gradlew createRelease Create a local development release (located in ./build/distributions).
gradlew tasks Display other available build script tasks.

Assume you have pushed some changes to your fork into a branch myFeature. In order to let us know about your work and give us the possibility to incorporate your changes you should send us a pull request. You can do this by selecting the myFeature branch on your GitHub repo and click the button which says "Open pull request".

More information on how to contribute can be found in CONTRIBUTING.md. Remember, that all submissions must be licensed under Apache License, Version 2.0.

📚 Related Resources

Tutorials and further information on Git:

Developer setup tutorials for our main project, Terasology:

Acknowledgements

Terasology Launcher is driven by its contributors!

This project uses

License

Terasology Launcher is licensed under the Apache License, Version 2.0.