diff --git a/RELEASE.txt b/RELEASE.txt index ce989bf9b..e5c58dee8 100755 --- a/RELEASE.txt +++ b/RELEASE.txt @@ -34,6 +34,12 @@ This document describes the differences between v6.1.0 and v6.0.0. - m3 server crash (vthrehsold) - allow vtrim to be interpolated for Eiger settings - m3 setThresholdEnergy and setAllThresholdEnergy was overwriting gaincaps with settings enum +- can set localhost with virtual server with minimum configuration: (hostname localhost, rx_hostname localhost, udp_dstip auto) +- increases the progress according to listened index. (not processed index) +- current frame index points to listened frame index (not processed index) +- when in discard partial frames or empty mode, the frame number doesnt increase by 1, it increases to that number (so its faster) +- file write disabled by default + 2. Resolved Issues diff --git a/slsReceiverSoftware/src/Implementation.h b/slsReceiverSoftware/src/Implementation.h index 757d64d05..8264c7c34 100644 --- a/slsReceiverSoftware/src/Implementation.h +++ b/slsReceiverSoftware/src/Implementation.h @@ -299,7 +299,7 @@ class Implementation : private virtual slsDetectorDefs { std::string filePath{"/"}; std::string fileName{"run"}; uint64_t fileIndex{0}; - bool fileWriteEnable{true}; + bool fileWriteEnable{false}; bool masterFileWriteEnable{true}; bool overwriteEnable{true}; uint32_t framesPerFile{0};