https://github.com/veloren/Airshipper
The official Veloren launcher! This repository is a mirror. Please submit all PRs and issues on our GitLab page: https://gitlab.com/veloren/airshipper
https://github.com/veloren/Airshipper
game launcher rust veloren
Last synced: 2 months ago
JSON representation
The official Veloren launcher! This repository is a mirror. Please submit all PRs and issues on our GitLab page: https://gitlab.com/veloren/airshipper
- Host: GitHub
- URL: https://github.com/veloren/Airshipper
- Owner: veloren
- License: gpl-3.0
- Created: 2020-01-24T17:31:02.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-12-28T17:14:01.000Z (4 months ago)
- Last Synced: 2025-02-05T09:02:12.296Z (2 months ago)
- Topics: game, launcher, rust, veloren
- Language: Rust
- Homepage: https://veloren.net/download
- Size: 13.2 MB
- Stars: 262
- Watchers: 6
- Forks: 33
- Open Issues: 50
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .gitlab/CODEOWNERS
Awesome Lists containing this project
- awesome-iced - Airshipper - The official launcher for Veloren. (Projects Using iced)
README
# Airshipper
[](https://github.com/veloren/Airshipper/releases) [](https://github.com/veloren/Airshipper/blob/master/LICENSE) [](https://discord.gg/rvbW3Z4) [](https://aur.archlinux.org/packages/airshipper/)
A cross-platform Veloren launcher.

## Features
- [x] Update/Download and start nightly/weekly.
- [x] Fancy UI with batteries included.
- [x] Updates itself on windows.## Download
**NOTE:** Airshipper cannot be considered stable yet.
For *binary* packages the gitlab releases can be used.
For *source* packages **do not** use the `master` branch. Always package latest release either via tag (`v*.*.*`) or branch (`r*.*`) as master is unstable and contains work in progress features.
#### Compile from source
```bash
git clone https://gitlab.com/veloren/airshipper.git
cd airshipper
cargo run --release
```Make sure to have [rustup](https://rustup.rs/) installed to compile rust code and [git lfs](https://book.veloren.net/contributors/development-tools.html#git-lfs) for assets.
### Airshipper-Server
**NOTE:** Airshipper-Server is not required by end-users.
#### Compile from source
```bash
git clone https://gitlab.com/veloren/airshipper.git
cd airshipper
cargo run --release --bin airshipper-server
```On first execution, a template configuration file will be created at `config/config.template.ron` and the server will exit.
Rename this to `config.ron` and edit as appropriate before running again.
```bash
cargo run --release --bin airshipper-server
```#### For NixOS users
You can install Airshipper with:
- Flakes enabled Nix: `nix profile install gitlab:veloren/Airshipper`
- Flakes disabled Nix: `nix-env -i -f "https://gitlab.com/veloren/Airshipper/tarball/master"`