]> sigrok.org Git - sigrok-cli.git/blob - NEWS
Replace ann_format with ann_class.
[sigrok-cli.git] / NEWS
1 0.5.0 (2014-05-06)
2 ------------------
3
4  * Update sigrok-cli to the new APIs from both libsigrok 0.3.0 and also
5    libsigrokdecode 0.3.0.
6  * Add support for the new channel groups feature in libsigrok.
7  * Report channel groups (drivers) and annotation rows (PDs) in --show.
8  * The protocol decoder output verbosity now depends on the --loglevel used.
9  * Only show the longest annotation per default if multiple are provided by
10    the PD. Higher numbers for the -l option will show them all.
11  * Allow both hex and decimal numbers as values for command-line options.
12  * Add support for an explicit "sigrok" file format option that can be
13    used with --input-format or --output-format (bug #131).
14  * If no PD annotation class is specified, default to showing all (bug #149).
15  * Fix an issue when running decoders with optional channels (bug #138).
16  * Report possible PD option values in --show output (bug #330).
17  * Allow saving of output in continuous mode (bug #122).
18  * Add support for libsigrok's SR_T_DOUBLE_RANGE config key (bug #335).
19  * Add support for config keys of type G_VARIANT_TYPE_INT32.
20  * Fix a bug which involved trying to save a file containing no data.
21  * Fix an internal probe ordering issue (bug #268).
22  * Fix various memory leak issues (bug #134, others).
23  * Fix a bug causing samplerates in session files being zero (bug #340).
24  * Fix segfault during analog acquisition without '-O analog' (bugs #90, #105).
25  * Fix a compile issue when building without libsigrokdecode (bug #351).
26  * Command line option changes:
27    - Add the -g|--channel-group option.
28    - Add the -M option (for PD meta output type support).
29    - Add the -B option (for PD binary output type support).
30    - Rename the -p|--probes option to -C|--channels.
31  * Various improvements to the NSIS file for better Windows installer support.
32    - Ship (redistributable) firmware files in the Windows installer.
33    - Ship libusb0.dll in the Windows installer (bug #243).
34    - Ship zadig.exe and zadig_xp.exe in the Windows installer.
35    - Ship all sample files from sigrok-dumps in the Windows installer.
36    - Don't ship/run the full Python MSI installer, only the required files.
37    - Fix a working directory issue in the installer.
38  * Build system:
39    - Use a non-recursive automake setup (fewer files, less clutter).
40    - configure output: Show which libs are required and which are optional.
41  * manpage: Various documentation updates.
42
43 0.4.0 (2013-05-04)
44 ------------------
45
46  * Update sigrok-cli to the new APIs from both libsigrok 0.2.0 and also
47    libsigrokdecode 0.2.0.
48  * Add support for handling analog data sources (DMMs, scopes, dataloggers).
49  * Bugfix in the handling of -A options with arguments.
50  * Updated build dependencies list.
51    - glib (required): Now must be >= 2.28.0.
52    - libsigrok (required): Now must be >= 0.2.0.
53    - libsigrokdecode (required): Now must be >= 0.2.0.
54  * Add support for specifying input format options.
55  * Probe numbers now generally start at 0 (not 1).
56  * Command line option changes:
57    - The -D|--list-devices option was renamed to --scan.
58    - The -d|--device option was renamed to -c|--config.
59    - The -a|--protocol-decoders option was renamed to -P|--protocol-decoders.
60    - The -s|--protocol-decoder-stack option was renamed to
61      -S|--protocol-decoder-stack.
62    - Added a --driver option to specify which libsigrok driver is to be used.
63    - Added a --show option. This can show details about drivers or PDs.
64    - Added a --frames option which limits the number of frames to get from
65      a supported oscilloscope (or other frame-based device).
66  * Various documentation updates (README, manpage, and so on).
67  * configure: Don't overwrite CFLAGS, but rather amend it.
68
69 0.3.1 (2012-05-30)
70 ------------------
71
72  * Add a ChangeLog file to the tarball.
73  * -V option: If "-l 3" or higher is used, the PD description is shown, too.
74  * -a option: Print optional/required PD probes. Example: sigrok-cli -a uart.
75  * Fix compiling with "Homebrew" (Mac OS X).
76  * Stacking order doesn't have to be specified if it's the same as the
77    PD list. Example: sigrok-cli -i <file.sr> -a i2c,edid -s i2c,edid.
78    The -s option is no longer required in this special case.
79  * Only output module or PD output goes to stdout, everything else to stderr.
80  * Improved error handling: Stop sigrok-cli upon various PD related errors.
81  * New -A | --protocol-decoder-annotations option which allows the user to
82    select which annotation types (and from which PD in the stack) to show.
83  * Update the manpage.
84  * Fix a Makefile.am bug which caused the generated ChangeLog files being
85    accidentally deleted upon 'make distclean'.
86
87 0.3.0 (2012-04-17)
88 ------------------
89
90  * New major version, now depends on libsigrok and libsigrokdecode.
91  * Initial support for protocol decoders (written in Python >= 3).
92    Supports streaming processing, and stacking of protocol decoders.
93    Currently supported: dcf77, mx25lxx05d, i2s, spi, edid, pan1321, mlx90614,
94    rtc8564, transitioncounter, usb, i2cdemux, i2c, i2cfilter, uart.
95  * Add support for the ChronoVu LA8 logic analyzer.
96  * Add support for the ChronoVu LA8 input- and output-formats.
97  * Add support for the CSV output format.
98  * New CLI options: --loglevel, --input-format, --protocol-decoders, and
99    --protocol-decoder-stack.
100  * Changed CLI options: Rename -f|--format to -O|--output-format.
101  * Demo driver: Add all-low and all-high pattern support.
102  * Saleae Logic driver: Initial support for multiple attached devices.
103  * OLS driver: Run-Length Encoding (RLE) support.
104  * Various portability fixes for Mac OS X and MinGW/Windows.
105  * Many bugfixes, improvements, and documentation updates.
106
107 0.2.0 (2011-04-03)
108 ------------------
109
110 This is mostly a bugfix release.
111
112  * Fix session saving & input file loading, implement session loading support.
113  * Initial work on an NSIS-based Windows installer for sigrok.
114  * CLI: Change syntax for -d and -f to <thing>:key=value:key2=value2.
115  * Various bugfixes, internal code improvements, and documentation updates.
116  * Improve MinGW/Windows support in sigrok, fix various Windows issues.
117  * Improve Openbench Logic Sniffer output format support and add metadata
118    support (requires jawi's OLS client >= 0.9.4-rc1).
119  * Add FreeBSD support for sigrok.
120  * Add initial doxygen support (sigrok API documentation).
121  * ASIX SIGMA: Fix a firmware loading bug.
122
123 0.1.0 (2011-01-20)
124 ------------------
125
126  * Initial release.
127