Skip to content

Commit 7483fb2

Browse files
committed
Upversion to 3.2.4
Signed-off-by: Martin <Ho-Ro@users.noreply.github.com>
1 parent e622508 commit 7483fb2

9 files changed

+15
-8
lines changed

CHANGELOG

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
3.2.4
2+
2021-07-14
3+
Possibility to select Fusion style in options menu (fits on 1280x720 screen)
4+
Select calibration frequency faster from ComboBox
5+
Chinese translation
6+
17
3.2.3
28
2021-05-24
39
Auto detect OpenGL version to better support (especially) Windows installs (fix #184)

docs/OpenHantek6022_User_Manual.odt

-5.02 KB
Binary file not shown.

docs/OpenHantek6022_User_Manual.pdf

-4.11 KB
Binary file not shown.

docs/images/screenshot_mainwindow.png

7.25 KB
Loading

openhantek/src/OH_BUILD.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// Do not edit, will be re-created at each commit!
2-
#define OH_BUILD "20210623 - commit 916"
2+
#define OH_BUILD "20210714 - commit 917"

openhantek/src/OH_VERSION.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
// next line shall define either OH_VERSION or LAST_OH_VERSION
99
//
10-
#define LAST_OH_VERSION "3.2.3"
10+
#define OH_VERSION "3.2.4"
1111

1212

1313
// do not edit below

openhantek/src/dsosettings.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
/// \param channels The new channel count, that will be applied to lists.
1212
DsoSettings::DsoSettings( const ScopeDevice *scopeDevice, bool resetSettings )
1313
: deviceName( scopeDevice->getModel()->name ), deviceID( scopeDevice->getSerialNumber() ),
14-
deviceSpecification( scopeDevice->getModel()->spec() ), resetSettings( resetSettings ) {
15-
14+
deviceFW( scopeDevice->getFwVersion() ), deviceSpecification( scopeDevice->getModel()->spec() ),
15+
resetSettings( resetSettings ) {
1616
// Add new channels to the list
1717
int voltage_hue[] = {60, 210, 0, 120}; // yellow, lightblue, red, green
1818
int spectrum_hue[] = {30, 240, 330, 90}; // orange, blue, purple, green

openhantek/src/dsosettings.h

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ class DsoSettings {
3333
unsigned configVersion = CONFIG_VERSION; ///< Handle incompatible changes
3434
const QString deviceName;
3535
const QString deviceID;
36+
const unsigned deviceFW;
3637

3738
QByteArray mainWindowGeometry; ///< Geometry of the main window
3839
QByteArray mainWindowState; ///< State of docking windows and toolbars

openhantek/src/mainwindow.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -430,10 +430,10 @@ MainWindow::MainWindow( HantekDsoControl *dsoControl, DsoSettings *settings, Exp
430430
"<a href='https://github.com/OpenHantek'>https://github.com/OpenHantek</a></p>"
431431
"<p>Open source firmware copyright &copy; 2019-2021 Ho-Ro<br/>"
432432
"<a href='https://github.com/Ho-Ro/Hantek6022API'>https://github.com/Ho-Ro/Hantek6022API</a></p>"
433-
"<p>Device: %1 (%2)</p>"
434-
"<p>Graphic: %3 - GLSL version %4</p>" )
435-
.arg( this->dsoSettings->deviceName, this->dsoSettings->deviceID, GlScope::getOpenGLversion(),
436-
GlScope::getGLSLversion() ) +
433+
"<p>Device: %1 (%2), FW%3</p><p>Graphic: %4 - GLSL version %5</p>" )
434+
.arg( this->dsoSettings->deviceName, this->dsoSettings->deviceID ) // device type, ser. num
435+
.arg( this->dsoSettings->deviceFW, 4, 16, QChar( '0' ) ) // FW version
436+
.arg( GlScope::getOpenGLversion(), GlScope::getGLSLversion() ) + // graphic info
437437
tr( "<p>Running since %1 seconds.</p>" ).arg( elapsedTime.elapsed() / 1000 ) );
438438
} );
439439

0 commit comments

Comments
 (0)