aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 9826cd33ff6431ba19a66221f2b6a943e79a5ee3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<p align="center">
	<img src="docs/assets/Square310x310Logo.png" width="200px"><br>
</p>

# FlightCore

A [Northstar](https://northstar.tf/) installer, updater, and mod-manager

![FlightCore screenshot](docs/assets/main-window-screenshot.png)

## Roadmap

--> See https://github.com/R2NorthstarTools/FlightCore/issues/1

## Download

Head to over to [releases](https://github.com/R2NorthstarTools/FlightCore/releases) and download
- **Windows:** `FlightCore_X.Y.Z_x64_en-US.msi`
or
- **Linux:** `flight-core_X.Y.Z_amd64.AppImage` .

## Development

If you'd like to contribute to FlightCore, see [docs/DEVELOPMENT.md](docs/DEVELOPMENT.md)

## Why yet another Northstar intaller/updater/mod-manager instead of contributing to an existing one?

The 3 main GUI tools for handling such tasks with Norhtstar are

- [r2modman](https://github.com/ebkr/r2modmanPlus)
- [Viper](https://github.com/0neGal/viper)
- [VTOL](https://github.com/BigSpice/VTOL)

while they get most of the work done, each of them has their own problem.

- **r2modman** has not too great UX and given that it also has to support other games there's not a(n easy) way to quickly add new features specific to Northstar
- **Viper** probably has the best UX but is missing features such as Origin process runtime detection (to avoid LSX errors) and lacks the ability to install Northstar from Thunderstore.
- **VTOL** has recently undergone a rewrite that removes a lot of older issues (such as requiring to be run as admin), however it is Windows exclusive and requires installing an additional library not shipped directly with the application, confusing some users. It also has a lot of edge case handling that while giving a smoother user experience blows up code base complexity.

With that said, FlightCore is not written from scratch. For handling Northstar specific logic, functions are re-used from the CLI-only Northstar installer called [papa](https://github.com/AnActualEmerald/papa) by making use of the underlying library [libthermite](https://crates.io/crates/libthermite).

The plan is to upstream any changes to `libthermite` so that it can be re-used by any other Rust-based Northstar installer.