Skip to content

Commit

Permalink
✨ release: v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
anselal committed Oct 24, 2017
1 parent acac296 commit 7742753
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 6 deletions.
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Changelog

## [Unreleased]

## [v0.0.3] - 2017-10-24
### Bug fixes
- :zap: improvement(table): Fixed #2, Sort temperatures and fan speed by board and fan respectively
- :bug: fix: Fixed #4, Total hashing speed is displayed many times
- :bug: fix: Fixed #5, Remarks not displayed on active miners
- :wrench: config(table): Fixed #6, Sort miners by IP
- :zap: improvement: Sort models in total hashrate panel
- :wrench: config: Sort dropdown items by model type in add form

### New Features
- :heavy_plus_sign: Added CHANGELOG.md

## [v0.0.2] - 2017-10-08
### Bug fixes
- :wrench: config(log): Updated logging Formatter
- :wrench: config(views): Updated index url from /miners to /
- :bug: Fixed bug showing 'No errors found.' when there are inactive miners

### New Features
- :star: Added individual miner hashrate
- :star2: Added card to display total hashrate grouped by Model

## v0.0.1 - 2017-10-05
### Features
- :star2: Add as many miners as you want
- :star: Support for Antminers S7, S9, L3+ and D3
- :star: Check their temperatures, fan speed, chip condition
- :star: Get in-app notifications about miner errors (needs refresh)
- :star: Log errors to file

[Unreleased]: https://github.com/anselal/antminer-monitor/compare/v0.0.3...HEAD
[v0.0.3]: https://github.com/anselal/antminer-monitor/compare/v0.0.2...v0.0.3
[v0.0.2]: https://github.com/anselal/antminer-monitor/compare/v0.0.1...v0.0.2
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,14 @@ Lite Python based Antminer Monitor !!!

- Add as many miners as you want
- Supports miners S7, S9, L3+ and D3
- Check their temperatures, fan speed, chip condition
- Check their hashrate, temperatures, fan speed, chip condition
- Get in-app notifications about miner errors (needs refresh)

# New Features!

- Log errors to file
- Display total hashrate grouped by Model

### Screenshot

![Alt text](/app/static/images/screenshot_v0.0.1.png?raw=true "Screenshot v0.0.1")
![Alt text](/app/static/images/screenshot_v0.0.3.png?raw=true "Screenshot v0.0.3")

### Installation

Expand All @@ -26,3 +24,4 @@ $ pip install -r requirements.txt
$ python create_db.py
$ python run.py
```

2 changes: 1 addition & 1 deletion app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import logging
import os

__version__ = "v0.0.2"
__version__ = "v0.0.3"
basedir = os.path.abspath(os.path.dirname(__file__))
app = Flask(__name__)
app.config['SECRET_KEY'] = 'super secret key'
Expand Down
Binary file added app/static/images/screenshot_v0.0.3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 7742753

Please sign in to comment.