[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] annotated tag v3.7.9.1 created (now 4bbed28
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] annotated tag v3.7.9.1 created (now 4bbed28) |
Date: |
Mon, 8 Feb 2016 18:21:57 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
jcorgan pushed a change to annotated tag v3.7.9.1
in repository gnuradio.
at 4bbed28 (tag)
tagging d01c4cc596ed06b901fef0af927da349135c82f8 (commit)
replaces v3.7.9
tagged by Johnathan Corgan
on Mon Feb 8 10:17:38 2016 -0800
- Log -----------------------------------------------------------------
ChangeLog v3.7.9.1
==================
Contributors
------------
The following list of people directly contributed code to this release.
As an added bonus this is the first contribution for three of these authors!
- Andrej Rode <address@hidden>
- Paul David <address@hidden>
- Derek Kozel <address@hidden>
- Johannes Schmitz <address@hidden>
- Johnathan Corgan <address@hidden>
- Marcus Müller <address@hidden>
- Martin Braun <address@hidden>
- Philip Balister <address@hidden>
- Ron Economos <address@hidden>
- Sebastian Koslowski <address@hidden>
- Sylvain Munaut <address@hidden>
- Tim O’Shea <address@hidden>
- Tom Rondeau <address@hidden>
- \#528
- \#719
- \#768
- \#831
- \#864
- \#868
- \#876
- \#879
- \#882
- \#883
Code
----
This release includes a number of minor typos and miscellaneous
rewording of\
error messages. The following sections summarize substantial changes.
- the ‘Parser errors’ menu item wasn’t correctly enabled
- embedded python blocks: message ports are now optionial and show the
correct label
- custom run command now accounts for filepaths that need escaping
- virtual sink/source message connections were dropped when opening a
flow graph
- tooltips in block library are truncated if too long
- not all tooltips in block library were updated after docstring
extraction finished
- some expressions were wrongfully marked invalid after opening a flow
graph
- move random uniform source from analog to waveform generators in GRC
A new unit test is available to test a bug reported on stack overflow
where blocks (such as the delay block) would drop tags. Paul David stepped in
with his first contribution to GNU Radio with a fix.
Fix an issue with flat\_flowgraph calculating alignment by
misinterpreting units of write and read indeces. This was only apparent when
these
indeces are non-zero (a flowgraph has stopped and restarted).
Fix exceptions thrown in hier\_block2 constructors.
Check d\_ninput\_items\_required for overflow and shut down if
overflow is detected.
Allow hier\_block2’s to change I/O signature in the constructor, which
was previously allowed by the API, but broken.
Use unsigned char rather than char in add\_const\_bb. This was the
legacy behavior with the older add\_const\_XX and was accidentally
replaced with char when replacing the templated version.
Fix vector length units from bytes to number of items in PDU to tagged
stream and tagged stream to PDU blocks.
Add a check to the rational resampler to stop working after we’ve
operated on all input items (closed issue \#831)
Throw an error when pfb clock sync is given constant taps which results
in a derivative of 0 (calculated as NaN). (closed issue \#812 and 734). Added
a reset\_taps function to externally set taps which should be used in
place of set\_taps.
Fix a memory leak in pfb decimator (closed issue \#882)
Maximum Deviation parameter for NBFM transmitter exposed to GRC
Change the constellation receiver to inherit from control\_loop
publically
rather than the impl to better support the control port interface.
(closed issue \#876)
TLC to puncture/depuncture GRC files in gr-fec
Major performance and correctness fixes to gr-zeromq
Fix cross compiling on for 64-bit architectures by not setting DEBIAN,
REDHAT, and SLACKWARE. OOT modules created with modtool should update their
cmake/Modules/GrPlatform.cmake to support cross 64-bit builds.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
iF4EABEIAAYFAla428IACgkQKYfHfLuO2bICSAD5AVXwH593RucVANgj7tEo5mLA
zgm21ln3ZyIaVOEZDpIBAMRjGEQVAo0ODzoTIG06+QAqrYfxXjQTf/gMxv/lp3kh
=Np6g
-----END PGP SIGNATURE-----
Andrej Rode (1):
cmake: issue #879. Fixed quotation problem.
DaulPavid (1):
Fixed delayed tag propagation
Derek Kozel (1):
Updated URL to UHD manual in USRP sink and source blocks
Jacob Gilbert (1):
blocks: fix incorrect use of items/bytes in PDU handling
Johnathan Corgan (16):
Merge remote-tracking branch 'tom/nbfm' into maint
Merge remote-tracking branch 'tom/issue812' into maint
Merge remote-tracking branch 'dkozel/fix-uhd-manual-url' into maint
Merge remote-tracking branch 'gnuradio-wg-grc/maint_grcwg' into maint
volk: update to 1.2/master
Merge remote-tracking branch 'tom/issue879' into maint
Merge remote-tracking branch 'tom/issue882' into maint
Merge remote-tracking branch 'tom/issue876' into maint
Merge remote-tracking branch 'tom/issue768' into maint
Merge remote-tracking branch 'tom/issue889' into maint
Merge remote-tracking branch 'tom/issue890' into maint
Merge remote-tracking branch 'skoslowski/cat_fix' into maint
Merge remote-tracking branch 'mbr0wn/uhd/fix_antenna_sel' into maint
docs: added release notes for 3.7.9.1 release
volk: updated submodule pointer to v1.2.1
cmake: update revision for maintenance release
Marcus Müller (1):
added unit test for tag forwarding to delay
Martin Braun (1):
uhd: Fixed suggested antenna ports on tx vs rx
Philip Balister (1):
Fix 64 bit OpenEmbedded builds.
Ron Economos (1):
gr-fec: Repair puncture and depuncture XML files.
Sebastian Koslowski (8):
grc: fix 'Parser errors' menu item
grc: better message port handling for embedded python blocks
grc: escape run command vars for shlex handling (bug #868)
grc: fix fg load with virtual sink/source message connections
grc: limit tooltip size in block library
grc: not all tooltips in block library were updated after docstring
extraction finished
grc: initialize attributes flow graph eval (fixes Bug #885)
analog: better block category (GRC) for random uniform source
Sylvain Munaut (3):
gr-zeromq: Big rework for performance and correctness
gnuradio-runtime: Fix sptr magic when exception thrown in hier2
constructor
gnuradio-runtime/hier_block2: Allow changing of IO sig in the constructor
Tim O'Shea (1):
blocks: resolve char sign ambiguity causing build breakage with several
gcc versions
Tom Rondeau (11):
analog: Addresses issue #831.
analog: enable setting max dev. during runtime for NBFM transmitter
gru: Fixes an obsolete numpy function call.
digital: Addresses issue #812.
filter: issue #882: making sure to clean up memory in PFB decimator.
digital: addresses issue #876.
runtime: addresses issue 768.
runtime: issue 883: fixes calculation of alignment in items.
qtgui: fixes issue #889.
digital: addresses issue #890.
Update to commit 0f4859c0a1c705199b74131e05605342c840bd31.
iohannez (1):
gr-utils: Update error message
-----------------------------------------------------------------------
This annotated tag includes the following new commits:
new d01c4cc cmake: update revision for maintenance release
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Commit-gnuradio] [gnuradio] annotated tag v3.7.9.1 created (now 4bbed28),
git <=