Skip to content

Commit

Permalink
prepare next release 3.4
Browse files Browse the repository at this point in the history
Signed-off-by: Martin <[email protected]>
  • Loading branch information
Ho-Ro committed Dec 31, 2023
1 parent 73de8e3 commit f986d63
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
2023-12-29 (73de8e3): replace outdated CHANGELOG; small reformatting of MDSO model
2023-12-28 (b5e1aee): fix #390
2023-12-23 (1c3a681): tool update
2023-12-23 (c786a8f): minor packaging update
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.
2 changes: 1 addition & 1 deletion openhantek/src/OH_VERSION.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

// next line shall define either OH_VERSION or LAST_OH_VERSION
//
#define LAST_OH_VERSION "3.3.3"
#define OH_VERSION "3.4-rc1"


// do not edit below
Expand Down
14 changes: 7 additions & 7 deletions openhantek/src/documents.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@
#include <QString>

// manual and modification docs
const QString UserManualName = QString( "OpenHantek6022_User_Manual.pdf" );
const QString ACModificationName = QString( "HANTEK6022_AC_Modification.pdf" );
const QString FrequencyGeneratorModificationName = QString( "HANTEK6022_Frequency_Generator_Modification.pdf" );
const QString UserManualName( "OpenHantek6022_User_Manual.pdf" );
const QString ACModificationName( "HANTEK6022_AC_Modification.pdf" );
const QString FrequencyGeneratorModificationName( "HANTEK6022_Frequency_Generator_Modification.pdf" );

// where are the (local) documents?
#if defined( Q_OS_WIN )
const QString DocPath = QString( "documents\\" );
const QString DocPath( "documents\\" );
#elif defined( Q_OS_FREEBSD )
const QString DocPath = QString( "/usr/local/share/doc/openhantek/" );
const QString DocPath( "/usr/local/share/doc/openhantek/" );
#else
const QString DocPath = QString( "/usr/share/doc/openhantek/" );
const QString DocPath( "/usr/share/doc/openhantek/" );
#endif

// GitHub doc location
const QString DocUrl = QString( "https://github.com/OpenHantek/OpenHantek6022/blob/main/docs/" );
const QString DocUrl( "https://github.com/OpenHantek/OpenHantek6022/blob/main/docs/" );

0 comments on commit f986d63

Please sign in to comment.