mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Compare commits
10 Commits
dev
...
test/1.4.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cc65e32493 | ||
|
|
382f8df39f | ||
|
|
a12ab86e71 | ||
|
|
fd1337bb46 | ||
|
|
1bc876ab61 | ||
|
|
ab2391e745 | ||
|
|
356fcf9532 | ||
|
|
88c18b65ff | ||
|
|
29470085d3 | ||
|
|
1df1325f55 |
@@ -4,7 +4,7 @@ runs:
|
|||||||
using: composite
|
using: composite
|
||||||
steps:
|
steps:
|
||||||
- name: Set up Node
|
- name: Set up Node
|
||||||
uses: actions/setup-node@v2
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: "16"
|
node-version: "16"
|
||||||
cache: npm
|
cache: npm
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ runs:
|
|||||||
using: composite
|
using: composite
|
||||||
steps:
|
steps:
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: "3.11"
|
python-version: "3.11"
|
||||||
cache: pip
|
cache: pip
|
||||||
|
|||||||
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@@ -12,7 +12,7 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
|
|||||||
6
.github/workflows/lint.yml
vendored
6
.github/workflows/lint.yml
vendored
@@ -7,8 +7,8 @@ jobs:
|
|||||||
name: Black
|
name: Black
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-python@v2
|
- uses: actions/setup-python@v5
|
||||||
- uses: psf/black@stable
|
- uses: psf/black@stable
|
||||||
with:
|
with:
|
||||||
src: "."
|
src: "."
|
||||||
@@ -18,7 +18,7 @@ jobs:
|
|||||||
name: Type checking
|
name: Type checking
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
|
|||||||
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@@ -14,7 +14,7 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
|
|||||||
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
@@ -5,7 +5,7 @@ jobs:
|
|||||||
name: Python tests
|
name: Python tests
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
@@ -24,7 +24,7 @@ jobs:
|
|||||||
name: Typescript tests
|
name: Typescript tests
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Set up JS environment
|
- name: Set up JS environment
|
||||||
uses: ./.github/actions/setup-liberation-js
|
uses: ./.github/actions/setup-liberation-js
|
||||||
|
|||||||
@@ -1,3 +1,9 @@
|
|||||||
|
# Retribution v1.4.1 (hotfix)
|
||||||
|
|
||||||
|
## Fixes
|
||||||
|
* **[Plugins]** Avoid injecting jamming-tasks for player-controller aircraft when EW-Jamming plugin is disabled
|
||||||
|
|
||||||
|
|
||||||
# Retribution v1.4.0
|
# Retribution v1.4.0
|
||||||
|
|
||||||
## Features/Improvements
|
## Features/Improvements
|
||||||
|
|||||||
@@ -7,9 +7,9 @@
|
|||||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
|
||||||
|
|
||||||
project = "DCS Retribution"
|
project = "DCS Retribution"
|
||||||
copyright = "2024, DCS Retribution Team"
|
copyright = "2025, DCS Retribution Team"
|
||||||
author = "DCS Retribution Team"
|
author = "DCS Retribution Team"
|
||||||
release = "1.4.0"
|
release = "1.4.1"
|
||||||
|
|
||||||
# -- General configuration ---------------------------------------------------
|
# -- General configuration ---------------------------------------------------
|
||||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
||||||
|
|||||||
@@ -185,6 +185,8 @@ class FlightGroupConfigurator:
|
|||||||
if not member.is_player:
|
if not member.is_player:
|
||||||
return
|
return
|
||||||
settings = self.flight.coalition.game.settings
|
settings = self.flight.coalition.game.settings
|
||||||
|
if not settings.plugin_option("ewrj"):
|
||||||
|
return
|
||||||
# Check if ecm_required option is enabled
|
# Check if ecm_required option is enabled
|
||||||
jammer_required = settings.plugin_option("ewrj.ecm_required")
|
jammer_required = settings.plugin_option("ewrj.ecm_required")
|
||||||
has_jammer = member.loadout.has_weapon_of_type(WeaponType.JAMMER)
|
has_jammer = member.loadout.has_weapon_of_type(WeaponType.JAMMER)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ from pathlib import Path
|
|||||||
|
|
||||||
MAJOR_VERSION = 1
|
MAJOR_VERSION = 1
|
||||||
MINOR_VERSION = 4
|
MINOR_VERSION = 4
|
||||||
MICRO_VERSION = 0
|
MICRO_VERSION = 1
|
||||||
|
|
||||||
|
|
||||||
def _optional_build_id_component(path: Path) -> str | None:
|
def _optional_build_id_component(path: Path) -> str | None:
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ distlib==0.3.9
|
|||||||
Faker==37.0.2
|
Faker==37.0.2
|
||||||
fastapi==0.115.11
|
fastapi==0.115.11
|
||||||
filelock==3.18.0
|
filelock==3.18.0
|
||||||
h11==0.14.0
|
h11==0.16.0
|
||||||
httptools==0.6.4
|
httptools==0.6.4
|
||||||
identify==2.6.9
|
identify==2.6.9
|
||||||
idna==3.10
|
idna==3.10
|
||||||
|
|||||||
Reference in New Issue
Block a user