diff --git a/documentation/areaDetectorReleaseNotes.html b/documentation/areaDetectorReleaseNotes.html
index 0b995d5..c146cef 100755
--- a/documentation/areaDetectorReleaseNotes.html
+++ b/documentation/areaDetectorReleaseNotes.html
@@ -118,6 +118,28 @@
They had DTYP=asynInt32, corrected to asynFloat64.
+
NDPluginStats
+
+ - Time-series arrays
+
+ - Changed code so that time series are collected internally in the plugin, rather
+ than using callbacks to the fastSweep device support for the mca record. This is
+ more efficient, and eliminates the dependence of the areaDetector module on the
+ mca module.
+ - NOTE: This change is not backwards compatible. Clients that are collecting time-series
+ data with the mca record will need to be modified to use the new PVs that are now
+ provided in this plugin.
+ - Time series data is now available for all basic statistics and centroid statistics.
+ Previously it was only available for Total, Net, and Max.
+ - New PVs to control time series collection and provide status on it.
+ - New medm screen, NDTimeSeries.adl, to display time series data.
+
+
+ - Fixed bug that degraded driver performance in some circumstances. The plugin was
+ not releasing the lock during come computationally expensive operations, which would
+ cause the driver to wait when queueing the next array during a callback.
+
+
Support libraries. The static Linux support libraries provided in R1-7 were built
@@ -151,6 +173,10 @@
Miscellaneous
- Fixes to commonDriverMakefile to build on Darwin (OS X).
+ - Removed dependence of areaDetector on the synApps mca module. The mca module was
+ being used only to collect time-series data of the statistics in the NDPluginStats
+ plugin. NDPluginStats has been changed to collect this time-series itself, using
+ only standard waveform records with asyn device support.