aboutsummaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2023-03-27fix: Address regression around persistent store (#227)GeckoEidechse
* fix: Pin tauri-plugin-store package to same commit Pin npm package to same commit as Rust crate * fix: Attempt using newest plugin store commit * fix: Perform explicit save to store on each change This seems to resolve the issue around no longer writing changes to store on close as now values are written on each change. * chore: Pin dependencies to specific commit Instead of tracking a branch, track a specific commit
2023-02-05feat: Auto-generate TS bindings (#140)GeckoEidechse
* feat: Initial trial to auto-generate TS bindings That way instead of manually duplicating code, we can just run `cargo test` to generate them. * fix: Update forgotten imports * refactor: Move FlightCoreVersion to autogen bind TypeScript binding autogenerated from Rust code * refactor: Move ReleaseInfo to autogen binding TypeScript binding autogenerated from Rust code * docs: Explain how to generate TS binds from Rust * feat: Check for binding changes in CI Checks for uncommitted binding changes in CI and fails if they differ * style: Formatting fixes
2023-01-31docs: Redirector to up-to-date releases (#151)0neGal
* Add GitHub pages download redirector Very simply put, this fetches the current release, and translates search queries like `?appimage` into the download URL for the most recent .AppImage file, then redirects you to it, effectively downloading it. * Update download link to use redirector Now the link doesn't have to be updated every time there's a release!
2022-11-30docs: Mention semantic commit messages (#96)GeckoEidechse
2022-11-30docs: Mention ways of reaching out (#90)GeckoEidechse
* docs: Mention ways of reaching out * docs: Mention Akystrasz as point of contact :)
2022-11-29docs: General cleanup (#89)GeckoEidechse
* docs: Remove section mentioning old compile method This method no longer works since the UI rewrite and switch to Vue * docs: Add note about auto-recompile * docs: Make setup instructions a bit clearer * docs: Format word bold "backend" was formatted but "frontend" wasn't cause I overlooked it.
2022-11-29docs: Add download button to README (#87)GeckoEidechse
* docs: Add download button to README * docs: Move Roadmap to the end of README * docs: Improve installation section More structured and hopefully easier to follow. * docs: Add shields for version and GitHub downloads
2022-11-29docs: Improve developer documentation (#88)GeckoEidechse
* docs: Add persistent store section heading * docs: Document interaction frontend<->backend * docs: Mention Element Plus component library
2022-11-28docs: Mention design goals of FlightCore (#81)GeckoEidechse
2022-11-28docs: Add FAQ (#82)GeckoEidechse
* docs: Move question to FAQ * docs: Add question about contributing * docs: Add question about FlightCore * docs: Add question about Northstar
2022-11-28docs: Link Tauri intro and tutorial (#79)GeckoEidechse
2022-11-28docs: Introduce languages used in FlightCore (#78)GeckoEidechse
2022-11-26docs: Move development docs to own file (#75)GeckoEidechse