v1.42
+ + + +-
+
+
- + Displaying where an Station is active. + + +
diff --git a/.github/workflows/website-build.yml b/.github/workflows/website-build.yml index 7c0123f..ddafb5d 100644 --- a/.github/workflows/website-build.yml +++ b/.github/workflows/website-build.yml @@ -22,10 +22,10 @@ env: concurrency: group: website-build-${{ github.ref }} - cancel-in-progress: true + cancel-in-progress: ${{ github.event_name == 'pull_request' }} permissions: - contents: read + contents: write jobs: build-website: @@ -50,10 +50,25 @@ jobs: - name: Build website working-directory: website run: npm run build + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Upload website artifact uses: actions/upload-artifact@v4.3.4 with: name: kst4contest-website path: website/_site/ - retention-days: 7 \ No newline at end of file + retention-days: 7 + + - name: Commit rebuilt site + if: github.event_name == 'push' && github.ref == 'refs/heads/main' + run: | + git config user.name "github-actions[bot]" + git config user.email "github-actions[bot]@users.noreply.github.com" + git add website/_site + if git diff --cached --quiet; then + echo "No changes to commit" + else + git commit -m "chore: rebuild website [skip ci]" + git push + fi \ No newline at end of file diff --git a/.github/workflows/website-roadmap-rebuild.yml b/.github/workflows/website-roadmap-rebuild.yml new file mode 100644 index 0000000..b103840 --- /dev/null +++ b/.github/workflows/website-roadmap-rebuild.yml @@ -0,0 +1,58 @@ +name: Rebuild Roadmap + +on: + issues: + types: [opened, edited, closed, reopened, labeled, unlabeled, milestoned, demilestoned] + +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + +concurrency: + group: website-build-${{ github.ref }} + cancel-in-progress: false + +permissions: + contents: write + +jobs: + rebuild-roadmap: + name: Rebuild website roadmap + runs-on: ubuntu-latest + # Only worth a rebuild if the "enhancement" label is involved: either the + # issue currently carries it, or this event just added/removed it. + if: contains(github.event.issue.labels.*.name, 'enhancement') || github.event.label.name == 'enhancement' + + steps: + - name: Checkout + uses: actions/checkout@v4.1.7 + with: + ref: main + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: "24" + cache: npm + cache-dependency-path: website/package-lock.json + + - name: Install dependencies + working-directory: website + run: npm ci + + - name: Build website + working-directory: website + run: npm run build + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + - name: Commit rebuilt site + run: | + git config user.name "github-actions[bot]" + git config user.email "github-actions[bot]@users.noreply.github.com" + git add website/_site + if git diff --cached --quiet; then + echo "No changes to commit" + else + git commit -m "chore: rebuild website roadmap [skip ci]" + git push + fi diff --git a/website/_site/about/index.html b/website/_site/about/index.html index 31b0fde..2d9ae60 100644 --- a/website/_site/about/index.html +++ b/website/_site/about/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/assets/css/main.css b/website/_site/assets/css/main.css index 31e1a8c..763e54e 100644 --- a/website/_site/assets/css/main.css +++ b/website/_site/assets/css/main.css @@ -415,6 +415,11 @@ a:hover { color: var(--muted); } +.roadmap-done a { + color: var(--muted); + text-decoration: line-through; +} + .feature-icon { font-size: 2rem; margin-bottom: 14px; diff --git a/website/_site/contact/index.html b/website/_site/contact/index.html index 486479e..c53435a 100644 --- a/website/_site/contact/index.html +++ b/website/_site/contact/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/download/index.html b/website/_site/download/index.html index 5e9c9b3..21367fe 100644 --- a/website/_site/download/index.html +++ b/website/_site/download/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/faq/index.html b/website/_site/faq/index.html index 89c98f1..e336691 100644 --- a/website/_site/faq/index.html +++ b/website/_site/faq/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/features/airscout/index.html b/website/_site/features/airscout/index.html index 8d1370c..d02d239 100644 --- a/website/_site/features/airscout/index.html +++ b/website/_site/features/airscout/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/features/dual-chat/index.html b/website/_site/features/dual-chat/index.html index cf7cfd8..2a68ae2 100644 --- a/website/_site/features/dual-chat/index.html +++ b/website/_site/features/dual-chat/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/features/dx-cluster/index.html b/website/_site/features/dx-cluster/index.html index b7b3b0a..db93bb7 100644 --- a/website/_site/features/dx-cluster/index.html +++ b/website/_site/features/dx-cluster/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/features/index.html b/website/_site/features/index.html index 0b755b6..e7094cc 100644 --- a/website/_site/features/index.html +++ b/website/_site/features/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/features/log-sync/index.html b/website/_site/features/log-sync/index.html index 45b3d03..b0a2f3f 100644 --- a/website/_site/features/log-sync/index.html +++ b/website/_site/features/log-sync/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/features/macros/index.html b/website/_site/features/macros/index.html index 378fc64..d2c479f 100644 --- a/website/_site/features/macros/index.html +++ b/website/_site/features/macros/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/features/priority-score/index.html b/website/_site/features/priority-score/index.html index d740c41..9bd52cb 100644 --- a/website/_site/features/priority-score/index.html +++ b/website/_site/features/priority-score/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/features/sked-reminder/index.html b/website/_site/features/sked-reminder/index.html index 935d76e..0d7f584 100644 --- a/website/_site/features/sked-reminder/index.html +++ b/website/_site/features/sked-reminder/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/features/timeline/index.html b/website/_site/features/timeline/index.html index 9bde141..5087cc5 100644 --- a/website/_site/features/timeline/index.html +++ b/website/_site/features/timeline/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/index.html b/website/_site/index.html index bf61073..8071582 100644 --- a/website/_site/index.html +++ b/website/_site/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/legal-notice/index.html b/website/_site/legal-notice/index.html index d300e27..f9884d9 100644 --- a/website/_site/legal-notice/index.html +++ b/website/_site/legal-notice/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/manual/de/airscout-integration/index.html b/website/_site/manual/de/airscout-integration/index.html index d8c58ab..0254a03 100644 --- a/website/_site/manual/de/airscout-integration/index.html +++ b/website/_site/manual/de/airscout-integration/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/manual/de/benutzeroberflaeche/index.html b/website/_site/manual/de/benutzeroberflaeche/index.html index 49d19bc..3ffe93b 100644 --- a/website/_site/manual/de/benutzeroberflaeche/index.html +++ b/website/_site/manual/de/benutzeroberflaeche/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/manual/de/changelog/index.html b/website/_site/manual/de/changelog/index.html index acbfc7f..2a2bf75 100644 --- a/website/_site/manual/de/changelog/index.html +++ b/website/_site/manual/de/changelog/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/manual/de/dx-cluster-server/index.html b/website/_site/manual/de/dx-cluster-server/index.html index b5e3a23..c668bf4 100644 --- a/website/_site/manual/de/dx-cluster-server/index.html +++ b/website/_site/manual/de/dx-cluster-server/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/manual/de/funktionen/index.html b/website/_site/manual/de/funktionen/index.html index ba733a4..c339986 100644 --- a/website/_site/manual/de/funktionen/index.html +++ b/website/_site/manual/de/funktionen/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/manual/de/home/index.html b/website/_site/manual/de/home/index.html index b37e516..160938e 100644 --- a/website/_site/manual/de/home/index.html +++ b/website/_site/manual/de/home/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/manual/de/index.html b/website/_site/manual/de/index.html index 6382f38..a903b7a 100644 --- a/website/_site/manual/de/index.html +++ b/website/_site/manual/de/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/manual/de/installation/index.html b/website/_site/manual/de/installation/index.html index 690ee07..8cca68d 100644 --- a/website/_site/manual/de/installation/index.html +++ b/website/_site/manual/de/installation/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/manual/de/konfiguration/index.html b/website/_site/manual/de/konfiguration/index.html index 4aa416f..6306910 100644 --- a/website/_site/manual/de/konfiguration/index.html +++ b/website/_site/manual/de/konfiguration/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/manual/de/log-synchronisation/index.html b/website/_site/manual/de/log-synchronisation/index.html index 503009d..4aee547 100644 --- a/website/_site/manual/de/log-synchronisation/index.html +++ b/website/_site/manual/de/log-synchronisation/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/manual/de/makros-und-variablen/index.html b/website/_site/manual/de/makros-und-variablen/index.html index e323470..7f55571 100644 --- a/website/_site/manual/de/makros-und-variablen/index.html +++ b/website/_site/manual/de/makros-und-variablen/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/manual/en/airscout-integration/index.html b/website/_site/manual/en/airscout-integration/index.html index a666900..5d92439 100644 --- a/website/_site/manual/en/airscout-integration/index.html +++ b/website/_site/manual/en/airscout-integration/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/manual/en/changelog/index.html b/website/_site/manual/en/changelog/index.html index 596e9ab..0be752a 100644 --- a/website/_site/manual/en/changelog/index.html +++ b/website/_site/manual/en/changelog/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/manual/en/configuration/index.html b/website/_site/manual/en/configuration/index.html index 2c9fde5..86e69a1 100644 --- a/website/_site/manual/en/configuration/index.html +++ b/website/_site/manual/en/configuration/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/manual/en/dx-cluster-server/index.html b/website/_site/manual/en/dx-cluster-server/index.html index 43aebaa..6d7a499 100644 --- a/website/_site/manual/en/dx-cluster-server/index.html +++ b/website/_site/manual/en/dx-cluster-server/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/manual/en/features/index.html b/website/_site/manual/en/features/index.html index 851cdf2..d592c16 100644 --- a/website/_site/manual/en/features/index.html +++ b/website/_site/manual/en/features/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/manual/en/home/index.html b/website/_site/manual/en/home/index.html index 2691068..7481287 100644 --- a/website/_site/manual/en/home/index.html +++ b/website/_site/manual/en/home/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/manual/en/index.html b/website/_site/manual/en/index.html index 176de5c..b016c12 100644 --- a/website/_site/manual/en/index.html +++ b/website/_site/manual/en/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/manual/en/installation/index.html b/website/_site/manual/en/installation/index.html index 315512c..48afc27 100644 --- a/website/_site/manual/en/installation/index.html +++ b/website/_site/manual/en/installation/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/manual/en/log-sync/index.html b/website/_site/manual/en/log-sync/index.html index 473be46..f19810d 100644 --- a/website/_site/manual/en/log-sync/index.html +++ b/website/_site/manual/en/log-sync/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/manual/en/macros-and-variables/index.html b/website/_site/manual/en/macros-and-variables/index.html index 7873be4..2f427b2 100644 --- a/website/_site/manual/en/macros-and-variables/index.html +++ b/website/_site/manual/en/macros-and-variables/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/manual/en/user-interface/index.html b/website/_site/manual/en/user-interface/index.html index 92bae8b..7c421f7 100644 --- a/website/_site/manual/en/user-interface/index.html +++ b/website/_site/manual/en/user-interface/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/manual/index.html b/website/_site/manual/index.html index 9a8baf7..39887a2 100644 --- a/website/_site/manual/index.html +++ b/website/_site/manual/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/news/2026-07-website-launch/index.html b/website/_site/news/2026-07-website-launch/index.html index 53a286f..72032dc 100644 --- a/website/_site/news/2026-07-website-launch/index.html +++ b/website/_site/news/2026-07-website-launch/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/news/index.html b/website/_site/news/index.html index 4b8ed6b..85c9520 100644 --- a/website/_site/news/index.html +++ b/website/_site/news/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/privacy/index.html b/website/_site/privacy/index.html index 77daec6..e48a823 100644 --- a/website/_site/privacy/index.html +++ b/website/_site/privacy/index.html @@ -17,7 +17,7 @@ - + @@ -47,12 +47,12 @@ Screenshots - Download - Manual News + Roadmap + About FAQ diff --git a/website/_site/roadmap/index.html b/website/_site/roadmap/index.html new file mode 100644 index 0000000..8be32b9 --- /dev/null +++ b/website/_site/roadmap/index.html @@ -0,0 +1,189 @@ + + +
+ +Roadmap
++ Generated automatically from the "enhancement" issues in our + GitHub repository, + grouped by their target version milestone. +
+next Version 1.41
+ +Released July 6, 2026
+ +Roadmap
++ Generated automatically from the "enhancement" issues in our + GitHub repository, + grouped by their target version milestone. +
+No planned enhancements are currently assigned to a version milestone.
++ See all open feature requests on + GitHub. +
+{{ version.description }}
{% endif %} + {% if version.released %} +Released{% if version.releasedOn %} {{ version.releasedOn | readableDate }}{% endif %}
+ {% elif version.dueOn %} +Due {{ version.dueOn | readableDate }}
+ {% endif %} +