From 2993cc427912f2e2c19e8d7335382a767432b40f Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Tue, 14 Feb 2023 15:37:37 +0100 Subject: [PATCH] update wsjt-x homepage url --- README.md | 2 +- owrx/feature.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9517148..f8ed6b8 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ It has the following features: - supports a wide range of [SDR hardware](https://github.com/jketterl/openwebrx/wiki/Supported-Hardware#sdr-devices) - Multiple SDR devices can be used simultaneously - [digiham](https://github.com/jketterl/digiham) based demodularors (DMR, YSF, Pocsag, D-Star, NXDN) -- [wsjt-x](https://physics.princeton.edu/pulsar/k1jt/wsjtx.html) based demodulators (FT8, FT4, WSPR, JT65, JT9, FST4, +- [wsjt-x](https://wsjt.sourceforge.io/) based demodulators (FT8, FT4, WSPR, JT65, JT9, FST4, FST4W) - [direwolf](https://github.com/wb2osz/direwolf) based demodulation of APRS packets - [JS8Call](http://js8call.com/) support diff --git a/owrx/feature.py b/owrx/feature.py index 115a6a9..2c86323 100644 --- a/owrx/feature.py +++ b/owrx/feature.py @@ -428,7 +428,7 @@ class FeatureDetector(object): def has_wsjtx(self): """ To decode FT8 and other digimodes, you need to install the WSJT-X software suite. Please check the - [WSJT-X homepage](https://physics.princeton.edu/pulsar/k1jt/wsjtx.html) for ready-made packages or instructions + [WSJT-X homepage](https://wsjt.sourceforge.io/) for ready-made packages or instructions on how to build from source. """ return reduce(and_, map(self.command_is_runnable, ["jt9", "wsprd"]), True)