Skip to content

Commit c2af64f

Browse files
authored
Merge pull request #17 from Navigraph/rewrite
refactor: new interface executor
2 parents e323579 + b1d1544 commit c2af64f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+3851
-3120
lines changed

Cargo.lock

+856-129
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[workspace]
22
resolver = "2"
33

4-
members = ["src/wasm", "src/database"]
4+
members = ["src/wasm"]
55

66
[profile.release]
77
lto = true

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
FROM ghcr.io/navigraph/cargo-msfs-bin:latest AS base
22

3+
RUN apt-get update
34
RUN apt install git -y
45

56
RUN cargo-msfs install msfs2020
@@ -9,7 +10,6 @@ FROM base AS builder
910

1011
WORKDIR /external
1112

12-
COPY rust-toolchain.toml ./
13-
RUN rustup show
13+
1414

1515
COPY . .

docs/RFC 001.md docs/RFC001.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ To be Reviewed By: Markus Hamburger, Malte Hallström, Jack Lavigne
44

55
Authors: Alex Cutforth
66

7-
Status: Active
7+
Status: Outdated
8+
9+
Date: Feb 1, 2024
810

911
## Problem
1012

examples/aircraft/PackageSources/NavigationData/foo.txt

Whitespace-only changes.

examples/gauge/Components/Pages/Test/Test.tsx

+6
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,12 @@ export class TestPage extends DisplayComponent<TestPageProps> {
209209
inputAlt?.replace("[", "").replace("]", "").replace('"', "").split(",") ?? [],
210210
),
211211
},
212+
{
213+
index: 27,
214+
arguments: [],
215+
name: "GetDatabaseInfo",
216+
functionCallback: () => this.props.interface.get_database_info(),
217+
},
212218
]
213219

214220
private readonly input1 = Subject.create("")

src/database/Cargo.toml

-14
This file was deleted.

0 commit comments

Comments
 (0)