From e4807bf764d8f2fa7def286dd48f24c0fe392c6d Mon Sep 17 00:00:00 2001 From: Tobias Klika Date: Fri, 28 Feb 2014 15:12:40 +0100 Subject: [PATCH] update readme and changelog --- CHANGELOG.md | 6 ++++++ README.md | 7 ++----- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 428b84a..c653b31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +### 2.1.0 (2014-02-28) + +- Support for Response Times +- Support for Web Hooks alert type +- Fix log date conversion + ### 2.0.0 (2014-02-02) - Re-publish UptimeSharp as a newly created PCL with support for multiple platforms diff --git a/README.md b/README.md index 270d538..9e4a7c8 100644 --- a/README.md +++ b/README.md @@ -79,8 +79,7 @@ Provide additional params for more data: List items = await _client.GetMonitors( monitorIDs: new string[]{ "12891", "98711" }, customUptimeRatio: new float[] { 7, 30, 45 }, - showLog: true, - showAlerts: true + includeDetails: true ); ``` @@ -88,9 +87,7 @@ List items = await _client.GetMonitors(
`customUptimeRatio`: the number of days to calculate the uptime ratio(s) for _(default: null)_
-`showLog`: include log, if true _(default: false)_ -
-`showAlerts`: include alerts, if true _(default: true)_ +`includeDetails`: include log, alerts and response times, if true _(default: false)_