Commit e4cce581 authored by Fabio Vitello's avatar Fabio Vitello
Browse files

Merge branch 'master' into fix-issue-595

parents 6f77c0a4 403ede87
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -47,3 +47,4 @@ SRT/Clients/SRTActiveSurfaceGUIClient/src/moc_SRTActiveSurfaceCore.cpp
SRT/Clients/SRTActiveSurfaceGUIClient/src/moc_SRTActiveSurfaceGUIui.cpp
SRT/Errors/SRTActiveSurfaceErrors/idl/ASErrors.idl
SRT/Interfaces/SRTActiveSurfaceInterface/idl/SRTActiveSurfaceBoss.idl
SRT/Interfaces/SRTActiveSurfaceInterface/idl/SRTActiveSurfaceCommon.idl
+8 −5
Original line number Diff line number Diff line
@@ -85,9 +85,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/
## [discos1.0.5] - 
## Added
    issue #504 - added credits clause (regarding INAF data ownership) to fits files headers
   issue #518 - KBand receivers cryo temperature read wrongly with connection problems. More information:
    https://github.com/discos/discos/issues/518#issuecomment-590838480
   issue #533 - New Fitszilla versione 1.21 online. The user offsets related keywords added to the primary header.
    issue #518 - KBand receivers cryo temperature read wrongly with connection problems. More information: https://github.com/discos/discos/issues/518#issuecomment-590838480
    issue #533 - New Fitszilla version 1.21 online. The user offsets related keywords added to the primary header.
    issue #556 - Added API to send emails to local system administrators. This feature is now exploted when a servo system oscillation is detected at Noto and Medicina
## Fixed
    issue #518 - In case of communication error we set a dummy value (100000) for the temperature properties, and the related timestamp keeps the value of the last communication timestamp.
@@ -99,4 +98,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/
## Added
## Fixed
    issue #448 - Added Sky Offsets to calibration tool client
    issue #585 - Fixed misshandled schedule with NULL as backend (Dry Run)
## Changed
    issues #481, #484, #486, #487, #491, #493, #497. SRT Active Surface module has been improved in order to speed up its booting time and optimize its overall behavior
	 issue #604 - The control software will not allow anymore that a schedule, belonging to another project, could be run. In that case a warning message is sent to user console
	              and the execution aborted. 
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@
	<Member name="Reason" type="string" description="Reason" />
</ErrorCode>	

<ErrorCode name="CouldntLogManager" shortDescription="Manager couldn't be accessed" Description=" "/>
<ErrorCode name="CouldntLogManager" shortDescription="Manager couldn't be accessed" description=" "/>

<ErrorCode name="CouldntInit" shortDescription="Client could not be initialized" description=" "/>

+5 −1
Original line number Diff line number Diff line
@@ -102,10 +102,14 @@

<ErrorCode name="CloseTelescopeScanError" shortDescription="Not able command the scan close to the telescope" description=" "/>

<ErrorCode name="InvalidRestFrequency" shortDescription="The rest frequency is not provided or does not match the number of backend sections" description=" "/>
<ErrorCode name="InvalidRestFrequency" shortDescription="The rest frequency is not correctly provided" description=" "/>

<ErrorCode name="ScheduleNotExist" shortDescription="Schedule could not be found" description=" "/>

<ErrorCode name="CannotClosePendingTask" shortDescription="Cannot close all pending tasks" description=" "/>

<ErrorCode name="ScheduleProjectNotMatch" shortDescription="Schedule PROJECT keyword does not match with active project" description=" ">
	<Member name="Project" type="string" description="Describes the cause of the error" />
</ErrorCode>

</Type>
+14 −14
Original line number Diff line number Diff line
@@ -8,35 +8,35 @@

    <Code name="Communicating" 
         shortDescription="No Error" 
         description="No error condition found"/>
         description=" "/>

    <ErrorCode name="CommunicationError" 
         shortDescription="An error occured during the communication" 
         description="Cannot communicate properly with the derotator"/>
         shortDescription="Cannot communicate properly with the derotator" 
         description=" "/>

    <ErrorCode name="ConfigurationError" 
         shortDescription="Error configuring the derotator" 
         description="Cannot perform the derotator configuration"/>
         shortDescription="Cannot perform the derotator configuration" 
         description=" "/>

    <ErrorCode name="RemoteControlError" 
         shortDescription=" " 
         description="The derotator is not remotely controllable"/>
         shortDescription="The derotator is not remotely controllable" 
         description=" "/>

    <ErrorCode name="ValidationError" 
         shortDescription="Cannot validate the derotator answer" 
         description="Cannot understand the derotator answer"/>
         description=" "/>

    <ErrorCode name="PositioningError" 
         shortDescription=" "
         description="Cannot set the position"/>
         shortDescription="Cannot set derotator position"
         description=" "/>

    <ErrorCode name="OutOfRangeError" 
         shortDescription=" " 
         description="Position out of range"/>
         shortDescription="Derotator position out of range" 
         description=" "/>

    <ErrorCode name="UnexpectedError" 
         shortDescription=" " 
         description="Unexpected error"/>
         shortDescription="Unexpected error" 
         description=" "/>
</Type>

Loading