Bug fixes

This commit is contained in:
sm4xas 2020-01-11 22:28:54 +01:00
parent 2a2720bc5e
commit 701574115a
2 changed files with 4 additions and 1 deletions

View File

@ -19,6 +19,9 @@ It has the following features:
- [dsd](https://github.com/f4exb/dsdcc) based demodulators (D-Star, NXDN)
- [wsjt-x](https://physics.princeton.edu/pulsar/k1jt/wsjtx.html) based demodulators (FT8, FT4, WSPR, JT65, JT9)
**News (2020-01-11 by SM4XAS)**
- Merged modifications for fine-tuning of frequency from DJ1AN to DD5JFK fork.
**News (2019-11-24 by DD5JFK)**
- There is now a new way to interface with SDR hardware, [owrx_connectors](https://github.com/jketterl/owrx_connector).
They talk directly to the hardware (no rtl_sdr / rx_sdr necessary) and offer I/Q data on a socket, just like nmux

View File

@ -140,7 +140,7 @@ function freqstep(sel){
function updateShareLink(freq){
//console.log(freq);
var sqlSliderValue=parseInt(e("openwebrx-panel-squelch").value);
e("id-freq-link").innerHTML='<a href="'+base_url+'/#freq='+freq+',mod='+last_analog_demodulator_subtype+',sql='+sqlSliderValue+'" target="_blank" title="Share Settings"><img src="icons/link.png"></a>';
e("id-freq-link").innerHTML='<a href="'+base_url+'/#freq='+freq+',mod='+last_analog_demodulator_subtype+',sql='+sqlSliderValue+'" target="_blank" title="Share Settings"><img src="static/icons/link.png"></a>';
}