From ed6eb010614b5b27757619fc629d7330fc8c4122 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Fri, 17 Jun 2016 10:18:20 -0700 Subject: doc: Add install-html script This script strips the XML-ish bits from html files so that ikiwiki can parse them correctly Signed-off-by: Keith Packard --- doc/install-html | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100755 doc/install-html (limited to 'doc') 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/]*>//' "$file" > "$destination/$base" + ;; + esac + ;; + esac + ;; + destination) + destination=$file + state=arg + ;; + esac +done -- cgit v1.2.3 From 14e73d89d7dbb44e9ffab2820aefb693b6e8ef24 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Sat, 2 Jul 2016 22:08:58 +0200 Subject: Bump to 1.6.5. Add preliminary release notes Signed-off-by: Keith Packard --- configure.ac | 2 +- doc/altusmetrum-docinfo.xml | 9 +++++++++ doc/release-notes-1.6.5.inc | 23 +++++++++++++++++++++++ doc/release-notes.inc | 5 ++++- 4 files changed, 37 insertions(+), 2 deletions(-) create mode 100644 doc/release-notes-1.6.5.inc (limited to 'doc') diff --git a/configure.ac b/configure.ac index 325b1870..001449a7 100644 --- a/configure.ac +++ b/configure.ac @@ -18,7 +18,7 @@ dnl dnl Process this file with autoconf to create configure. AC_PREREQ(2.57) -AC_INIT([altos], 1.6.4.2) +AC_INIT([altos], 1.6.5) ANDROID_VERSION=13 AC_CONFIG_SRCDIR([src/kernel/ao.h]) AM_INIT_AUTOMAKE([foreign dist-bzip2]) diff --git a/doc/altusmetrum-docinfo.xml b/doc/altusmetrum-docinfo.xml index 1b8ff68d..b64f3843 100644 --- a/doc/altusmetrum-docinfo.xml +++ b/doc/altusmetrum-docinfo.xml @@ -46,6 +46,15 @@ + + 1.6.5 + 8 Jul 2016 + + Minor release fixing TeleMega and TeleMetrum v2.0 bug which + would often result in loss of data logging and telemetry in + flight. + + 1.6.4 10 May 2016 diff --git a/doc/release-notes-1.6.5.inc b/doc/release-notes-1.6.5.inc new file mode 100644 index 00000000..c77f466f --- /dev/null +++ b/doc/release-notes-1.6.5.inc @@ -0,0 +1,23 @@ += 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. + + == 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[] -- cgit v1.2.3 From d60133c65b4592f0f8c832135664a8e0c922b4f0 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Sat, 2 Jul 2016 22:52:38 +0200 Subject: Credit Chuck Haskin for helping fix the SPI bug. Signed-off-by: Keith Packard --- doc/altusmetrum-docinfo.xml | 3 ++- doc/release-notes-1.6.5.inc | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'doc') diff --git a/doc/altusmetrum-docinfo.xml b/doc/altusmetrum-docinfo.xml index b64f3843..fbd14c5a 100644 --- a/doc/altusmetrum-docinfo.xml +++ b/doc/altusmetrum-docinfo.xml @@ -52,7 +52,8 @@ Minor release fixing TeleMega and TeleMetrum v2.0 bug which would often result in loss of data logging and telemetry in - flight. + flight. Thanks to Chuck Haskin for help characterizing the bug + and testing this release. diff --git a/doc/release-notes-1.6.5.inc b/doc/release-notes-1.6.5.inc index c77f466f..9f3ae281 100644 --- a/doc/release-notes-1.6.5.inc +++ b/doc/release-notes-1.6.5.inc @@ -13,7 +13,8 @@ * Fix STM32L SPI driver to prevent lock-up in the logging or radio code, either of which could stop data logging and - telemetry. + telemetry. Found and characterized by Chuck Haskin, who also + tested the new firmware before release. == AltosUI, TeleGPS and AltosDroid Applications -- cgit v1.2.3 From 65ed2f588ca596fe9aa559bebd590a2a11b9859b Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Sun, 3 Jul 2016 12:00:10 +0200 Subject: doc: Build 1.6.5 release notes Signed-off-by: Keith Packard --- doc/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'doc') 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 \ -- cgit v1.2.3