From 3d9a9c370bf730c53385f9a64a0a1223ccc88da2 Mon Sep 17 00:00:00 2001 From: Alexandru Csete Date: Fri, 28 Nov 2014 00:31:21 +0100 Subject: [PATCH 1/5] Increase max screen width to 16k pixels (issue #203). --- qtgui/plotter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qtgui/plotter.h b/qtgui/plotter.h index d963c0e8c..3524b7078 100644 --- a/qtgui/plotter.h +++ b/qtgui/plotter.h @@ -9,7 +9,7 @@ #include #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 From 3cb056c4ed4fcadccc7f6f52c5d740f2c4d3a947 Mon Sep 17 00:00:00 2001 From: Alexandru Csete Date: Fri, 28 Nov 2014 00:37:11 +0100 Subject: [PATCH 2/5] Add 2.5 Msps preset for Airspy (issue #212). --- qtgui/ioconfig.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/qtgui/ioconfig.cpp b/qtgui/ioconfig.cpp index dcf3fa8a0..92007e233 100644 --- a/qtgui/ioconfig.cpp +++ b/qtgui/ioconfig.cpp @@ -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"); } } From cb44e8dbf4239001c7bfb8b5568d3b040f3b6969 Mon Sep 17 00:00:00 2001 From: Alexandru Csete Date: Fri, 28 Nov 2014 00:38:49 +0100 Subject: [PATCH 3/5] Update news info. --- news.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/news.txt b/news.txt index a32870368..0a24bd6c3 100644 --- a/news.txt +++ b/news.txt @@ -1,3 +1,8 @@ + 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 FIXED: Use correct categories in .desktop file. From f8918388000b634d72c9c2818a64b51185b28381 Mon Sep 17 00:00:00 2001 From: Alexandru Csete Date: Fri, 28 Nov 2014 00:41:16 +0100 Subject: [PATCH 4/5] Update version numbers. --- gqrx.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gqrx.pro b/gqrx.pro index be060ebf1..24abc97dc 100644 --- a/gqrx.pro +++ b/gqrx.pro @@ -64,7 +64,7 @@ CONFIG(debug, debug|release) { DEFINES += QT_NO_DEBUG DEFINES += QT_NO_DEBUG_OUTPUT ## VER = $$system(git describe --abbrev=1) - VER = 2.3.1 + VER = 2.3.2 # Release binaries with gr bundled # QMAKE_RPATH & co won't work with origin From 8ca4f217720cfaa4c80ce8d109173044dcdd7519 Mon Sep 17 00:00:00 2001 From: Alexandru Csete Date: Fri, 28 Nov 2014 00:49:57 +0100 Subject: [PATCH 5/5] Update about dialog. --- applications/gqrx/mainwindow.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/applications/gqrx/mainwindow.cpp b/applications/gqrx/mainwindow.cpp index 868e56c22..2ee4c4ed3 100644 --- a/applications/gqrx/mainwindow.cpp +++ b/applications/gqrx/mainwindow.cpp @@ -1888,7 +1888,7 @@ void MainWindow::on_actionAbout_triggered() { QMessageBox::about(this, tr("About Gqrx"), tr("

This is Gqrx %1

" - "

Copyright (C) 2011-2013 Alexandru Csete & contributors.

" + "

Copyright (C) 2011-2014 Alexandru Csete & contributors.

" "

Gqrx is a software defined radio receiver powered by " "GNU Radio and the Qt toolkit. " "

Gqrx uses the GrOsmoSDR " @@ -1897,9 +1897,11 @@ void MainWindow::on_actionAbout_triggered() "

  • Funcube Dongle Pro and Pro+
  • " "
  • RTL2832U-based DVB-T tuners (rtlsdr and rtlsdr-tcp)
  • " "
  • Ettus Research USRP devices
  • " - "
  • OsmoSDR devices
  • " - "
  • HackRF Jawbreaker
  • " + "
  • OsmoSDR
  • " + "
  • HackRF One & Jawbreaker
  • " "
  • Nuand bladeRF
  • " + "
  • Airspy
  • " + "
  • RFspace receivers
  • " "

    " "

    You can download the latest version from the " "Gqrx website."