X-Git-Url: https://sigrok.org/gitweb/?p=sigrok-cli.git;a=blobdiff_plain;f=NEWS;h=614c910b791228203dd144f0c092204ba0491e8f;hp=14adb6ac30ea63bd901c9e04d64494086b9aca65;hb=6bb3c3dd27c0477705a5c0684a8c3fd506a35f48;hpb=2531ee05a189a1291bb33b966233a04bb7b91c15 diff --git a/NEWS b/NEWS index 14adb6a..614c910 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,102 @@ +0.7.1 (2018-10-26) +------------------ + + * Command line option changes: + - Add the --protocol-decoder-samplenum option. + * Scan: Fix auto-select of non-demo device, if there's only one (bug #848). + * Protocol decoding: Always print colon after protocol decoder ID. + * input: + - Increase chunk size to 4MB (large performance improvements). + - Make read from stdin work with the presence of -I specs. + * Manpage: + - Fix outdated references to -V (it's -L now). + - Don't list specific output formats, only mention -L. + - Improve decoder stacking documentation. + - Mention currently unsupported channel name auto-matching. + - Various example invocation improvements (bug #1181). + * Fix invalid frame limit error reporting. + * Bugfix in order to make sr_session_stop() actually work. + * Add a .desktop file and an icon. + * Don't unnecessarily run the 'analog' output module on data sources + which don't have analog channels, thus improving performance. + * HACKING: Prefer git pull requests over mailing list patches. + +0.7.0 (2017-06-12) +------------------ + + * Update sigrok-cli to the new APIs from both libsigrok 0.5.0 and also + libsigrokdecode 0.5.0. + * -P --show: + - List the binary output classes of the decoder. + - List the possible input and output IDs of the decoder. + * --help: + - Clarify that --show also lists input/output format options, + as well as protocol decoder options (bug #851). + - Show a few typical invocations of e.g. --samples/--time/--continuous. + * Add an -L|--list-supported option; this used to be part of -V (bug #604). + * Drop the superfluous -S|--protocol-decoder-stack option. Stacking can + be done by simply using -P and providing the decoders in the correct order. + * Allow multiple -P options to decode multiple stacks (bug #868). + * Show decoder instance IDs so the user can tell instances apart (bug #868). + * Show annotations based on decoder ID (not instance ID). + - Behaviour preserved: + Single PD, no -A flag => all annotations from PD + Single PD, -A pdid => all annotations from PD + Single PD, -A pdid=annX => annX from PD + - Behaviour now added: + Duplicate PDs, no -A flag => all annotations from all PDs + Duplicate PDs, -A pdid => all annotations from all PDs of type pdid + Duplicate PDs, -A pdid=annX => all annX from all PDs of type pdid + * Fix various memory leaks. + * ./configure summary: Show linker flags used. + * NSIS: + - Update to Python 3.4.x. We can't use any higher version for the time + being, since 3.4.x is the last version to support Windows XP. + - Place the example .sr files in a separate installer section. + - Limit example .sr files to a small set to shrink the installer size. + - Clarify Start menu links (e.g. "Uninstall") to avoid confusion. + * HACKING: Update URL to Linux kernel coding style. + * Fix some compiler warnings (clang). + +0.6.0 (2016-01-29) +------------------ + + * Update sigrok-cli to the new APIs from both libsigrok 0.4.0 and also + libsigrokdecode 0.4.0. + * Updated build requirements: + - libglib >= 2.32.0 + - libsigrok >= 0.4.0 + - libsigrokdecode >= 0.4.0 + * Fix various compiler errors/warnings. + * Check srd_decoder_get_by_id() output to prevent a segfault (bug #370). + * manpage: Document the -M and -B options. + * Improve option parsing code and make it more robust. + * Drop references to obsolete sigrok-commits mailing list. + * Properly handle saving logic data packets of any size. + * Add 'analog' output module to default output. + * Fix various memory leaks. + * Show PD annotation row members by name, not number (bug #388). + * Handle floating point options for output modules. + * If only one non-demo device is present, select it. + * Allow input from stdin by specifying "-i -". + * Support uint64 input/output module options. + * Command line option changes: + - Add the --get option. + - Add the -T|--transform-module option. + * Always save all channels to a session file (bug #410). + * Support boolean command line options (bug #450). + * NSIS: + - Drop libusb0.dll, we always use libusb-1.0 now. + - Add start menu entries for Zadig (bug #543). + - Install data files into a 'share' subdirectory. + - Various additional NSIS file improvements. + * Fix a runtime warning with --show (bug #520). + * Add "-git-" suffix to development version numbers. + * Fix a libzip-related issue resulting in errors writing .sr files (bug #570). + * Fix a unitsize related issue (bug #352). + * Add support for SR_T_MQLIST and SR_T_MQ. + * Modernize the whole autotools setup. + 0.5.0 (2014-05-06) ------------------