[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 02/02: docs: added release notes for 3.7.9.
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 02/02: docs: added release notes for 3.7.9.1 release |
Date: |
Mon, 8 Feb 2016 16:47:30 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
jcorgan pushed a commit to branch maint
in repository gnuradio.
commit 16a7180384bcaaab740d257da46f4b8a07b094c9
Author: Johnathan Corgan <address@hidden>
Date: Mon Feb 8 08:30:39 2016 -0800
docs: added release notes for 3.7.9.1 release
---
RELEASE-NOTES.md | 122 ++++++++++++++++++++++++++++++++++++++++++
docs/ChangeLog | 24 ---------
docs/RELEASE-NOTES-3.7.9.1.md | 122 ++++++++++++++++++++++++++++++++++++++++++
3 files changed, 244 insertions(+), 24 deletions(-)
diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md
new file mode 100644
index 0000000..0d1dca9
--- /dev/null
+++ b/RELEASE-NOTES.md
@@ -0,0 +1,122 @@
+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>
+
+### Closed issues
+
+- \#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.
+
+### GRC
+
+- 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
+
+### Scheduler and Runtime fixes
+
+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.
+
+### gr-blocks
+
+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.
+
+### gr-filter
+
+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)
+
+### gr-analog
+
+Maximum Deviation parameter for NBFM transmitter exposed to GRC
+
+### gr-digital
+
+Change the constellation receiver to inherit from control\_loop
+publically
+rather than the impl to better support the control port interface.
+(closed issue \#876)
+
+### gr-fec
+
+TLC to puncture/depuncture GRC files in gr-fec
+
+### gr-zeromq
+
+Major performance and correctness fixes to gr-zeromq
+
+### Builds
+
+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.
+
diff --git a/docs/ChangeLog b/docs/ChangeLog
deleted file mode 100644
index 9f0eb21..0000000
--- a/docs/ChangeLog
+++ /dev/null
@@ -1,24 +0,0 @@
-2004-11-29 Eric Blossom <address@hidden>
-
- * exploring-gnuradio/exploring-gnuradio.xml: new. revision 1.1
-
-#
-# Copyright 2004 Free Software Foundation, Inc.
-#
-# This file is part of GNU Radio
-#
-# GNU Radio is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 3, or (at your option)
-# any later version.
-#
-# GNU Radio is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with GNU Radio; see the file COPYING. If not, write to
-# the Free Software Foundation, Inc., 51 Franklin Street,
-# Boston, MA 02110-1301, USA.
-#
diff --git a/docs/RELEASE-NOTES-3.7.9.1.md b/docs/RELEASE-NOTES-3.7.9.1.md
new file mode 100644
index 0000000..0d1dca9
--- /dev/null
+++ b/docs/RELEASE-NOTES-3.7.9.1.md
@@ -0,0 +1,122 @@
+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>
+
+### Closed issues
+
+- \#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.
+
+### GRC
+
+- 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
+
+### Scheduler and Runtime fixes
+
+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.
+
+### gr-blocks
+
+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.
+
+### gr-filter
+
+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)
+
+### gr-analog
+
+Maximum Deviation parameter for NBFM transmitter exposed to GRC
+
+### gr-digital
+
+Change the constellation receiver to inherit from control\_loop
+publically
+rather than the impl to better support the control port interface.
+(closed issue \#876)
+
+### gr-fec
+
+TLC to puncture/depuncture GRC files in gr-fec
+
+### gr-zeromq
+
+Major performance and correctness fixes to gr-zeromq
+
+### Builds
+
+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.
+