]>
sigrok.org Git - pulseview.git/log
Soeren Apel [Sun, 3 Aug 2014 12:12:12 +0000 (14:12 +0200)]
Fix bug #392 by improving empty list/map handling
Bert Vermeulen [Sat, 26 Jul 2014 01:09:04 +0000 (03:09 +0200)]
Remove output modules from about dialog.
PulseView doesn't support output modules at all.
Uwe Hermann [Tue, 22 Jul 2014 22:03:08 +0000 (00:03 +0200)]
Drop references to obsolete sigrok-commits mailing list.
Martin Ling [Sat, 19 Jul 2014 17:19:47 +0000 (18:19 +0100)]
Update to new session API.
Bert Vermeulen [Mon, 14 Jul 2014 22:29:39 +0000 (00:29 +0200)]
Ignore *.cpp_parameters.
Marcus Comstedt [Tue, 8 Jul 2014 08:55:05 +0000 (10:55 +0200)]
MarginWidget: Disable system background
This fixes a rendering problem on Android.
Marcus Comstedt [Mon, 7 Jul 2014 10:26:28 +0000 (12:26 +0200)]
CMakeLists.txt: Put quotes back for CXX_FLAGS only
Turns out these were needed after all.
Marcus Comstedt [Sat, 17 May 2014 10:37:15 +0000 (12:37 +0200)]
Declare a virtual destructor for SignalData
This fixes the following error:
error: deleting object of polymorphic class type 'pv::data::Analog'
which has non-virtual destructor might cause undefined behaviour
[-Werror=delete-non-virtual-dtor]
Also, the same error for pv::data::Logic.
Marcus Comstedt [Sun, 29 Jun 2014 10:55:48 +0000 (12:55 +0200)]
Add missing #include <cassert> in multiple files
Marcus Comstedt [Sun, 29 Jun 2014 12:09:03 +0000 (14:09 +0200)]
Fix compilation on 32-bit systems
storesession.h was declaring fields as std::atomic<uint64_t>, a type
not avaiable on 32-bit systems. However, the values stored in these
fields were only used as input to QProgressDialog, which takes int,
not uint64_t. So the fields could just as well be std::atomic<int>.
Also, added code to scale the progress values down if they would not
fit in an int. (This would have been needed even if the fields were
to remain as uint64_t.)
Uwe Hermann [Mon, 16 Jun 2014 17:27:27 +0000 (19:27 +0200)]
CMakeLists.txt: Pass -DENABLE_SIGNALS to the compiler.
Until now only the cmake variable ENABLE_SIGNALS was used to add
signalhandler.{cpp,h} to the list of files to build.
However, main.cpp also uses '#ifdef ENABLE_SIGNALS' which didn't work
so far, since -DENABLE_SIGNALS was not passed to the compiler.
(one effect being that PulseView cannot be killed via CTRL-C from
an xterm or the like)
This fixes bug #368.
Jens Steinhauser [Mon, 9 Jun 2014 15:35:36 +0000 (17:35 +0200)]
Use 'struct' for test cases defined with BOOST_AUTO_TEST_CASE.
Jens Steinhauser [Mon, 9 Jun 2014 14:57:15 +0000 (16:57 +0200)]
Add missing files to test/CMakeLists.txt.
Bert Vermeulen [Tue, 10 Jun 2014 15:09:23 +0000 (17:09 +0200)]
Ignore Qt5-generated moc and qrc files.
Marcus Comstedt [Tue, 10 Jun 2014 13:35:38 +0000 (15:35 +0200)]
CMakeLists.txt: Drop quotes causing invalid include paths for Qt5
Marcus Comstedt [Thu, 15 May 2014 19:45:03 +0000 (21:45 +0200)]
Allow PulseView to be built with Qt5
cmake will auto-detect Qt4 or Qt5. If both are available, Qt5 will be
selected unless FORCE_QT4 is set to TRUE.
Uwe Hermann [Mon, 9 Jun 2014 14:07:26 +0000 (16:07 +0200)]
test/CMakeLists.txt: Drop obsolete boost-thread references.
Uwe Hermann [Mon, 9 Jun 2014 14:01:33 +0000 (16:01 +0200)]
INSTALL: libboost-thread is no longer needed.
Uwe Hermann [Mon, 9 Jun 2014 14:01:13 +0000 (16:01 +0200)]
INSTALL: Document C++11 compiler support requirement.
Marcus Comstedt [Thu, 15 May 2014 19:48:11 +0000 (21:48 +0200)]
Change QApplication::translate to tr, removing deprecated UTF8 parameter
Marcus Comstedt [Thu, 15 May 2014 19:47:02 +0000 (21:47 +0200)]
Update #include directives to work with Qt5 as well as Qt4
Joel Holdsworth [Thu, 5 Jun 2014 20:30:04 +0000 (21:30 +0100)]
.gitignore: Added new Qt compiler intermediate
Joel Holdsworth [Thu, 5 Jun 2014 20:28:59 +0000 (21:28 +0100)]
DecoderStack: Fixed thread dead-lock
Joel Holdsworth [Thu, 29 May 2014 22:22:52 +0000 (23:22 +0100)]
SigSession: Fixed std::thread joining
Aurelien Jacobs [Tue, 3 Jun 2014 15:07:27 +0000 (17:07 +0200)]
property: add the necessary include file for std::function
This fixes the following error:
/home/aurel/devel/sigrok/pulseview/pv/prop/property.h:39:15: error: ‘function’ in namespace ‘std’ does not name a template type
typedef std::function<GVariant* ()> Getter;
Bert Vermeulen [Fri, 30 May 2014 21:09:38 +0000 (23:09 +0200)]
Don't use obsolete channel-based triggers.
Jens Steinhauser [Sat, 24 May 2014 15:36:17 +0000 (17:36 +0200)]
Header: Do not clip away the selection.
Jens Steinhauser [Sat, 24 May 2014 14:41:22 +0000 (16:41 +0200)]
CursorHeader: Do not clip away the selection.
Jens Steinhauser [Wed, 21 May 2014 13:02:13 +0000 (15:02 +0200)]
CursorHeader: Use the same number format as the ruler.
Jens Steinhauser [Wed, 21 May 2014 10:16:03 +0000 (12:16 +0200)]
CursorHeader: Make the size dependend on the used font.
Jens Steinhauser [Fri, 23 May 2014 19:36:54 +0000 (21:36 +0200)]
Use a separate widget to hold the cursor labels.
This way the cursor labels don't overlap with the ruler.
Jens Steinhauser [Fri, 23 May 2014 15:29:49 +0000 (17:29 +0200)]
MainWindow: Remember directory of last file that was opened/saved.
Jens Steinhauser [Fri, 23 May 2014 15:05:17 +0000 (17:05 +0200)]
main: Use only the domain, not the whole URL.
Joel Holdsworth [Sat, 24 May 2014 10:23:08 +0000 (11:23 +0100)]
DeviceOptions::print_vdiv: Replace C-style string formatting with QString arg formatting
Joel Holdsworth [Sat, 24 May 2014 10:17:27 +0000 (11:17 +0100)]
Replaced boost::bind with C++11 lambdas
Joel Holdsworth [Fri, 23 May 2014 22:32:20 +0000 (23:32 +0100)]
Replaced boost::function with std::function
Joel Holdsworth [Fri, 23 May 2014 22:22:37 +0000 (23:22 +0100)]
Used a std::atomic for StoreSession::_units_stores and _unit_count
Joel Holdsworth [Tue, 20 May 2014 22:51:00 +0000 (23:51 +0100)]
Replaced boost::thread/mutex etc. with std equivalents
Joel Holdsworth [Tue, 20 May 2014 21:58:55 +0000 (22:58 +0100)]
Replaced boost::shared_ptr with std::shared_ptr
Joel Holdsworth [Tue, 20 May 2014 21:15:50 +0000 (22:15 +0100)]
Replaced BOOST_FOREACH with C++11 range-based for loops
Joel Holdsworth [Tue, 20 May 2014 18:21:06 +0000 (19:21 +0100)]
Replaced lengthy iterator types with the auto keyword
Joel Holdsworth [Tue, 20 May 2014 18:20:29 +0000 (19:20 +0100)]
Enabled C++11 build
Jens Steinhauser [Thu, 22 May 2014 20:03:28 +0000 (22:03 +0200)]
Header: Invisible traces shouldn't influence the width.
Jens Steinhauser [Thu, 22 May 2014 20:03:23 +0000 (22:03 +0200)]
SamplingBar: Use nicer time format in the tooltip.
Jens Steinhauser [Thu, 22 May 2014 20:03:22 +0000 (22:03 +0200)]
Put the time format function into a separate file.
Jens Steinhauser [Thu, 22 May 2014 20:03:21 +0000 (22:03 +0200)]
SamplingBar: Show total sampling time in a tooltip.
Jens Steinhauser [Thu, 22 May 2014 20:03:20 +0000 (22:03 +0200)]
SigSession: Fix typo in comment.
Jens Steinhauser [Thu, 22 May 2014 20:03:18 +0000 (22:03 +0200)]
MainWindow: Add missing toolbar buttons.
Jens Steinhauser [Thu, 22 May 2014 20:03:16 +0000 (22:03 +0200)]
MainWindow: Add shortcuts for the open/save menu items.
Uwe Hermann [Tue, 6 May 2014 21:43:20 +0000 (23:43 +0200)]
Bump PulseView version to 0.2.0.
Uwe Hermann [Tue, 6 May 2014 21:41:25 +0000 (23:41 +0200)]
Bump libsigrok/libsigrokdecode dependencies to 0.3.0 each.
Uwe Hermann [Tue, 6 May 2014 07:00:00 +0000 (09:00 +0200)]
NEWS: Add list of user-visible changes so far.
Marcus Comstedt [Sun, 6 Apr 2014 15:04:42 +0000 (17:04 +0200)]
Fix polymorphic function lookup problem
Instead of taking min() of a qreal and a double, use two doubles.
(The result is assigned to a double anyway.)
Fixes build problem on Android
Uwe Hermann [Sun, 13 Apr 2014 19:09:34 +0000 (21:09 +0200)]
INSTALL: Mention missing dependency libboost-filesystem.
Uwe Hermann [Sat, 5 Apr 2014 12:00:56 +0000 (14:00 +0200)]
Rename 'probe' to 'channel' (libsigrokdecode change).
Variables of type 'struct srd_channel *' are consistently named 'pdch' to
make them easily distinguishable from libsigrok's 'struct sr_channel *'
variables that are consistently named 'ch'.
Uwe Hermann [Fri, 4 Apr 2014 17:58:23 +0000 (19:58 +0200)]
nsis: Drop embedded Python installer, ship local DLL and modules.
Joel Holdsworth [Tue, 25 Mar 2014 20:53:08 +0000 (20:53 +0000)]
Fixed test suite when ENABLE_DECODE=n
Joel Holdsworth [Sun, 23 Mar 2014 14:24:58 +0000 (14:24 +0000)]
DeviceOptions: Added an error handler for the case when a device exposes an enum with no values list
Uwe Hermann [Mon, 24 Mar 2014 21:49:57 +0000 (22:49 +0100)]
Update for 'probe' -> 'channel' rename in libsigrok.
This is an update related to bug #259.
Uwe Hermann [Thu, 20 Mar 2014 22:19:35 +0000 (23:19 +0100)]
Update for 'probe_group' -> 'channel_group' rename in libsigrok.
This is an update related to bug #259.
Joel Holdsworth [Sat, 22 Mar 2014 10:20:44 +0000 (10:20 +0000)]
Header/Viewport: Manually trigger the signals_changed event at construction
This fixes #338
Uwe Hermann [Thu, 20 Mar 2014 12:18:36 +0000 (13:18 +0100)]
nsis: Put sigrok-dumps *.sr files into the installer.
These are useful for people to have around for conveniently testing
various frontend features and protocol decoders etc.
Joel Holdsworth [Sun, 16 Mar 2014 09:54:04 +0000 (10:54 +0100)]
Reworked SamplingBar device selection logic
* Split on_device_selected into update_device_config_widgets. This allows
the widgets to be updated with calling SigSession::set_device.
* Don't rely on the on_device_selected event handler to update the device
config widgets. If MainWindow selects a device, that device may be the
0th drop-down element, and already selected in which case there will be
no device_selected signal, because there was no change in the selection.
We now surpress on_device_selected with _updating_device_selector, then
set the selected device in the drop-down, then call
update_device_config_widgets to manually update the widgets.
* Combined set_selected_device into set_device_list, so that the two can
be set in one operation.
* This fixes bug #334
Joel Holdsworth [Sat, 15 Mar 2014 18:56:17 +0000 (19:56 +0100)]
Set PopupToolButton::_popup to NULL at construction
Joel Holdsworth [Sat, 15 Mar 2014 08:28:33 +0000 (09:28 +0100)]
Revert back to the default device if a session file failed to load
This fixes #331
Joel Holdsworth [Sat, 15 Mar 2014 07:58:58 +0000 (08:58 +0100)]
Don't show decoders with probes in the Stack Decoder menu
This fixes #333
Joel Holdsworth [Sat, 15 Mar 2014 07:48:49 +0000 (08:48 +0100)]
Don't allow disabled probes to be selected
This fixes #313
Joel Holdsworth [Wed, 5 Mar 2014 21:33:02 +0000 (22:33 +0100)]
Do not attempt to draw text for small annotations
Joel Holdsworth [Wed, 5 Mar 2014 20:25:07 +0000 (21:25 +0100)]
Removed undefined Annotation::set_row and set_pd_index
Joel Holdsworth [Tue, 11 Mar 2014 23:17:45 +0000 (00:17 +0100)]
Enum: Reference gvariants in the values list
Joel Holdsworth [Wed, 12 Mar 2014 20:34:37 +0000 (21:34 +0100)]
Enum: Use an iterator instead of iterating by indexes
Joel Holdsworth [Tue, 11 Mar 2014 22:35:02 +0000 (23:35 +0100)]
Added decoder options binding for double values
Joel Holdsworth [Mon, 10 Mar 2014 23:46:09 +0000 (00:46 +0100)]
Addded support for decoder options with a values list
Joel Holdsworth [Mon, 10 Mar 2014 22:11:11 +0000 (23:11 +0100)]
Moved print_gvariant into DeviceOptions
Uwe Hermann [Tue, 11 Mar 2014 22:19:28 +0000 (23:19 +0100)]
nsis: Fix the "working dir" path for PulseView.
This was previously incorrectly set to the firmware/ subdir which
resulted in PDs not showing up in PulseView's Decoders->Add menu.
Thanks to Peter Newman for bringing up this issue.
Priit Laes [Fri, 7 Mar 2014 12:21:52 +0000 (14:21 +0200)]
Fix typo in header guard causing warning
Joel Holdsworth [Tue, 4 Mar 2014 22:40:58 +0000 (22:40 +0000)]
Added missing include for boost::hash_combine
Joel Holdsworth [Tue, 4 Mar 2014 19:10:21 +0000 (19:10 +0000)]
Only show first-level decoders in the menu
Joel Holdsworth [Tue, 4 Mar 2014 19:04:41 +0000 (19:04 +0000)]
Removed assert from DecoderStack
Joel Holdsworth [Mon, 3 Mar 2014 22:27:50 +0000 (22:27 +0000)]
Fixed non-painting decode
Joel Holdsworth [Mon, 3 Mar 2014 22:13:40 +0000 (22:13 +0000)]
Only update the decode state when decoding
Joel Holdsworth [Mon, 3 Mar 2014 22:03:57 +0000 (22:03 +0000)]
Check required probes before starting the decode thread
Joel Holdsworth [Mon, 3 Mar 2014 18:51:14 +0000 (18:51 +0000)]
Added an error message there are some unspecified required probes
Joel Holdsworth [Mon, 3 Mar 2014 09:10:37 +0000 (09:10 +0000)]
Removed unused parameter in DecoderStack::decode_proc
Change-Id: I6ac5ef33b616f8e15628eb8888148140b19ad8e1
Joel Holdsworth [Sun, 2 Mar 2014 21:40:13 +0000 (21:40 +0000)]
Notify repaint after decode_data instead of inside annotation_callback
Joel Holdsworth [Sun, 2 Mar 2014 19:50:52 +0000 (19:50 +0000)]
Enable decode support by default
Joel Holdsworth [Sun, 2 Mar 2014 17:27:12 +0000 (17:27 +0000)]
Implemented threaded decode
Joel Holdsworth [Sun, 2 Mar 2014 16:26:29 +0000 (16:26 +0000)]
Renamed DecoderStack::_mutex to _output_mutex
Joel Holdsworth [Sun, 16 Feb 2014 21:24:44 +0000 (21:24 +0000)]
Renamed SigSession::data_updated signal to data_received, and added the frame_ended signal
Joel Holdsworth [Sun, 16 Feb 2014 15:22:25 +0000 (15:22 +0000)]
Moved inner decode loop into DecoderStack::decode_data
Joel Holdsworth [Sun, 16 Feb 2014 11:46:21 +0000 (11:46 +0000)]
Begin a new decode session when a new frame begins
Joel Holdsworth [Sun, 16 Feb 2014 11:01:30 +0000 (11:01 +0000)]
Added a reference to the SigSession in DecoderStack
Joel Holdsworth [Sun, 16 Feb 2014 10:55:27 +0000 (10:55 +0000)]
Added LogicSignal::get_data
Joel Holdsworth [Sat, 1 Mar 2014 16:30:07 +0000 (16:30 +0000)]
SamplingBar: Only use DefaultSampleCount if the _sample_count widget is unset.
This fixes bug #324
Joel Holdsworth [Sat, 1 Mar 2014 10:49:05 +0000 (10:49 +0000)]
Use boost::filesystem::path to get the filename from a path
Joel Holdsworth [Wed, 26 Feb 2014 21:45:30 +0000 (22:45 +0100)]
Don't attempt to set SR_CONF_LIMIT_SAMPLES when it's not supported
Joel Holdsworth [Wed, 26 Feb 2014 21:31:39 +0000 (22:31 +0100)]
Show the file-device in the selector when a file is loaded
Joel Holdsworth [Sat, 1 Mar 2014 08:51:58 +0000 (08:51 +0000)]
SamplingBar: Surpressed a spurious update loop
Joel Holdsworth [Sat, 1 Mar 2014 08:51:37 +0000 (08:51 +0000)]
Moved default device functionality into SigSession
Joel Holdsworth [Sat, 22 Feb 2014 12:45:36 +0000 (12:45 +0000)]
Moved session creation into DevInst objects