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

Moved to Qt6 #14

Merged
merged 44 commits into from
Oct 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
fffcf92
added secondary screen
blauret Oct 13, 2022
4ab55d8
connected some datarefs
Oct 13, 2022
46c9cde
added more datarefs controls
blauret Oct 13, 2022
a0056e7
stop painting on network event
blauret Oct 14, 2022
10d42e7
updated logic for advisory panel
blauret Oct 14, 2022
571babc
updated to allow altimeter in hpa
blauret Oct 14, 2022
df4855a
added function desc
blauret Oct 14, 2022
0f22364
increased heading bug size
blauret Oct 17, 2022
3742d20
Added windows state restoration
Oct 23, 2022
9c48b86
Made the windows frameless
Oct 23, 2022
24fcec3
Merge branch 'secondary_screen' of github.com:blauret/pyG5 into secon…
blauret Oct 23, 2022
4b04b94
Realigned labels
blauret Oct 23, 2022
ae2a9b3
alligned flaps label
Oct 23, 2022
49419d3
Added display for the xpdr
blauret Oct 23, 2022
5e8f5b0
added key detection for the xpdr
blauret Oct 23, 2022
3edcf66
Removed file menu
Oct 24, 2022
9955368
added atttempt to write dataref
Oct 24, 2022
0d388da
added transmission of the xpdr code to xplane
blauret Oct 24, 2022
800263f
added transponder mode control
blauret Oct 24, 2022
da9e907
temp fix for the alt settings
blauret Oct 26, 2022
e4b3ce8
tried to restart rpi specific behavior
blauret Oct 26, 2022
29bad79
carb heat indication is viewable even when the
blauret May 1, 2023
2f58ac1
added parking brake to the annunciator panel
blauret May 1, 2023
2d36e29
Added altitude selector
May 2, 2023
c4dcc12
Added dataref for altitude selector
May 2, 2023
22a2d02
Updated the drawing of the altitude
blauret May 2, 2023
884657f
added altitude selector display
blauret May 2, 2023
fb9fd87
converted altsel to int
blauret May 3, 2023
720821e
improved altitude display
blauret May 3, 2023
cdc0f7d
updated for negative altitude
blauret May 3, 2023
8289756
initial change for mode
blauret May 3, 2023
574de34
Updated to have the gps annunciator correct
blauret May 4, 2023
dbf5005
First release with FMA
May 21, 2023
7b466b5
Updated FMA
May 21, 2023
a41724f
Solve crash when the altitude is negative
blauret May 22, 2023
8ec75fc
updated to PyQt6
blauret Oct 1, 2023
33f5808
updated ci to python 3.11
blauret Oct 1, 2023
483efa6
Added pyQt6 as requirements
blauret Oct 1, 2023
3b654b5
remove self install step
blauret Oct 1, 2023
c1b6e63
Updated to pySide6 to ease deployment on RPi
blauret Oct 6, 2023
eeba7ad
fixed incorrect requirement list
blauret Oct 6, 2023
0659718
cleaned up setup for raspberrypi
blauret Oct 7, 2023
b88d373
Fixed black check
blauret Oct 7, 2023
b462ca3
Fixed issue with passing Dict in a Signal
blauret Oct 7, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

env:
CACHE_VERSION: 1
DEFAULT_PYTHON: "3.10"
DEFAULT_PYTHON: "3.11"
PRE_COMMIT_HOME: ~/.cache/pre-commit

jobs:
Expand All @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
python-version: ["3.11"]
steps:
- name: Check out code from GitHub
uses: actions/checkout@v2
Expand Down Expand Up @@ -48,7 +48,6 @@ jobs:
. venv/bin/activate
pip install -U pip setuptools pre-commit
pip install -r requirements.txt
pip install -e .

pre-commit:
name: Prepare pre-commit environment
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
repos:
- repo: https://github.com/psf/black
rev: 22.3.0
rev: 23.3.0
hooks:
- id: black
args:
- --safe
- --quiet

- repo: https://gitlab.com/pycqa/flake8
- repo: https://github.com/pycqa/flake8
rev: 3.9.2
hooks:
- id: flake8
Expand All @@ -21,6 +21,6 @@ repos:
hooks:
- id: codespell
args:
- --ignore-words-list=dout,hass
- --ignore-words-list=dout,hass,hsi
- --skip="./.*"
- --quiet-level=2
23 changes: 23 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "ViewTester",
"type": "python",
"request": "launch",
"module": "pyG5.pyG5ViewTester",
"justMyCode": true
},
{
"name": "App",
"type": "python",
"request": "launch",
"module": "pyG5.pyG5Main",
"args": ["-v"],
"justMyCode": true
}
]
}
Loading
Loading