From b15bf268436ccdf10c45943500c621a59b64765f Mon Sep 17 00:00:00 2001 From: DreamSourceLab <support@dreamsourcelab.com> Date: Wed, 10 Aug 2016 16:45:36 +0800 Subject: [PATCH] Bumped version number to 0.96 --- DSView/CMakeLists.txt | 19 +++---------------- DSView/pv/view/analogsignal.cpp | 2 +- 2 files changed, 4 insertions(+), 17 deletions(-) diff --git a/DSView/CMakeLists.txt b/DSView/CMakeLists.txt index c8afe9d..5df8470 100644 --- a/DSView/CMakeLists.txt +++ b/DSView/CMakeLists.txt @@ -104,7 +104,7 @@ set(DS_DESCRIPTION "A GUI for instruments of DreamSourceLab") set(DS_VERSION_MAJOR 0) set(DS_VERSION_MINOR 9) -set(DS_VERSION_MICRO 5) +set(DS_VERSION_MICRO 6) set(DS_VERSION_STRING ${DS_VERSION_MAJOR}.${DS_VERSION_MINOR}.${DS_VERSION_MICRO} ) @@ -394,21 +394,8 @@ set_target_properties(${PROJECT_NAME} PROPERTIES INSTALL_RPATH "/usr/local/lib") # Install the executable. install(TARGETS ${PROJECT_NAME} DESTINATION bin/) -install(FILES res/DSLogic.fw DESTINATION bin/res/) -install(FILES res/DSLogic33.bin DESTINATION bin/res/) -install(FILES res/DSLogic50.bin DESTINATION bin/res/) -install(FILES res/DSLogicPro.fw DESTINATION bin/res/) -install(FILES res/DSLogicPro.bin DESTINATION bin/res/) -install(FILES res/DSCope.fw DESTINATION bin/res/) -install(FILES res/DSCope.bin DESTINATION bin/res/) -install(FILES res/DSLogic0.dsc DESTINATION bin/res/) -install(FILES res/DSLogic0.def.dsc DESTINATION bin/res/) -install(FILES res/DSLogic1.dsc DESTINATION bin/res/) -install(FILES res/DSLogic1.def.dsc DESTINATION bin/res/) -install(FILES res/DSLogic2.dsc DESTINATION bin/res/) -install(FILES res/DSLogic2.def.dsc DESTINATION bin/res/) -install(FILES res/DSCope1.dsc DESTINATION bin/res/) -install(FILES res/DSCope1.def.dsc DESTINATION bin/res/) +install(DIRECTORY res DESTINATION share/${PROJECT_NAME}) +install(DIRECTORY ../libsigrokdecode4DSL/decoders DESTINATION share/${PROJECT_NAME}) #=============================================================================== #= Packaging (handled by CPack) diff --git a/DSView/pv/view/analogsignal.cpp b/DSView/pv/view/analogsignal.cpp index 8600d00..08d38c2 100644 --- a/DSView/pv/view/analogsignal.cpp +++ b/DSView/pv/view/analogsignal.cpp @@ -57,7 +57,7 @@ AnalogSignal::AnalogSignal(boost::shared_ptr<pv::device::DevInst> dev_inst, Signal(dev_inst, probe), _data(data) { - _typeWidth = 2; + _typeWidth = 3; _colour = SignalColours[probe->index % countof(SignalColours)]; _scale = _totalHeight * 1.0f / 65536; } -- GitLab