Skip to content

Commit cac236a

Browse files
Bumped version number to 0.98
1 parent 7fdb2d4 commit cac236a

File tree

6 files changed

+28
-3
lines changed

6 files changed

+28
-3
lines changed

DSView/CMakeLists.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ set(DS_DESCRIPTION "A GUI for instruments of DreamSourceLab")
106106

107107
set(DS_VERSION_MAJOR 0)
108108
set(DS_VERSION_MINOR 9)
109-
set(DS_VERSION_MICRO 7)
109+
set(DS_VERSION_MICRO 8)
110110
set(DS_VERSION_STRING
111111
${DS_VERSION_MAJOR}.${DS_VERSION_MINOR}.${DS_VERSION_MICRO}
112112
)
@@ -400,7 +400,8 @@ set_target_properties(${PROJECT_NAME} PROPERTIES INSTALL_RPATH "${CMAKE_INSTALL_
400400
install(TARGETS ${PROJECT_NAME} DESTINATION bin/)
401401
install(DIRECTORY res DESTINATION share/${PROJECT_NAME})
402402
install(FILES icons/logo.png DESTINATION share/${PROJECT_NAME} RENAME logo.png)
403-
install(FILES ../NEWS DESTINATION share/${PROJECT_NAME}/res RENAME NEWS)
403+
install(FILES ../NEWS DESTINATION share/${PROJECT_NAME} RENAME NEWS)
404+
install(FILES ../ug.pdf DESTINATION share/${PROJECT_NAME} RENAME ug.pdf)
404405
install(FILES DreamSourceLab.rules DESTINATION /etc/udev/rules.d/)
405406
install(FILES DSView.desktop DESTINATION /usr/share/applications/)
406407

DSView/pv/dialogs/about.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ About::About(QWidget *parent) :
6666

6767
QString changlogs = tr("<font size=16>Changelogs</font><br />");
6868
QDir dir(DS_RES_PATH);
69+
dir.cdUp();
6970
QString filename = dir.absolutePath() + "/NEWS";
7071
QFile news(filename);
7172
if (news.open(QIODevice::ReadOnly)) {

DSView/pv/toolbars/logobar.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,8 @@ void LogoBar::on_actionAbout_triggered()
117117

118118
void LogoBar::on_actionManual_triggered()
119119
{
120-
QDir dir(QCoreApplication::applicationDirPath());
120+
QDir dir(DS_RES_PATH);
121+
dir.cdUp();
121122
QDesktopServices::openUrl(
122123
QUrl("file:///"+dir.absolutePath() + "/ug.pdf"));
123124
}

DSView/pv/toolbars/logobar.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929

3030
#include "../sigsession.h"
3131

32+
#include <libsigrok4DSL/libsigrok.h>
33+
3234
namespace pv {
3335
namespace toolbars {
3436

NEWS

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
0.98 (2017-07-29)
2+
-----------------
3+
--common
4+
*fix hardware initialization issue(always red led indicator) when power on
5+
*improve move operations of cursors/label/trigger level, support both press-drag and select-move-release mode
6+
*update the manually, and integrate into the menu of the software
7+
*improve the content of 'About' menu, add 'changelogs' information
8+
*firmware/HDL update
9+
10+
--for logic analyzer
11+
*improve display scale of decoder contents under exception case
12+
*fix display issue of progressbar of saving dsl file, when sample depth greater than 4G
13+
*fix export issue when part of channels enalbed
14+
*fix pattern search issue.
15+
*fix out of boundary issue of scroll bar, when sample depth greater than 8G
16+
17+
--for oscilloscope
18+
*fix auto calibraiton issue
19+
*improve noise processing method
20+
121
0.97 (2017-06-02)
222
-----------------
323
--common

ug.pdf

2 MB
Binary file not shown.

0 commit comments

Comments
 (0)