Skip to content

Commit

Permalink
Release 1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
frougon committed Dec 31, 2015
1 parent 6875faa commit 20a67ee
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
28 changes: 28 additions & 0 deletions ChangeLog
Expand Up @@ -650,3 +650,31 @@ you may want to consult the Git repository log.
Treeview widgets used in the new Airport Finder dialog.
(Florent Rougon)
[FEATURE] Update the German translation. (chris_blues)

1.8.1
[BUGFIX] Support MagneticField from GeographicLib versions < 1.39. In these
versions, the MagneticField program doesn't support the special
string "now" for the time field. Use the current date in order to
support these versions (i.e., released before 2014-11-11).
(Florent Rougon)
[BUGFIX] Layout improvements: make sure that the most important widgets in
FFGo's main window are the last to be shrunk when the window is too
small to display all of its widgets at their natural size. Most
notably, the frame containing the "Run FG" button could be
completely invisible in version 1.8.0 if started with a main window
that is not very tall. With this change, the text and list widgets,
as well as the aircraft thumbnail, are all shrunk before starting to
“touch” to any of the buttons or labels. (Florent Rougon)
[BUGFIX] Fix wrong line numbers in error reports for index-based apt.dat
requests. AptDat.readAirportDataUsingIndex() used to seek into the
apt.dat.gz file using the specified index, but it did not modify
AptDat.lineNb accordingly. As a consequence, the line numbers for
error reports concerning apt.dat parsing raised by this method were
usually wrong. In order to properly fix this, it has been necessary
to modify be the apt digest file format a little bit (storing a line
number along with each index value), and therefore to change its
format version from 2 to 3. Migration for users should be completely
automatic. (Florent Rougon)
[DOC] Add notes concerning the 'pkg_resources' Python 3 module to
docs/INSTALL/INSTALL_en. Users might need to install this module in
somewhat unusual situations. (Florent Rougon)
2 changes: 1 addition & 1 deletion ffgo/version.py
Expand Up @@ -25,7 +25,7 @@ def __str__(self):
def __repr__(self):
return "{0}.{1}".format(__name__, _VersionInfo.__repr__(self))

version_info = VersionInfo(1, 8, 0, "")
version_info = VersionInfo(1, 8, 1, "")
__version__ = str(version_info)

del collections

0 comments on commit 20a67ee

Please sign in to comment.