Skip to content
This repository was archived by the owner on May 9, 2018. It is now read-only.

Commit 5141916

Browse files
author
Zachary DuBois
committed
Update docs and bump version
1 parent 72bf2ee commit 5141916

File tree

3 files changed

+25
-8
lines changed

3 files changed

+25
-8
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

3+
## v0.6.0
4+
5+
- Adds CDN test on AWS Cloudfront.
6+
- Adds SSL argument.
7+
- Speeds up ping test a little.
8+
- Adds tracking for just test count stats.
9+
310
## v0.5.8
411

512
- Adds the FRA1 datacenter.

README.md

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# DigitalOcean Speed Test CLI
22

3-
*v0.5.8*
3+
*v0.6.0*
44

55
## Features
66

@@ -19,13 +19,23 @@
1919
## Run It Now
2020

2121
To run the speed test, do:
22-
23-
curl -s https://i.destroy.tokyo/dostcli | bash
24-
22+
```shell
23+
curl -s https://i.destroy.tokyo/dostcli | bash
24+
```
25+
26+
or if you want to opt out of tracking, run
27+
```shell
28+
curl -s https://i.destroy.tokyo/dostcli | bash -s 100mb true
29+
```
2530
or for a 10MB test, run:
26-
27-
curl -s https://i.destroy.tokyo/dostcli | bash -s - 10mb
31+
```shell
32+
curl -s https://i.destroy.tokyo/dostcli | bash -s - 10mb
33+
```
34+
and again, to opt out of tracking, run
35+
```shell
36+
curl -s https://i.destroy.tokyo/dostcli | bash -s - 10mb true
37+
```
2838

2939
## Notices
3040

31-
- This currently does not test upload speed.
41+
- This currently does not test upload speed (Soon!).

do-cli-speedtest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
# DigitalOcean Speed Test CLI
33
# https://github.com/ZacharyDuBois/DigitalOcean-Speed-Test-CLI
4-
version="v0.5.8"
4+
version="v0.6.0"
55

66
##
77
# Variables

0 commit comments

Comments
 (0)