Skip to content

Commit

Permalink
v1.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
totev committed Mar 6, 2022
1 parent 802bd5c commit 8d2b072
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 89 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
v1.2.4
---
- Fix modulation value normalization on technicolor modems #23

**Full Changelog**: https://github.com/totev/vodafone-station-cli/compare/v1.2.3...v1.2.4

v1.2.3
---
- Add docsis values sharing via https://docsis-diagnose.totev.dev
Expand Down
91 changes: 3 additions & 88 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Access your Arris TG3442DE or Technicolor CGA4322DE, CGA6444VF (aka Vodafone Sta
* [Supported hardware](#supported-hardware)
* [Notes](#notes)
* [Useful related projects:](#useful-related-projects)
* [Local usage](#local-usage)
* [Running from source](#running-from-source)
* [Usage](#usage)
* [Commands](#commands)
<!-- tocstop -->
Expand Down Expand Up @@ -423,7 +423,7 @@ Cable connection information/meaning:
The Diagnose module is based on the guidelines/values provided by Meister Voda:
- https://www.vodafonekabelforum.de/viewtopic.php?t=32353

# Local usage
# Running from source
Clone this repository, install the dependencies via *yarn* and run `./bin/dev help`.
If you are interested in seeing a more verbose version of what is going on during execution, enable debug logging on a per command basis like so `env DEBUG=\* ./bin/dev docsis`.

Expand All @@ -434,7 +434,7 @@ $ npm install -g vodafone-station-cli
$ vodafone-station-cli COMMAND
running command...
$ vodafone-station-cli (--version)
vodafone-station-cli/1.2.3 darwin-arm64 node-v17.6.0
vodafone-station-cli/1.2.4 darwin-arm64 node-v17.6.0
$ vodafone-station-cli --help [COMMAND]
USAGE
$ vodafone-station-cli COMMAND
Expand All @@ -443,72 +443,7 @@ USAGE
<!-- usagestop -->
# Commands
<!-- commands -->
* [`vodafone-station-cli diagnose`](#vodafone-station-cli-diagnose)
* [`vodafone-station-cli discover`](#vodafone-station-cli-discover)
* [`vodafone-station-cli docsis`](#vodafone-station-cli-docsis)
* [`vodafone-station-cli help [COMMAND]`](#vodafone-station-cli-help-command)
* [`vodafone-station-cli restart`](#vodafone-station-cli-restart)

## `vodafone-station-cli diagnose`

Diagnose the quality of the docsis connection.

```
USAGE
$ vodafone-station-cli diagnose [-p <value>] [-w]
FLAGS
-p, --password=<value> router/modem password
-w, --web review the docsis values in a webapp
DESCRIPTION
Diagnose the quality of the docsis connection.
EXAMPLES
$ vodafone-station-cli diagnose
```

_See code: [dist/commands/diagnose.ts](https://github.com/totev/vodafone-station-cli/blob/v1.2.3/dist/commands/diagnose.ts)_

## `vodafone-station-cli discover`

Try to discover a cable modem in the network

```
USAGE
$ vodafone-station-cli discover
DESCRIPTION
Try to discover a cable modem in the network
EXAMPLES
$ vodafone-station-cli discover
```

_See code: [dist/commands/discover.ts](https://github.com/totev/vodafone-station-cli/blob/v1.2.3/dist/commands/discover.ts)_

## `vodafone-station-cli docsis`

Get the current docsis status as reported by the modem in a JSON format.

```
USAGE
$ vodafone-station-cli docsis [-p <value>] [-f] [-w]
FLAGS
-f, --file write out a report file under ./reports/${CURRENT_UNIX_TIMESTAMP}_docsisStatus.json
-p, --password=<value> router/modem password
-w, --web review the docsis values in a webapp
DESCRIPTION
Get the current docsis status as reported by the modem in a JSON format.
EXAMPLES
$ vodafone-station-cli docsis -p PASSWORD
{JSON data}
```

_See code: [dist/commands/docsis.ts](https://github.com/totev/vodafone-station-cli/blob/v1.2.3/dist/commands/docsis.ts)_

## `vodafone-station-cli help [COMMAND]`

Expand All @@ -529,24 +464,4 @@ DESCRIPTION
```

_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.11/src/commands/help.ts)_

## `vodafone-station-cli restart`

Restart the router/modem

```
USAGE
$ vodafone-station-cli restart [-p <value>]
FLAGS
-p, --password=<value> router/modem password
DESCRIPTION
Restart the router/modem
EXAMPLES
$ vodafone-station-cli restart -p PASSWORD
```

_See code: [dist/commands/restart.ts](https://github.com/totev/vodafone-station-cli/blob/v1.2.3/dist/commands/restart.ts)_
<!-- commandsstop -->
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vodafone-station-cli",
"description": "Access your Vodafone Station from the comfort of the command line.",
"version": "1.2.3",
"version": "1.2.4",
"author": "Dobroslav Totev",
"bin": {
"vodafone-station-cli": "./bin/run"
Expand Down

0 comments on commit 8d2b072

Please sign in to comment.