Skip to content

Commit

Permalink
Upversion to 3.2.4
Browse files Browse the repository at this point in the history
Signed-off-by: Martin <[email protected]>
  • Loading branch information
Ho-Ro committed Jul 14, 2021
1 parent e622508 commit 7483fb2
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
3.2.4
2021-07-14
Possibility to select Fusion style in options menu (fits on 1280x720 screen)
Select calibration frequency faster from ComboBox
Chinese translation

3.2.3
2021-05-24
Auto detect OpenGL version to better support (especially) Windows installs (fix #184)
Expand Down
Binary file modified docs/OpenHantek6022_User_Manual.odt
Binary file not shown.
Binary file modified docs/OpenHantek6022_User_Manual.pdf
Binary file not shown.
Binary file modified docs/images/screenshot_mainwindow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion openhantek/src/OH_BUILD.h
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Do not edit, will be re-created at each commit!
#define OH_BUILD "20210623 - commit 916"
#define OH_BUILD "20210714 - commit 917"
2 changes: 1 addition & 1 deletion openhantek/src/OH_VERSION.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

// next line shall define either OH_VERSION or LAST_OH_VERSION
//
#define LAST_OH_VERSION "3.2.3"
#define OH_VERSION "3.2.4"


// do not edit below
Expand Down
4 changes: 2 additions & 2 deletions openhantek/src/dsosettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
/// \param channels The new channel count, that will be applied to lists.
DsoSettings::DsoSettings( const ScopeDevice *scopeDevice, bool resetSettings )
: deviceName( scopeDevice->getModel()->name ), deviceID( scopeDevice->getSerialNumber() ),
deviceSpecification( scopeDevice->getModel()->spec() ), resetSettings( resetSettings ) {

deviceFW( scopeDevice->getFwVersion() ), deviceSpecification( scopeDevice->getModel()->spec() ),
resetSettings( resetSettings ) {
// Add new channels to the list
int voltage_hue[] = {60, 210, 0, 120}; // yellow, lightblue, red, green
int spectrum_hue[] = {30, 240, 330, 90}; // orange, blue, purple, green
Expand Down
1 change: 1 addition & 0 deletions openhantek/src/dsosettings.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class DsoSettings {
unsigned configVersion = CONFIG_VERSION; ///< Handle incompatible changes
const QString deviceName;
const QString deviceID;
const unsigned deviceFW;

QByteArray mainWindowGeometry; ///< Geometry of the main window
QByteArray mainWindowState; ///< State of docking windows and toolbars
Expand Down
8 changes: 4 additions & 4 deletions openhantek/src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -430,10 +430,10 @@ MainWindow::MainWindow( HantekDsoControl *dsoControl, DsoSettings *settings, Exp
"<a href='https://github.com/OpenHantek'>https://github.com/OpenHantek</a></p>"
"<p>Open source firmware copyright &copy; 2019-2021 Ho-Ro<br/>"
"<a href='https://github.com/Ho-Ro/Hantek6022API'>https://github.com/Ho-Ro/Hantek6022API</a></p>"
"<p>Device: %1 (%2)</p>"
"<p>Graphic: %3 - GLSL version %4</p>" )
.arg( this->dsoSettings->deviceName, this->dsoSettings->deviceID, GlScope::getOpenGLversion(),
GlScope::getGLSLversion() ) +
"<p>Device: %1 (%2), FW%3</p><p>Graphic: %4 - GLSL version %5</p>" )
.arg( this->dsoSettings->deviceName, this->dsoSettings->deviceID ) // device type, ser. num
.arg( this->dsoSettings->deviceFW, 4, 16, QChar( '0' ) ) // FW version
.arg( GlScope::getOpenGLversion(), GlScope::getGLSLversion() ) + // graphic info
tr( "<p>Running since %1 seconds.</p>" ).arg( elapsedTime.elapsed() / 1000 ) );
} );

Expand Down

0 comments on commit 7483fb2

Please sign in to comment.