diff options
Diffstat (limited to 'doc')
37 files changed, 61 insertions, 859 deletions
diff --git a/doc/Makefile b/doc/Makefile index feb1de8f..7d33149d 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -3,6 +3,7 @@ # RELNOTES_INC=\ + release-notes-1.8.4.inc \ release-notes-1.8.3.inc \ release-notes-1.8.2.inc \ release-notes-1.8.1.inc \ @@ -186,7 +187,6 @@ SVG=\ telemini-v3.svg \ easymega.svg -RELNOTES_PDF=$(RELNOTES_INC:.inc=.pdf) RELNOTES_HTML=$(RELNOTES_INC:.inc=.html) ONEFILE_TXT_FILES=\ @@ -196,10 +196,13 @@ ONEFILE_TXT_FILES=\ ONEFILE_RAW_FILES=$(ONEFILE_TXT_FILES:.txt=.raw) ONEFILE_PDF_FILES=$(ONEFILE_TXT_FILES:.txt=.pdf) +ONEFILE_HTML_FILES=$(ONEFILE_TXT_FILES:.txt=.html) AM_HTML=am.html -HTML=altusmetrum.html micropeak.html telegps.html easymini.html $(RELNOTES_HTML) $(ONEFILE_HTML_FILES) +PUBLISH_HTML=altusmetrum.html micropeak.html telegps.html easymini.html $(ONEFILE_HTML_FILES) + +HTML=$(PUBLISH_HTML) $(RELNOTES_HTML) HTML_REVHISTORY=\ altusmetrum-revhistory.html \ @@ -207,7 +210,7 @@ HTML_REVHISTORY=\ telegps-revhistory.html \ easymini-revhistory.html -PDF=altusmetrum.pdf micropeak.pdf telegps.pdf easymini.pdf $(RELNOTES_PDF) $(ONEFILE_PDF_FILES) \ +PDF=altusmetrum.pdf micropeak.pdf telegps.pdf easymini.pdf $(ONEFILE_PDF_FILES) \ $(OUTLINE_PDF_FILES) FOP_STYLE=am-fo.xsl @@ -235,6 +238,8 @@ TEMPLATES_XSL=$(TEMPLATES_TMPL:.tmpl=.xsl) PDF_CONFIG_FILES=$(FOP_STYLE) $(COMMON_STYLE) $(FOP_XCONF) $(TEMPLATES_XSL) HTML_CONFIG_FILES=$(HTML_STYLE) $(COMMON_STYLE) $(TEMPLATES_XSL) +PUBLISH_DOC=$(PUBLISH_HTML) $(HTML_REVHISTORY) $(PDF) $(IMAGES) $(STYLESHEET) + DOC=$(HTML) $(HTML_REVHISTORY) $(PDF) $(IMAGES) $(STYLESHEET) .SUFFIXES: .tmpl .xsl .inc .txt .raw .pdf .html @@ -245,12 +250,12 @@ DOC=$(HTML) $(HTML_REVHISTORY) $(PDF) $(IMAGES) $(STYLESHEET) .inc.raw: sed -e 's/^[ ]*//' -e 's/^\\//' $*.inc > $@ -.raw.pdf: +.raw.html: a2x --verbose -a docinfo -f pdf --xsltproc-opts "--stringparam toc.section.depth 2" --xsl-file $(FOP_STYLE) --fop --fop-opts="-c $(FOP_XCONF)" $*.raw a2x --verbose -a docinfo -f xhtml --xsltproc-opts "--stringparam toc.section.depth 2" --xsl-file $(HTML_STYLE) --stylesheet=$(STYLESHEET) $*.raw case $* in release-notes*) ./fix-html $*.html ;; esac -.pdf.html: +.html.pdf: @touch $@ .tmpl.xsl: @@ -278,19 +283,21 @@ telemini-v3-outline.pdf: telemini-v3-outline.txt telemini-v3.svg install: all -publish: $(DOC) $(FONTS) - cp $(DOC) /home/bdale/web/altusmetrum/AltOS/doc/ - mkdir -p /home/bdale/web/altusmetrum/AltOS/doc/fonts/ - cp $(FONTS) /home/bdale/web/altusmetrum/AltOS/doc/fonts/ - (cd /home/bdale/web/altusmetrum ; \ - git add /home/bdale/web/altusmetrum/AltOS/doc/* ; \ - git add /home/bdale/web/altusmetrum/AltOS/doc/fonts/* ; \ +WEB_ROOT=/home/bdale/web/ + +publish: $(PUBLISH_DOC) $(FONTS) + cp $(PUBLISH_DOC) $(WEB_ROOT)/altusmetrum/AltOS/doc/ + mkdir -p $(WEB_ROOT)/altusmetrum/AltOS/doc/fonts/ + cp $(FONTS) $(WEB_ROOT)/altusmetrum/AltOS/doc/fonts/ + (cd $(WEB_ROOT)/altusmetrum ; \ + git add $(WEB_ROOT)/altusmetrum/AltOS/doc/* ; \ + git add $(WEB_ROOT)/altusmetrum/AltOS/doc/fonts/* ; \ echo "update docs" | \ - git commit -F - /home/bdale/web/altusmetrum/AltOS/doc/* /home/bdale/web/altusmetrum/AltOS/doc/fonts/* ; \ + git commit -F - $(WEB_ROOT)/altusmetrum/AltOS/doc/* $(WEB_ROOT)/altusmetrum/AltOS/doc/fonts/* ; \ git push) -publish-keithp: am.html $(DOC) $(FONTS) - scp -p am.html $(DOC) keithp.com:~keithp/public_html/altos +publish-keithp: am.html $(PUBLISH_DOC) $(FONTS) + scp -p am.html $(PUBLISH_DOC) keithp.com:~keithp/public_html/altos scp -p $(FONTS) keithp.com:~keithp/public_html/altos/fonts clean: diff --git a/doc/RELNOTES b/doc/RELNOTES index 8f7d2540..c3980882 100644 --- a/doc/RELNOTES +++ b/doc/RELNOTES @@ -1,7 +1,6 @@ Creating documentation for a new release of AltOS -* Write release notes in release-notes-${version}.inc. Write docinfo - for release notes in release-notes-${version}-docinfo.xml. Add to +* Write release notes in release-notes-${version}.inc. Add to Makefile * Add references to that as appropriate from each of the @@ -30,5 +29,4 @@ Creating documentation for a new release of AltOS telegps-docinfo.xml telemetry-docinfo.xml -* Add release-notes-${version}.inc and - release-notes-${version}-docinfo.xml to git +* Add release-notes-${version}.inc to git diff --git a/doc/altusmetrum-docinfo.xml b/doc/altusmetrum-docinfo.xml index 3b0793b8..235111fc 100644 --- a/doc/altusmetrum-docinfo.xml +++ b/doc/altusmetrum-docinfo.xml @@ -47,6 +47,13 @@ <revhistory> <?dbhtml filename="altusmetrum-revhistory.html"?> <revision> + <revnumber>1.8.4</revnumber> + <date>20 Dec 2017</date> + <revremark> + Support EasyMini v2.0 hardware. + </revremark> + </revision> + <revision> <revnumber>1.8.3</revnumber> <date>11 Dec 2017</date> <revremark> diff --git a/doc/easymini-docinfo.xml b/doc/easymini-docinfo.xml index cf3f27d2..85baba1e 100644 --- a/doc/easymini-docinfo.xml +++ b/doc/easymini-docinfo.xml @@ -39,6 +39,13 @@ <revhistory> <?dbhtml filename="easymini-revhistory.html"?> <revision> + <revnumber>1.8.4</revnumber> + <date>20 Dec 2017</date> + <revremark> + Support EasyMini v2.0 hardware. + </revremark> + </revision> + <revision> <revnumber>1.6.3</revnumber> <date>21 April 2016</date> <revremark> diff --git a/doc/easymini-release-notes.inc b/doc/easymini-release-notes.inc index f4f45fd7..dae928a6 100644 --- a/doc/easymini-release-notes.inc +++ b/doc/easymini-release-notes.inc @@ -1,6 +1,10 @@ [appendix] == Release Notes :leveloffset: 2 + include::release-notes-1.8.4.raw[] + + <<<< + :leveloffset: 2 include::release-notes-1.8.3.raw[] <<<< diff --git a/doc/release-notes-0.7.1-docinfo.xml b/doc/release-notes-0.7.1-docinfo.xml deleted file mode 100644 index 9657f2a6..00000000 --- a/doc/release-notes-0.7.1-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>29 September 2010</date> -<copyright> - <year>2010</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-0.8-docinfo.xml b/doc/release-notes-0.8-docinfo.xml deleted file mode 100644 index d593da31..00000000 --- a/doc/release-notes-0.8-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>24 November 2010</date> -<copyright> - <year>2010</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-0.9-docinfo.xml b/doc/release-notes-0.9-docinfo.xml deleted file mode 100644 index 605472f2..00000000 --- a/doc/release-notes-0.9-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>18 January 2011</date> -<copyright> - <year>2011</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-0.9.2-docinfo.xml b/doc/release-notes-0.9.2-docinfo.xml deleted file mode 100644 index 40e53634..00000000 --- a/doc/release-notes-0.9.2-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>19 March 2011</date> -<copyright> - <year>2011</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-1.0.1-docinfo.xml b/doc/release-notes-1.0.1-docinfo.xml deleted file mode 100644 index 23972104..00000000 --- a/doc/release-notes-1.0.1-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>24 August 2011</date> -<copyright> - <year>2011</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-1.1-docinfo.xml b/doc/release-notes-1.1-docinfo.xml deleted file mode 100644 index 93273918..00000000 --- a/doc/release-notes-1.1-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>13 September 2012</date> -<copyright> - <year>2013</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-1.1.1-docinfo.xml b/doc/release-notes-1.1.1-docinfo.xml deleted file mode 100644 index 41ea12da..00000000 --- a/doc/release-notes-1.1.1-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>16 September 2012</date> -<copyright> - <year>2012</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-1.2-docinfo.xml b/doc/release-notes-1.2-docinfo.xml deleted file mode 100644 index ba2c9d56..00000000 --- a/doc/release-notes-1.2-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>18 April 2013</date> -<copyright> - <year>2013</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-1.2.1-docinfo.xml b/doc/release-notes-1.2.1-docinfo.xml deleted file mode 100644 index d0f08b9c..00000000 --- a/doc/release-notes-1.2.1-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>21 May 2013</date> -<copyright> - <year>2013</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-1.3-docinfo.xml b/doc/release-notes-1.3-docinfo.xml deleted file mode 100644 index aa569df4..00000000 --- a/doc/release-notes-1.3-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>12 November 2013</date> -<copyright> - <year>2013</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-1.3.1-docinfo.xml b/doc/release-notes-1.3.1-docinfo.xml deleted file mode 100644 index f67cf3b8..00000000 --- a/doc/release-notes-1.3.1-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>21 January 2014</date> -<copyright> - <year>2014</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-1.3.2-docinfo.xml b/doc/release-notes-1.3.2-docinfo.xml deleted file mode 100644 index 82b7677e..00000000 --- a/doc/release-notes-1.3.2-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>24 January 2014</date> -<copyright> - <year>2014</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-1.4-docinfo.xml b/doc/release-notes-1.4-docinfo.xml deleted file mode 100644 index 12a38ce5..00000000 --- a/doc/release-notes-1.4-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>15 June 2014</date> -<copyright> - <year>2014</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-1.4.1-docinfo.xml b/doc/release-notes-1.4.1-docinfo.xml deleted file mode 100644 index 6224b16e..00000000 --- a/doc/release-notes-1.4.1-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>20 June 2014</date> -<copyright> - <year>2014</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-1.4.2-docinfo.xml b/doc/release-notes-1.4.2-docinfo.xml deleted file mode 100644 index 8fd94324..00000000 --- a/doc/release-notes-1.4.2-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>17 August 2014</date> -<copyright> - <year>2014</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-1.5-docinfo.xml b/doc/release-notes-1.5-docinfo.xml deleted file mode 100644 index 0c0cace7..00000000 --- a/doc/release-notes-1.5-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>6 September 2014</date> -<copyright> - <year>2014</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-1.6-docinfo.xml b/doc/release-notes-1.6-docinfo.xml deleted file mode 100644 index 5ae58bb5..00000000 --- a/doc/release-notes-1.6-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>8 January 2015</date> -<copyright> - <year>2015</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-1.6.1-docinfo.xml b/doc/release-notes-1.6.1-docinfo.xml deleted file mode 100644 index dc0a2d67..00000000 --- a/doc/release-notes-1.6.1-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>15 July 2015</date> -<copyright> - <year>2015</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-1.6.2-docinfo.xml b/doc/release-notes-1.6.2-docinfo.xml deleted file mode 100644 index 78206e2a..00000000 --- a/doc/release-notes-1.6.2-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>10 January 2016</date> -<copyright> - <year>2016</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-1.6.3-docinfo.xml b/doc/release-notes-1.6.3-docinfo.xml deleted file mode 100644 index ce22ebcb..00000000 --- a/doc/release-notes-1.6.3-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>6 May 2016</date> -<copyright> - <year>2016</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-1.6.4-docinfo.xml b/doc/release-notes-1.6.4-docinfo.xml deleted file mode 100644 index 76af3557..00000000 --- a/doc/release-notes-1.6.4-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>17 June 2016</date> -<copyright> - <year>2016</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-1.6.5-docinfo.xml b/doc/release-notes-1.6.5-docinfo.xml deleted file mode 100644 index a07d6f0f..00000000 --- a/doc/release-notes-1.6.5-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>4 July 2016</date> -<copyright> - <year>2016</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-1.6.8-docinfo.xml b/doc/release-notes-1.6.8-docinfo.xml deleted file mode 100644 index 776c244c..00000000 --- a/doc/release-notes-1.6.8-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>5 September 2016</date> -<copyright> - <year>2016</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-1.7-docinfo.xml b/doc/release-notes-1.7-docinfo.xml deleted file mode 100644 index 61d77d92..00000000 --- a/doc/release-notes-1.7-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>24 April 2017</date> -<copyright> - <year>2017</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-1.8-docinfo.xml b/doc/release-notes-1.8-docinfo.xml deleted file mode 100644 index 3b40421a..00000000 --- a/doc/release-notes-1.8-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>12 August 2017</date> -<copyright> - <year>2017</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-1.8.1-docinfo.xml b/doc/release-notes-1.8.1-docinfo.xml deleted file mode 100644 index 29a4fe7a..00000000 --- a/doc/release-notes-1.8.1-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>28 August 2017</date> -<copyright> - <year>2017</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-1.8.2-docinfo.xml b/doc/release-notes-1.8.2-docinfo.xml deleted file mode 100644 index a5fbc6e2..00000000 --- a/doc/release-notes-1.8.2-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>18 September 2017</date> -<copyright> - <year>2017</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-1.8.3-docinfo.xml b/doc/release-notes-1.8.3-docinfo.xml deleted file mode 100644 index e0366586..00000000 --- a/doc/release-notes-1.8.3-docinfo.xml +++ /dev/null @@ -1,29 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<date>11 December 2017</date> -<copyright> - <year>2017</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes-1.8.4.inc b/doc/release-notes-1.8.4.inc new file mode 100644 index 00000000..f8cb4f11 --- /dev/null +++ b/doc/release-notes-1.8.4.inc @@ -0,0 +1,9 @@ += Release Notes for Version 1.8.4 +:toc!: +:doctype: article + + Version 1.8.4 includes support for EasyMini version 2.0 + + == AltOS + + * Support for EasyMini version 2.0 hardware. diff --git a/doc/release-notes-docinfo.xml b/doc/release-notes-docinfo.xml deleted file mode 100644 index 4f842cde..00000000 --- a/doc/release-notes-docinfo.xml +++ /dev/null @@ -1,28 +0,0 @@ -<author> - <firstname>Bdale</firstname> - <surname>Garbee</surname> - <email>bdale@gag.com</email> -</author> -<author> - <firstname>Keith</firstname> - <surname>Packard</surname> - <email>keithp@keithp.com</email> -</author> -<copyright> - <year>2015</year> - <holder>Bdale Garbee and Keith Packard</holder> -</copyright> -<mediaobject> - <imageobject> - <imagedata fileref="../themes/background.png" width="6.0in"/> - </imageobject> -</mediaobject> -<legalnotice> - <para> - This document is released under the terms of the - <ulink url="http://creativecommons.org/licenses/by-sa/3.0/"> - Creative Commons ShareAlike 3.0 - </ulink> - license. - </para> -</legalnotice> diff --git a/doc/release-notes.inc b/doc/release-notes.inc index 1c177afa..50b27ab5 100644 --- a/doc/release-notes.inc +++ b/doc/release-notes.inc @@ -2,6 +2,11 @@ == Release Notes :leveloffset: 2 + include::release-notes-1.8.4.raw[] + + <<<< + + :leveloffset: 2 include::release-notes-1.8.3.raw[] <<<< diff --git a/doc/telegps-release-notes.inc b/doc/telegps-release-notes.inc index 0c506c28..5c5da8f6 100644 --- a/doc/telegps-release-notes.inc +++ b/doc/telegps-release-notes.inc @@ -2,6 +2,11 @@ == Release Notes :leveloffset: 2 + include::release-notes-1.8.4.raw[] + + <<<< + + :leveloffset: 2 include::release-notes-1.8.3.raw[] <<<< |