diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile | 1 | ||||
-rw-r--r-- | doc/altusmetrum-docinfo.xml | 10 | ||||
-rwxr-xr-x | doc/install-html | 32 | ||||
-rw-r--r-- | doc/release-notes-1.6.5.inc | 24 | ||||
-rw-r--r-- | doc/release-notes.inc | 5 |
5 files changed, 71 insertions, 1 deletions
diff --git a/doc/Makefile b/doc/Makefile index 31bc08d8..707a4428 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -3,6 +3,7 @@ # RELNOTES_INC=\ + release-notes-1.6.5.inc \ release-notes-1.6.4.inc \ release-notes-1.6.3.inc \ release-notes-1.6.2.inc \ diff --git a/doc/altusmetrum-docinfo.xml b/doc/altusmetrum-docinfo.xml index 1b8ff68d..fbd14c5a 100644 --- a/doc/altusmetrum-docinfo.xml +++ b/doc/altusmetrum-docinfo.xml @@ -47,6 +47,16 @@ <revhistory> <?dbhtml filename="altusmetrum-revhistory.html"?> <revision> + <revnumber>1.6.5</revnumber> + <date>8 Jul 2016</date> + <revremark> + Minor release fixing TeleMega and TeleMetrum v2.0 bug which + would often result in loss of data logging and telemetry in + flight. Thanks to Chuck Haskin for help characterizing the bug + and testing this release. + </revremark> + </revision> + <revision> <revnumber>1.6.4</revnumber> <date>10 May 2016</date> <revremark> diff --git a/doc/install-html b/doc/install-html new file mode 100755 index 00000000..71c7933c --- /dev/null +++ b/doc/install-html @@ -0,0 +1,32 @@ +#!/bin/sh +destination= +state=arg +for file in "$@"; do + case $state in + arg) + case $file in + -d) + state=destination + ;; + *) + base=`basename $file` + case "$destination" in + "") + echo "Need -d destination option before files" 1>&2 + exit 1 + ;; + *) + sed \ + -e 's/<[?]xml [^>]*>//' \ + -e 's/<!DOCTYPE [^>]*>//' "$file" > "$destination/$base" + ;; + esac + ;; + esac + ;; + destination) + destination=$file + state=arg + ;; + esac +done diff --git a/doc/release-notes-1.6.5.inc b/doc/release-notes-1.6.5.inc new file mode 100644 index 00000000..9f3ae281 --- /dev/null +++ b/doc/release-notes-1.6.5.inc @@ -0,0 +1,24 @@ += Release Notes for Version 1.6.5 +:toc!: +:doctype: article + + Version 1.6.5 fixes a TeleMega and TeleMetrum v2.0 bug where + the device would often stop logging data and transmitting + telemetry in flight. All TeleMega v1.0, v2.0 and TeleMetrum + v2.0 users should update their flight firmware. + + == AltOS + + AltOS fixes: + + * Fix STM32L SPI driver to prevent lock-up in the logging or + radio code, either of which could stop data logging and + telemetry. Found and characterized by Chuck Haskin, who also + tested the new firmware before release. + + == AltosUI, TeleGPS and AltosDroid Applications + + AltosUI fixes: + + * Deliver firmward for TeleMega v2.0 and TeleBT v3.0 with + Windows package. diff --git a/doc/release-notes.inc b/doc/release-notes.inc index 6ac90cfd..b8b34e7b 100644 --- a/doc/release-notes.inc +++ b/doc/release-notes.inc @@ -2,10 +2,13 @@ == Release Notes :leveloffset: 2 - include::release-notes-1.6.4.raw[] + include::release-notes-1.6.5.raw[] <<<< + :leveloffset: 2 + include::release-notes-1.6.4.raw[] + <<<< :leveloffset: 2 include::release-notes-1.6.3.raw[] |