mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
Compare commits
2 Commits
develop-7.
...
develop_2_
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8c1f3e8116 | ||
|
|
df00059d3f |
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
@@ -18,12 +18,12 @@ jobs:
|
|||||||
|
|
||||||
- name: Install environment
|
- name: Install environment
|
||||||
run: |
|
run: |
|
||||||
py -m venv ./venv
|
python -m venv ./venv
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
./venv/scripts/activate
|
./venv/scripts/activate
|
||||||
pip install -r requirements.txt
|
python -m pip install -r requirements.txt
|
||||||
# For some reason the shiboken2.abi3.dll is not found properly, so I copy it instead
|
# For some reason the shiboken2.abi3.dll is not found properly, so I copy it instead
|
||||||
Copy-Item .\venv\Lib\site-packages\shiboken2\shiboken2.abi3.dll .\venv\Lib\site-packages\PySide2\ -Force
|
Copy-Item .\venv\Lib\site-packages\shiboken2\shiboken2.abi3.dll .\venv\Lib\site-packages\PySide2\ -Force
|
||||||
|
|
||||||
|
|||||||
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
@@ -20,12 +20,12 @@ jobs:
|
|||||||
|
|
||||||
- name: Install environment
|
- name: Install environment
|
||||||
run: |
|
run: |
|
||||||
py -m venv ./venv
|
python -m venv ./venv
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
./venv/scripts/activate
|
./venv/scripts/activate
|
||||||
pip install -r requirements.txt
|
python -m pip install -r requirements.txt
|
||||||
# For some reason the shiboken2.abi3.dll is not found properly, so I copy it instead
|
# For some reason the shiboken2.abi3.dll is not found properly, so I copy it instead
|
||||||
Copy-Item .\venv\Lib\site-packages\shiboken2\shiboken2.abi3.dll .\venv\Lib\site-packages\PySide2\ -Force
|
Copy-Item .\venv\Lib\site-packages\shiboken2\shiboken2.abi3.dll .\venv\Lib\site-packages\PySide2\ -Force
|
||||||
|
|
||||||
|
|||||||
@@ -76,6 +76,7 @@ class AirSupportConflictGenerator:
|
|||||||
speed=574,
|
speed=574,
|
||||||
tacanchannel=str(tacan),
|
tacanchannel=str(tacan),
|
||||||
)
|
)
|
||||||
|
tanker_group.set_frequency(freq.mhz)
|
||||||
|
|
||||||
callsign = callsign_for_support_unit(tanker_group)
|
callsign = callsign_for_support_unit(tanker_group)
|
||||||
tacan_callsign = {
|
tacan_callsign = {
|
||||||
@@ -118,6 +119,8 @@ class AirSupportConflictGenerator:
|
|||||||
frequency=freq.mhz,
|
frequency=freq.mhz,
|
||||||
start_type=StartType.Warm,
|
start_type=StartType.Warm,
|
||||||
)
|
)
|
||||||
|
awacs_flight.set_frequency(freq.mhz)
|
||||||
|
|
||||||
awacs_flight.points[0].tasks.append(SetInvisibleCommand(True))
|
awacs_flight.points[0].tasks.append(SetInvisibleCommand(True))
|
||||||
awacs_flight.points[0].tasks.append(SetImmortalCommand(True))
|
awacs_flight.points[0].tasks.append(SetImmortalCommand(True))
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user