update documentation
This commit is contained in:
@ -5,7 +5,8 @@ This document summarizes the changes to the module between releases.
|
|||||||
## Release 4.6.0 (EPICS 7.0.5.* March 2021)
|
## Release 4.6.0 (EPICS 7.0.5.* March 2021)
|
||||||
|
|
||||||
* Access Security is now supported.
|
* Access Security is now supported.
|
||||||
* Special support has been revised and extended.
|
* <b>special</b> has been revised and extended.
|
||||||
|
* <b>support</b> is DEPRECATED
|
||||||
|
|
||||||
## Release 4.5.3 (EPICS 7.0.5 Feb 2021)
|
## Release 4.5.3 (EPICS 7.0.5 Feb 2021)
|
||||||
|
|
||||||
|
@ -1,8 +0,0 @@
|
|||||||
TODO
|
|
||||||
===========
|
|
||||||
|
|
||||||
|
|
||||||
create more regression tests
|
|
||||||
----------------
|
|
||||||
|
|
||||||
Currently only some simple tests exist. Most of the testing has been via the examples
|
|
@ -46,6 +46,7 @@ epics::pvData::StructureConstPtr ControlSupport::controlField(ScalarType scalarT
|
|||||||
|
|
||||||
ControlSupportPtr ControlSupport::create(PVRecordPtr const & pvRecord)
|
ControlSupportPtr ControlSupport::create(PVRecordPtr const & pvRecord)
|
||||||
{
|
{
|
||||||
|
cerr << "ControlSupport IS DEPRECATED\n";
|
||||||
ControlSupportPtr support(new ControlSupport(pvRecord));
|
ControlSupportPtr support(new ControlSupport(pvRecord));
|
||||||
return support;
|
return support;
|
||||||
}
|
}
|
||||||
|
@ -48,6 +48,7 @@ epics::pvData::StructureConstPtr ScalarAlarmSupport::scalarAlarmField()
|
|||||||
|
|
||||||
ScalarAlarmSupportPtr ScalarAlarmSupport::create(PVRecordPtr const & pvRecord)
|
ScalarAlarmSupportPtr ScalarAlarmSupport::create(PVRecordPtr const & pvRecord)
|
||||||
{
|
{
|
||||||
|
cerr << "ScalarAlarmSupport IS DEPRECATED\n";
|
||||||
ScalarAlarmSupportPtr support(new ScalarAlarmSupport(pvRecord));
|
ScalarAlarmSupportPtr support(new ScalarAlarmSupport(pvRecord));
|
||||||
return support;
|
return support;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user