File tree Expand file tree Collapse file tree 6 files changed +28
-3
lines changed
Expand file tree Collapse file tree 6 files changed +28
-3
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ set(DS_DESCRIPTION "A GUI for instruments of DreamSourceLab")
106106
107107set (DS_VERSION_MAJOR 0)
108108set (DS_VERSION_MINOR 9)
109- set (DS_VERSION_MICRO 7 )
109+ set (DS_VERSION_MICRO 8 )
110110set (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_
400400install (TARGETS ${PROJECT_NAME} DESTINATION bin/)
401401install (DIRECTORY res DESTINATION share/${PROJECT_NAME} )
402402install (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)
404405install (FILES DreamSourceLab.rules DESTINATION /etc/udev/rules.d/)
405406install (FILES DSView.desktop DESTINATION /usr/share/applications/)
406407
Original file line number Diff line number Diff 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)) {
Original file line number Diff line number Diff line change @@ -117,7 +117,8 @@ void LogoBar::on_actionAbout_triggered()
117117
118118void 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}
Original file line number Diff line number Diff line change 2929
3030#include " ../sigsession.h"
3131
32+ #include < libsigrok4DSL/libsigrok.h>
33+
3234namespace pv {
3335namespace toolbars {
3436
Original file line number Diff line number Diff line change 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+
1210.97 (2017-06-02)
222-----------------
323 --common
You can’t perform that action at this time.
0 commit comments