diff --git a/CHANGELOG.md b/CHANGELOG.md
index c2fa8862..1563c9fc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [Unreleased]
+## [1.16.2] - 2022-06-30
+### Added
+- New options to configure the [unit](https://chird.github.io/meteoJS/doc/module-meteoJS_thermodynamicDiagram_windspeedProfile.html#~hoverLabelsOptions) of the hover labels in the windspeed profile.
+### Fixed
+- [Lines](file:///Users/ivo/git/meteoJS/doc/module-meteoJS_thermodynamicDiagram.html#~lineOptions) set to invisible aren't drawn anymore in the thermodynamic diagram.
+
## [1.16.1] - 2021-08-16
### Fixed
- Custom [getHoverSounding](https://chird.github.io/meteoJS/doc/module-meteoJS_thermodynamicDiagram_plotDataArea.html#~getHoverSounding)
@@ -296,7 +302,8 @@ will not work anymore, until you pass a callback to `getTimeText`.
### Fixed
- Some tests with DOM usage.
-[Unreleased]: https://github.com/chird/meteoJS/compare/v1.16.1...HEAD
+[Unreleased]: https://github.com/chird/meteoJS/compare/v1.16.2...HEAD
+[1.16.1]: https://github.com/chird/meteoJS/compare/v1.16.1...v1.16.2
[1.16.1]: https://github.com/chird/meteoJS/compare/v1.16.0...v1.16.1
[1.16.0]: https://github.com/chird/meteoJS/compare/v1.15.0...v1.16.0
[1.15.0]: https://github.com/chird/meteoJS/compare/v1.14.7...v1.15.0
diff --git a/doc/Modelviewer.js.html b/doc/Modelviewer.js.html
index e8775c4a..6898bc11 100644
--- a/doc/Modelviewer.js.html
+++ b/doc/Modelviewer.js.html
@@ -2,7 +2,7 @@
* @param {number} [options.horizontalMargin=0] - Padding in x direction.
* @param {number} [options.verticalMargin=0] - Padding in y direction.
* @param {module:meteoJS/thermodynamicDiagram~fontOptions} [options.font] - Font style.
- * @prarm {string|Object|undefined} [options.fill]
+ * @param {string|Object|undefined} [options.fill]
* Fill for background. If undefined, no background is drawn.
* @returns {external:SVG} - SVG group containing the inserted elements.
*/
@@ -423,7 +423,7 @@
*
* @typedef {module:meteoJS/thermodynamicDiagram/plotAltitudeDataArea~hoverLabelsOptions}
* module:meteoJS/thermodynamicDiagram/windspeedProfile~hoverLabelsOptions
- * @property {module:meteoJS/thermodynamicDiagram/tdDiagram~labelsOptions}
- * [windspeed] - Options for windspeed label.
+ * @property {Object} [windspeed]
+ * Options for the output of the windspeed value.
+ * @property {boolean} [windspeed.visible=true] - Visibility.
+ * @property {string} [windspeed.unit='kn']
+ * Unit of the value text. Allowed values: 'm/s', 'kn', 'km/h'
+ * @property {integer} [windspeed.decimalPlaces=0]
+ * Number of digits to appear after the decimal point.
+ * @property {string} [windspeed.prefix=' kn'] - Prefix of the value text.
* @property {number} [windspeedMax=77.17]
* The maximum visible windspeed. Unit: m/s.
*/
@@ -100,6 +106,8 @@
Source: thermodynamicDiagram/WindspeedProfile.js
* [grid.isotachs] - Options for isotach grid. By default, the lines are grey and dashed.
* @property {module:meteoJS/thermodynamicDiagram/windspeedProfile~isobarsOptions}
* [grid.isobars] - Options for isobar grid. By default, the lines are grey and dashed.
+ * @property {module:meteoJS/thermodynamicDiagram/windspeedProfile~hoverLabelsOptions}
+ * [hoverLabels] - Hover labels options.
*/
/**
@@ -277,17 +285,36 @@