Skip to content

Commit 85bd80d

Browse files
committed
Merge branch 'main' into grplugin16b3
2 parents 2602746 + 0b65057 commit 85bd80d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+2744
-3246
lines changed

.github/ISSUE_TEMPLATE/atis-bugs-suggestions.md

Lines changed: 0 additions & 11 deletions
This file was deleted.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Bug report - ATIS
2+
title: "[ATIS] "
3+
description: Bugs or issues related to ATIS
4+
labels:
5+
- ATIS
6+
assignees: marud94, Atriusftw
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: Hello - Thanks for reporting an issue with the ATIS
11+
- type: checkboxes
12+
id: checkboxes-1
13+
attributes:
14+
label: Where do you experience the issue?
15+
options:
16+
- label: EuroScope
17+
- label: ATIS maker webpage (atis.adbj.no)
18+
- label: Somewhere else
19+
validations:
20+
required: true
21+
- type: textarea
22+
id: textarea-2
23+
attributes:
24+
label: Explaination
25+
description: Explain the bug
26+
validations:
27+
required: true

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 21 deletions
This file was deleted.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Bug report - Euroscope/Sectorfile
2+
title: "[BUG] "
3+
type: bug
4+
description: Bugs related to EuroScope/sectorfile
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: >-
9+
Hello - Thanks for reporting an issue you have found in the sectorfile
10+
11+
To help us fix your issue it is important that you provide as much information as possible.
12+
Screenshots are usually the most contributing factor when trying to debug certain issues.
13+
- type: textarea
14+
id: textarea-1
15+
attributes:
16+
label: Screenshots
17+
description: "Important: Provide atleast 1 screenshot of your **whole**
18+
EuroScope window!"
19+
- type: textarea
20+
id: textarea-2
21+
attributes:
22+
label: Explaination
23+
description: Explain the bug
24+
validations:
25+
required: true
26+
- type: textarea
27+
id: textarea-3
28+
attributes:
29+
label: Additional context
30+
description: Add any other context about the problem here

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 21 deletions
This file was deleted.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Feature request - EuroScope/Sectorfile
2+
title: "[Suggestion] "
3+
description: Suggestions for either the sectorfile, ATIS, wiki or other
4+
type: feature
5+
labels:
6+
- Question / Suggestion
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: Hello - Thanks for comming with a new possible feature request.
11+
- type: checkboxes
12+
id: checkboxes-1
13+
attributes:
14+
label: Which service?
15+
options:
16+
- label: Sectorfile
17+
- label: ATIS
18+
- label: Wiki/documentation
19+
- label: Other
20+
validations:
21+
required: true
22+
- type: textarea
23+
id: textarea-2
24+
attributes:
25+
label: Suggestion
26+
description: Provide your suggestion
27+
validations:
28+
required: true

.github/ISSUE_TEMPLATE/other.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

.github/workflows/sync-plugins.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Sync Plugin DLLs to Update Folder
2+
3+
on:
4+
push:
5+
paths:
6+
- 'Plugins/**/*.dll'
7+
8+
jobs:
9+
sync_dlls:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- name: Copy DLLs to manual update folder and preserve structure
16+
run: |
17+
SOURCE_DIR="Plugins"
18+
DEST_DIR="Plugins/Update"
19+
mkdir -p "$DEST_DIR"
20+
rsync -av --exclude 'Update/' --include='*/' --include='*.dll' --exclude='*' "$SOURCE_DIR/" "$DEST_DIR/"
21+
shell: bash
22+
23+
- uses: stefanzweifel/git-auto-commit-action@v5
24+
with:
25+
commit_message: "Auto-sync: Updated DLLs in Plugins/Update folder"

Plugins/CDM/CDM.dll

3 KB
Binary file not shown.

Plugins/CDM/CDMconfig.xml

Lines changed: 28 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,28 @@
1-
<?xml version="1.0"?>
2-
<CDM>
3-
<rate ops="20" />
4-
<rateLvo ops="8" />
5-
<expiredCtot time="10" />
6-
<realMode mode="false" />
7-
<pilotTobt mode="true" />
8-
<autoAtot mode="true" />
9-
<invalidateAtTsat mode="true" />
10-
<Rates url="https://adbj.no/cdm/rate.txt" />
11-
<Taxizones url="https://adbj.no/cdm/taxizones.txt" />
12-
<Ctot url="https://adbj.no/cdm/ctot.txt" />
13-
<sidInterval url="" />
14-
<DefaultTaxiTime minutes="8" />
15-
<DeIceTimes light="5" medium="9" heavy="12" super="15"/>
16-
<RefreshTime seconds="10" />
17-
<Debug mode="false" />
18-
<FlowRestrictions url="https://ecfmp.vatsim.net/api/v1/plugin" />
19-
<vdgsFileType type="3"/>
20-
<ftpHost host="" />
21-
<ftpUser user="" />
22-
<ftpPassword password="" />
23-
<Server mode="true" />
24-
<Su_Wait mode="false" />
25-
</CDM>
1+
<?xml version="1.0"?>
2+
<CDM>
3+
<rate ops="20" />
4+
<rateLvo ops="8" />
5+
<expiredCtot time="10" />
6+
<realMode mode="false" />
7+
<pilotTobt mode="true" />
8+
<autoAtot mode="true" />
9+
<invalidateAtTsat mode="true" />
10+
<Rates url="https://adbj.no/cdm/rate.txt" />
11+
<Taxizones url="https://adbj.no/cdm/taxizones.txt" />
12+
<Ctot url="https://adbj.no/cdm/ctot.txt" />
13+
<sidInterval url="" />
14+
<DefaultTaxiTime minutes="8" />
15+
<DeIceTimes light="5" medium="9" heavy="12" super="15"/>
16+
<RefreshTime seconds="10" />
17+
<Debug mode="false" />
18+
<FlowRestrictions url="" />
19+
<vdgsFileType type="3"/>
20+
<ftpHost host="" />
21+
<ftpUser user="" />
22+
<ftpPassword password="" />
23+
<sftpConnection mode="false" />
24+
<Server mode="true" />
25+
<Su_Wait mode="false" />
26+
27+
</CDM>
28+

0 commit comments

Comments
 (0)