Skip to content

Releases: sievins/record-wifi-speed

Optional argument for specifying the number of groups in the histogram

19 Jul 22:01
Compare
Choose a tag to compare

Version 2.2.0

New features

  • There is a new optional argument, numberOfGroups (--number-of-groups on CLI) which specifies the number of bars (groups) created on the charts.

Update chart in README

19 Jul 09:43
Compare
Choose a tag to compare
  • Update the chart in the README to show the title/axis labels

Chart title and axis labels

19 Jul 09:37
Compare
Choose a tag to compare

Version 2.1.0

New features

  • The generated charts now have titles, e.g. "Download speed".
  • The generated charts now have axis labels.

Update dependencies

15 Jul 08:45
Compare
Choose a tag to compare
  • Update patch version of proxyquire
  • Update patch version of lodash (this addresses a high severity vulnerability in lodash)

Test all the things

14 Jul 11:47
Compare
Choose a tag to compare
  • Added tests for everything
  • Updated the README

Improve README

14 Jul 11:49
Compare
Choose a tag to compare
  • Updated the README to make the arguments clearer

Generate charts from your speed data

04 Jul 13:47
Compare
Choose a tag to compare

Version 2.0.0

New features

  • You can can generate download/upload/ping charts from the data you've been collecting. See the README.md for more information.

Breaking changes

  • The records file must now be called records.txt and be in JSON format. You can run the update script, on the CLI, to automatically make this change.
rws-update-v1-v2
  • The recordLocation argument has been deprecated. Use resultsDirectory instead. For example:
    • recordLocation: C:\Users\Bob\results\wifi-speed-results.txt becomes
    • resultsDirectory: C:\Users\Bob\results
  • require('record-wifi-speed') now returns an object instead of a method.
const { speedTest, generateCharts } = require('record-wifi-speed')
  • The following CLI commands have changed:
    • record-wifi-speed => rws-run
    • package-record-wifi-speed => rws-package
    • rws-charts is new
    • rws-update-v1-v2 is new