Install SeisComP and scanloc ARM64 nightly packages
This commit is contained in:
@ -31,12 +31,12 @@ namespace Seiscomp {
|
||||
namespace Core {
|
||||
|
||||
|
||||
/* #if (SC_API_VERSION >= SC_API_VERSION_CHECK(16, 4, 0)) */
|
||||
/* #if (SC_API_VERSION >= SC_API_VERSION_CHECK(17, 0, 0)) */
|
||||
#define SC_API_VERSION_CHECK(major, minor, patch) ((major<<16)|(minor<<8)|(patch))
|
||||
|
||||
|
||||
/* SC_API_VERSION is (major << 16) + (minor << 8) + patch. */
|
||||
#define SC_API_VERSION 0x100400
|
||||
#define SC_API_VERSION 0x110000
|
||||
|
||||
#define SC_API_VERSION_MAJOR(v) (v >> 16)
|
||||
#define SC_API_VERSION_MINOR(v) ((v >> 8) & 0xff)
|
||||
@ -46,6 +46,62 @@ namespace Core {
|
||||
/******************************************************************************
|
||||
API Changelog
|
||||
******************************************************************************
|
||||
"17.0.0" 0x110000
|
||||
- Added Seiscomp::Gui::Scheme::records.showEngineeringValues
|
||||
- Added Seiscomp::Gui::RecordView::showEngineeringValues(bool)
|
||||
- Added Seiscomp::Gui::RecordWidget::showEngineeringValues(bool)
|
||||
- Added Seiscomp::Client::Application::handleSOH
|
||||
- Added Seiscomp::Processing::MagnitudeProcessor_MLc _c6, _H and _minDepth.
|
||||
- Added Seiscomp::Processing::AmplitudeProcessor::parameter
|
||||
- Made Seiscomp::IO::DatabaseInterface::escape a const method
|
||||
- Increased TILESTORE_API version to 5
|
||||
- Added Seiscomp::Processing::WaveformProcessor::Status enumeration PeriodOutOfRange
|
||||
- Renamed Seiscomp::Core::Time::seconds() to Time::epochSeconds()
|
||||
- Added Seiscomp::Core::Time::epoch()
|
||||
- Deprecated Seiscomp::Core::Time::valid()
|
||||
- Removed implicit Seiscomp::Core::TimeSpan and Seiscomp::Core::Time double cast
|
||||
- Removed Seiscomp::System::CommandLine::parse(inv argc, char **argv, *)
|
||||
- Added Seiscomp::System::CommandLine::parse(std::vector<std::string>, *)
|
||||
- Changed Seiscomp::Core::Time in Seiscomp::IO::RecordStream::addStream,
|
||||
Seiscomp::IO::RecordStream::setStartTime and
|
||||
Seiscomp::IO::RecordStream::setEndTime to OPT(Seiscomp::Core::Time)
|
||||
- Changed Seiscomp::Core::Time in Seiscomp::Client::StreamApplication::setStartTime
|
||||
and Seiscomp::Client::StreamApplication::setEndTime to OPT(Seiscomp::Core::Time)
|
||||
- Rename Seiscomp::Wired::ClientSession::inAvail to outputBufferSize and
|
||||
remove virtual declaration
|
||||
- Added abstract virtual function MagnitudeProcessor::setDefaults() which must
|
||||
be implemented by all derived classes.
|
||||
- Changed Seiscomp::Core::TimeWindow cast to bool semantic
|
||||
- Changed Seiscomp::Core::TimeWindow::length return type, from double to
|
||||
Seiscomp::Core::TimeSpan
|
||||
- Changed Seiscomp::Core::TimeWindow::setLength length argument from double
|
||||
to Seiscomp::Core::TimeSpan
|
||||
- Changed Seiscomp::Core::TimeWindow::equals tolerance argument from double
|
||||
to Seiscomp::Core::TimeSpan
|
||||
- Changed Seiscomp::Core::TimeWindow::contiguous tolerance argument from double
|
||||
to Seiscomp::Core::TimeSpan
|
||||
- Added Seiscomp::Core::metaValueCast
|
||||
- Removed typedef Seiscomp::Core::SmartPointer::Impl
|
||||
- Added Seiscomp::Core::SmartPointer as typedef for boost::instrusive_ptr
|
||||
- Removed typedef Seiscomp::Core::Optional::Impl
|
||||
- Added Seiscomp::Core::Optional as typedef for boost::optional
|
||||
- Added Seiscomp::Math::Geo::WGS84_MEAN_RADIUS
|
||||
- Added Seiscomp::Math::Geo::WGS84_KM_OF_DEGREE
|
||||
- Added Seiscomp::Math::Geo::WGS84_SEMI_MAJOR_AXIS
|
||||
- Added Seiscomp::Math::Geo::WGS84_FLATTENING
|
||||
- Removed defined KM_OF_DEGREE
|
||||
- Renamed Seiscomp::ellipcorr to Seiscomp::ellipticityCorrection
|
||||
- Removed Seiscomp::DataModel::DatabaseQuery::getStation
|
||||
- Added Seiscomp::Geo::readFEP
|
||||
- Added Seiscomp::Geo::writeGeoJSON
|
||||
- Added Seiscomp::Math::Matrix3<T> ostream output operator
|
||||
- Added Seiscomp::Math::Vector3<T> ostream output operator
|
||||
- Added Seiscomp::Math::Matrix3<T>::operator*
|
||||
- Added Seiscomp::Math::Matrix3<T>::operator=
|
||||
- Added static Seiscomp::Math::Matrix3<T>::Rotate[X|Y|Z]
|
||||
- Added unary Seiscomp::Math::Vector3<T>::operator+
|
||||
- Added unary Seiscomp::Math::Vector3<T>::operator-
|
||||
- Added Seiscomp::Math::Vector3<T>::normalized
|
||||
|
||||
"16.4.0" 0x100400
|
||||
- Added Seiscomp::Math::double2frac
|
||||
|
||||
Reference in New Issue
Block a user