Skip to content

Commit

Permalink
Add badges to README, include README/LICENSE/COPYING in release asset…
Browse files Browse the repository at this point in the history
…, match Cargo.toml and package.json versions with tag version
  • Loading branch information
icasdri committed Dec 8, 2016
1 parent 8e8f812 commit 31af19f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stabping"
version = "0.1.3"
version = "0.9.1"
authors = ["icasdri <icasdri@gmail.com>"]
build = "build.rs"

Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Stabping

[![Travis Build Status](https://travis-ci.org/icasdri/stabping.svg?branch=master)](https://travis-ci.org/icasdri/stabping)
[![AppVeyor Build status](https://ci.appveyor.com/api/projects/status/5qi6atyjt69nsmkx?svg=true)](https://ci.appveyor.com/project/icasdri/stabping)

**Stabping** is a lightweight and simple-to-use network connection monitor. It
continuously tests latency (speed and other metrics coming soon) in a
user-configurable fashion and allows you to view the data in live interactive
Expand Down Expand Up @@ -58,9 +61,9 @@ the computer you're running `stabping` or `stabping.exe` on (if you ran it on
your local computer, this would be `localhost`), and `web_port` is the
web-listening port specified in `stabping_config.json` (by default `5001`).

*tl;dr* extract the zip, run `stabping` or `stabping.exe`, and go to
**tl;dr** extract the zip, run `stabping` or `stabping.exe`, and go to
`http://localhost:5001` in a web browser (assuming you're running on your local
computer with the default configuration)
computer with the default configuration).

#### Using the Web Interface

Expand Down
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "stabping",
"description": "Continuously monitor your connection/ISP's latency & speed and view them in interactive charts",
"version": "0.1.1",
"version": "0.9.1",
"license": "GPLv3+",
"author": "icasdri <icasdri@gmail.com>",
"dependencies": {
Expand Down
3 changes: 3 additions & 0 deletions release.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@ def consolidate_artifacts():
with ZipFile(target_zip, 'w') as zipped:
zipped.write(binary, arcname=os.path.basename(binary))
zipped.write(sample_cfg, arcname=os.path.basename(sample_cfg))
zipped.write(ENV.path('README.md'), arcname='README.md')
zipped.write(ENV.path('COPYING'), arcname='COPYING')
zipped.write(ENV.path('LICENSE'), arcname='LICENSE')
else:
raise BuildError('Failed to find binary: {}'.format(binary))

Expand Down

0 comments on commit 31af19f

Please sign in to comment.