mirror of
https://github.com/opentx/opentx.git
synced 2025-07-25 17:25:13 +03:00
Release notes updated
This commit is contained in:
parent
d63ac41b6a
commit
96a2e18833
3 changed files with 26 additions and 2 deletions
|
@ -1,3 +1,15 @@
|
|||
<h2>Version 2.1.4 / <set date></h2>
|
||||
|
||||
<ul>
|
||||
<li>Fixed: changing any setting on the telemetry panel does not set the file as being modified (<a href=https://github.com/opentx/opentx/issues/2875>#2875</a>)</li>
|
||||
<li>Print model fix for "Play value.... not on startup" (<a href=https://github.com/opentx/opentx/issues/2736>#2736</a>)</li>
|
||||
<li>Top LCD Timer could not be selected for X9E (<a href=https://github.com/opentx/opentx/issues/2850>#2850</a>)</li>
|
||||
<li>More informative error/info messages when openin eepe files (<a href=https://github.com/opentx/opentx/issues/2778>#2778</a>)</li>
|
||||
<li>Print model fix for curves (<a href=https://github.com/opentx/opentx/issues/2896>#2896</a>)</li>
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
<h2>Version 2.1.3 / 2015-09-09</h2>
|
||||
|
||||
<ul>
|
||||
|
|
|
@ -1,3 +1,12 @@
|
|||
<h2>Version 2.1.4 / <set date></h2>
|
||||
|
||||
[AVR boards]
|
||||
<ul>
|
||||
<li>Fixed several problems with automatic playing of Physical and Logical Switches changes (eg LS15-on.wav, SG-mid.wav) (<a href=https://github.com/opentx/opentx/issues/2855>#2855</a>)</li>
|
||||
<li>Sorce selector did not work in Telemetry screen for Bars (<a href=https://github.com/opentx/opentx/issues/2843>#2843</a>)</li>
|
||||
</ul>
|
||||
|
||||
|
||||
<h2>Version 2.1.3 / 2015-09-09</h2>
|
||||
|
||||
[ARM boards]
|
||||
|
|
|
@ -10,8 +10,11 @@ import re
|
|||
import re
|
||||
|
||||
|
||||
inputFile = sys.argv[1]
|
||||
inp = open(inputFile, "r")
|
||||
if len(sys.argv) > 1:
|
||||
inputFile = sys.argv[1]
|
||||
inp = open(inputFile, "r")
|
||||
else:
|
||||
inp = sys.stdin
|
||||
|
||||
pattern = re.compile("#\d+")
|
||||
while True:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue