Skip to content

Commit

Permalink
Merge branch 'v2.3.x'
Browse files Browse the repository at this point in the history
Conflicts:
	gqrx.pro
	news.txt
  • Loading branch information
csete committed Nov 27, 2014
2 parents 9648a14 + 8ca4f21 commit f6419f8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
8 changes: 5 additions & 3 deletions applications/gqrx/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1931,7 +1931,7 @@ void MainWindow::on_actionAbout_triggered()
{
QMessageBox::about(this, tr("About Gqrx"),
tr("<p>This is Gqrx %1</p>"
"<p>Copyright (C) 2011-2013 Alexandru Csete & contributors.</p>"
"<p>Copyright (C) 2011-2014 Alexandru Csete & contributors.</p>"
"<p>Gqrx is a software defined radio receiver powered by "
"<a href='http://www.gnuradio.org/'>GNU Radio</a> and the Qt toolkit. "
"<p>Gqrx uses the <a href='http://sdr.osmocom.org/trac/wiki/GrOsmoSDR'>GrOsmoSDR</a> "
Expand All @@ -1940,9 +1940,11 @@ void MainWindow::on_actionAbout_triggered()
"<li><a href='http://funcubedongle.com/'>Funcube Dongle Pro and Pro+</a></li>"
"<li><a href='http://sdr.osmocom.org/trac/wiki/rtl-sdr'>RTL2832U-based DVB-T tuners (rtlsdr and rtlsdr-tcp)</a></li>"
"<li><a href='http://www.ettus.com/'>Ettus Research USRP devices</a></li>"
"<li><a href='http://sdr.osmocom.org/trac/'>OsmoSDR devices</a></li>"
"<li><a href='https://greatscottgadgets.com/hackrf/'>HackRF Jawbreaker</a></li>"
"<li><a href='http://sdr.osmocom.org/trac/'>OsmoSDR</a></li>"
"<li><a href='https://greatscottgadgets.com/hackrf/'>HackRF One & Jawbreaker</a></li>"
"<li><a href='http://nuand.com/bladeRF'>Nuand bladeRF</a></li>"
"<li><a href='http://airspy.com'>Airspy</a></li>"
"<li><a href='http://rfspace.com'>RFspace receivers</a></li>"
"</ul></p>"
"<p>You can download the latest version from the "
"<a href='http://gqrx.dk/'>Gqrx website</a>."
Expand Down
5 changes: 5 additions & 0 deletions news.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@

2.x.x TBD

NEW: Bookmarks.
IMPROVED: Fractional PPM correction.

2.3.2 Released November 28, 2014

FIXED: Pandapter and waterfall widths are limited to 4096 pixels.
IMPROVED: Add 2.5 Msps preset for Airspy.

2.3.1 Released August 8, 2014

Expand Down
1 change: 1 addition & 0 deletions qtgui/ioconfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,7 @@ void CIoConfig::updateInputSampleRates(int rate)
if (rate > 0)
ui->inSrCombo->addItem(QString("%1").arg(rate));

ui->inSrCombo->addItem("2500000");
ui->inSrCombo->addItem("10000000");
}
}
Expand Down
2 changes: 1 addition & 1 deletion qtgui/plotter.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <QMap>

#define HORZ_DIVS_MAX 50 //12
#define MAX_SCREENSIZE 4096
#define MAX_SCREENSIZE 16384

#define PEAK_CLICK_MAX_H_DISTANCE 10 //Maximum horizontal distance of clicked point from peak
#define PEAK_CLICK_MAX_V_DISTANCE 20 //Maximum vertical distance of clicked point from peak
Expand Down

0 comments on commit f6419f8

Please sign in to comment.