Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] primary from flybywiresim:primary #57

Merged
merged 41 commits into from
Nov 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
e52c35a
refactor: Multiple Aircraft Restructure
frankkopp Oct 31, 2024
728f730
Removed old hero banner
frankkopp Oct 31, 2024
f11999e
modification to css
frankkopp Oct 31, 2024
d65775d
backup image for hero
frankkopp Oct 31, 2024
242ccf8
updated SOP links
frankkopp Oct 31, 2024
24ecfdd
removed todo
frankkopp Oct 31, 2024
405c35a
docs: Clean up TODO and small fixes (#1035)
frankkopp Nov 1, 2024
0fe6dc3
Update TODO
frankkopp Nov 1, 2024
103b381
Typo fixes
frankkopp Nov 2, 2024
4867d59
Added CCD KBD sw
frankkopp Nov 2, 2024
e672455
Added CCD KBD sw
frankkopp Nov 2, 2024
8d4fd0a
Update ToDo
frankkopp Nov 2, 2024
4a55a79
fix layout resets page
frankkopp Nov 2, 2024
43152a0
Update ToDo
frankkopp Nov 2, 2024
0531831
fixed telex redirect
frankkopp Nov 2, 2024
a6e6f29
docs: Release notes v0.12.1 (#1039)
frankkopp Nov 2, 2024
b8dd0d8
fix: release-notes overview links
Valastiri Nov 2, 2024
5e7efc0
quick fix release notes
frankkopp Nov 2, 2024
57c7011
docs: Volume and Voice description RPM Panel (#1046)
LunakisDev Nov 4, 2024
e506e74
style: Cockpit lighting hover sections fix (#1045)
LunakisDev Nov 4, 2024
6e8b418
docs: Typo fix "KCCU to KBD" (#1042)
LunakisDev Nov 4, 2024
8c5bfe8
refactor: a380x beginner guide admonition link issues (#1043)
Valastiri Nov 4, 2024
7acc6a6
Updates to file list
frankkopp Nov 4, 2024
e399ef3
fix: A32NX release notes and build warning
Valastiri Nov 4, 2024
1786331
refactor: change sponsor information to cloudflare
Valastiri Nov 5, 2024
e002276
removed visible ToDo
frankkopp Nov 6, 2024
c7639ea
hot fix to A380X flight planning page
frankkopp Nov 6, 2024
ff36fb9
typo fix
frankkopp Nov 7, 2024
707030c
docs: added note to use SURV page instead of SURV panel (#1053)
frankkopp Nov 8, 2024
f2c9454
docs: added rel 0.12.2 notes (#1054)
frankkopp Nov 9, 2024
375ca12
added pitch trim anchor in bg
frankkopp Nov 9, 2024
5d6068b
Fixing links on A32NX Briefing ECAM SD page
frankkopp Nov 9, 2024
b3ced25
docs: added release notes for 0.12.3 (#1055)
Saschl Nov 9, 2024
def30d0
removed a visible todo
frankkopp Nov 11, 2024
caabb30
feat: Adding PR Build and Deploy actions for all PRs (#1056)
pdellaert Nov 13, 2024
80e6ae2
docs: update FCU AFS and EFIS CP API for FMGC PR
lukecologne Nov 15, 2024
8227d81
docs: updated installation and version pages for A380X Dev version (#…
frankkopp Nov 16, 2024
cdf9ae4
refactor: Restructure of dev-corner
frankkopp Nov 16, 2024
e17f9f3
fix: a32nx sop online preview links
jgorol Nov 16, 2024
42ae1e2
fix: correct some copy paste errors in EFIS docs
lukecologne Nov 16, 2024
75a2c71
Reformatting tables
frankkopp Nov 16, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
29 changes: 29 additions & 0 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# build-preview.yml
name: PR Build Preview for Cloudflare

on:
pull_request:
types: [opened, synchronize]

jobs:
build-preview:
runs-on: ubuntu-latest
name: Build Preview Site and Upload Build Artifact
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install requirements
run: pip install -r requirements.txt
- name: Build PR
run: mkdocs build

# Uploads the build directory as a workflow artifact
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: preview-build
path: site
39 changes: 39 additions & 0 deletions .github/workflows/pr-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# deploy-preview.yml
name: PR Upload Preview to Cloudflare
on:
workflow_run:
workflows: ['PR Build Preview for Cloudflare']
types:
- completed

permissions:
actions: read
deployments: write
contents: read
pull-requests: write

jobs:
deploy-preview:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
name: Deploy Preview to Cloudflare Pages
steps:
# Downloads the build directory from the previous workflow
- name: Download build artifact
uses: actions/download-artifact@v4
id: preview-build-artifact
with:
name: preview-build
path: build
github-token: ${{ secrets.GITHUB_TOKEN }}
run-id: ${{ github.event.workflow_run.id }}

- name: Deploy to Cloudflare Pages
uses: AdrianGonz97/refined-cf-pages-action@v1
with:
apiToken: ${{ secrets.CLOUDFLARE_PAGES_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_PAGES_ACCOUNT_ID }}
githubToken: ${{ secrets.GITHUB_TOKEN }}
projectName: ${{ secrets.CLOUDFLARE_DOCS_PROJECT }}
deploymentName: Preview
directory: ${{ steps.preview-build-artifact.outputs.download-path }}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
~*
/.run/
/.idea/
/site/
/.cache/
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ Note: Please be aware that sub-directories are present in the parent directories

---

[![Powered by Vercel](https://www.datocms-assets.com/31049/1618983297-powered-by-vercel.svg)](https://vercel.com/?utm_source=[flybywiresim]&utm_campaign=oss "Powered by Vercel")
Runs on Cloudflare®

![cloudflare-logo.png](docs/assets/images/cloudflare-logo.png)


2 changes: 1 addition & 1 deletion WIP/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ automatically download it into the proper folder. The installer will always chec

Our installer also features SimBridge - our custom-built application to utilize remote tools. Check out the dedicated page for upcoming features and their status:

[SimBridge](../docs/simbridge/index.md){ .md-button }
[SimBridge](../docs/tools/simbridge/index.md){ .md-button }

---

Expand Down
16 changes: 8 additions & 8 deletions archive/exp.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ We are testing the new FWS (Flight Warning System) which replaces the previous p
See technical details in the respective
[GitHub Pull Request #4872](https://github.com/flybywiresim/aircraft/pull/4872){target=new}.

![fws-init-ecam](../docs/pilots-corner/assets/beginner-guide/starting-aircraft/fws-init-ecam.png){loading=lazy width=50%}
![fws-init-ecam](../docs/pilots-corner/a32nx/assets/beginner-guide/starting-aircraft/fws-init-ecam.png){loading=lazy width=50%}

Summary:

Expand All @@ -34,15 +34,15 @@ powered by the FWS truly won't work when both FWCs are unpowered or have failed.

The following are features in testing that require the use of SimBridge:

- [Terrain Display](../docs/simbridge/simbridge-feature-guides/terrain.md) - **Now Available on the Development Version**
- [Terrain Display](../docs/tools/simbridge/simbridge-feature-guides/terrain.md) - **Now Available on the Development Version**
- Remote MCDU (Web MCDU) - **Now Available on the Development Version**
- [Setup and Configuration Guide](../docs/simbridge/simbridge-feature-guides/remote-displays/remote-mcdu.md)
- [Usage Guide](../docs/simbridge/simbridge-feature-guides/remote-displays/remote-mcdu.md)
- [Company Routes](../docs/simbridge/simbridge-feature-guides/coroute.md) - **Now Available on the Development Version**
- [Setup and Configuration Guide](../docs/tools/simbridge/simbridge-feature-guides/remote-displays/remote-mcdu.md)
- [Usage Guide](../docs/tools/simbridge/simbridge-feature-guides/remote-displays/remote-mcdu.md)
- [Company Routes](../docs/tools/simbridge/simbridge-feature-guides/coroute.md) - **Now Available on the Development Version**

!!! tip "SimBridge Information"
- Learn about SimBridge and further status of various features, please - [Read Here](../docs/simbridge/index.md).
- [SimBridge setup and configuration guide](../docs/simbridge/install-configure/configuration.md).
- Learn about SimBridge and further status of various features, please - [Read Here](../docs/tools/simbridge/index.md).
- [SimBridge setup and configuration guide](../docs/tools/simbridge/install-configure/configuration.md).

### Pause at Top of Descent (TOD)

Expand Down Expand Up @@ -137,4 +137,4 @@ the C* law, this is incorrect and will result in issues if no ADR is available.

### Download and Install

See [Installation Guide](../docs/fbw-a32nx/installation.md#downloads).
See [Installation Guide](../docs/aircraft/install/installation.md#downloads).
13 changes: 0 additions & 13 deletions archive/flypados2/.pages

This file was deleted.

31 changes: 0 additions & 31 deletions archive/flypados2/charts.md

This file was deleted.

88 changes: 0 additions & 88 deletions archive/flypados2/dashboard.md

This file was deleted.

Loading
Loading