From f01f7676bdf5849da37351fbeb79b56a68b97ac6 Mon Sep 17 00:00:00 2001 From: Henry Whitaker Date: Wed, 17 Jun 2020 18:22:20 +0100 Subject: [PATCH] Updated changelog --- README.md | 6 ++++-- changelog.json | 10 ++++++++++ config/speedtest.php | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 03cf9b97..b3d479f1 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Speedtest Tracker -[![Docker pulls](https://img.shields.io/docker/pulls/henrywhitaker3/speedtest-tracker)](https://hub.docker.com/r/henrywhitaker3/speedtest-tracker) [![last_commit](https://img.shields.io/github/last-commit/henrywhitaker3/Speedtest-Tracker)](https://github.com/henrywhitaker3/Speedtest-Tracker/commits) [![issues](https://img.shields.io/github/issues/henrywhitaker3/Speedtest-Tracker)](https://github.com/henrywhitaker3/Speedtest-Tracker/issues) ![version](https://img.shields.io/badge/version-v1.5.0-success) [![license](https://img.shields.io/github/license/henrywhitaker3/Speedtest-Tracker)](https://github.com/henrywhitaker3/Speedtest-Tracker/blob/master/LICENSE) +[![Docker pulls](https://img.shields.io/docker/pulls/henrywhitaker3/speedtest-tracker)](https://hub.docker.com/r/henrywhitaker3/speedtest-tracker) [![last_commit](https://img.shields.io/github/last-commit/henrywhitaker3/Speedtest-Tracker)](https://github.com/henrywhitaker3/Speedtest-Tracker/commits) [![issues](https://img.shields.io/github/issues/henrywhitaker3/Speedtest-Tracker)](https://github.com/henrywhitaker3/Speedtest-Tracker/issues) ![version](https://img.shields.io/badge/version-v1.5.2-success) [![license](https://img.shields.io/github/license/henrywhitaker3/Speedtest-Tracker)](https://github.com/henrywhitaker3/Speedtest-Tracker/blob/master/LICENSE) This program runs a speedtest check every hour and graphs the results. The back-end is written in [Laravel](https://laravel.com/) and the front-end uses [React](https://reactjs.org/). It uses the [speedtest-cli](https://github.com/sivel/speedtest-cli) package to get the data and uses [Chart.js](https://www.chartjs.org/) to plot the results. @@ -10,7 +10,7 @@ This program runs a speedtest check every hour and graphs the results. The back- - Automatically run a speedtest every hour - Graph of previous speedtests going back x days -- Backup/restore data in JSON format +- Backup/restore data in JSON/CSV format - Slack/Discord notifications - Organizr integration @@ -26,6 +26,8 @@ docker create \ -p 8765:80 \ -v /path/to/data:/config \ -e SLACK_WEBHOOK=webhook `#optional` \ + -e PUID=uid `#optional` \ + -e PGID=gid `#optional` \ --restart unless-stopped \ henrywhitaker3/speedtest-tracker ``` diff --git a/changelog.json b/changelog.json index 54acc08a..023f60f6 100644 --- a/changelog.json +++ b/changelog.json @@ -1,4 +1,14 @@ { + "1.5.2": [ + { + "description": "Updated dependencies", + "link": "" + }, + { + "description": "Added CSV backup/restore formats", + "link": "" + } + ], "1.5.1": [ { "description": "Updated PHP dependencies", diff --git a/config/speedtest.php b/config/speedtest.php index 5deadc06..22103759 100644 --- a/config/speedtest.php +++ b/config/speedtest.php @@ -7,7 +7,7 @@ return [ |-------------------------------------------------------------------------- */ - 'version' => '1.5.1', + 'version' => '1.5.2', /* |--------------------------------------------------------------------------