Skip to content

Commit

Permalink
🎉 release: v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
anselal committed Oct 1, 2018
1 parent ad73715 commit f77434b
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 4 deletions.
42 changes: 40 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,43 @@

## [Unreleased]

## [v0.5.0] - 2018-10-01

### Bug fixes
- :wrench: config(hashrate): Fix Hashrate for Antminer T9. Closes #109
- :wrench: config(hashrate): Fix Hashrate Unit for Antminer V9. Closes #90
- :bug: fix(migrate): Add db parameter when initializing Flask-Migrate
- :bug: fix(view): Fix line continuation. Closes #112
- :bug: fix(view): Fix Interface always shows 1st pool worker. Closes #118
- :bug: fix(migrate): flask migrate does not work due to relative database dir. Closes #120
- :bug: Fix ValueError and KeyError while quering miners. Closes #113, Closes #124

### New Features
- :heavy_plus_sign: Add .flaskenv settings file
- :star: new(menu): Add main menu bar. Closes #122
- :up: update(hashrate): Add hashrate conversion support for Equihash algorithm. Closes #123
- :wrench: Load .env settings if exist
- :star: add(login): Add login screen. Closes #71
- :sparkles: Make miner link go directly to the status page. Closes #78

### Added
- :license: Add license to pycgminer.py
- :pencil: docs(readme): Update commands
- :up: update(db): Add support for Antminer T9+. Closes #87
- :up: update(db): Add support for Antminer X3. Closes #96
- :up: update(db): Add support for Antminer B3. Closes #100
- :pencil: docs(run): Add host and port parameters
- :up: update(db): Add support for Antminer Z9 mini. Closes #121
- :up: update(db): Add support for Antminer E3. Closes #113

### Changed
- :shirt: refactor(lib): Move lib folder
- :shirt: refactor(config): Move configurations to its own file
- :shirt: refactor(app): Organize files into blueprints
- :wrench: Rename manager.py to manage.py
- :up: update(requirements): Remove Flask-Script
- :up: Update Flask

## [v0.4.0] - 2018-02-28

### Bug fixes
Expand Down Expand Up @@ -113,11 +150,12 @@ Updated supported miner models, requirements and installation instructions. Adde
- :star: Get in-app notifications about miner errors (needs refresh)
- :star: Log errors to file

[Unreleased]: https://github.com/anselal/antminer-monitor/compare/v0.4.0...HEAD
[Unreleased]: https://github.com/anselal/antminer-monitor/compare/v0.5.0...HEAD
[v0.5.0]: https://github.com/anselal/antminer-monitor/compare/v0.4.0...v0.5.0
[v0.4.0]: https://github.com/anselal/antminer-monitor/compare/v0.3.0...v0.4.0
[v0.3.0]: https://github.com/anselal/antminer-monitor/compare/v0.2.0...v0.3.0
[v0.2.0]: https://github.com/anselal/antminer-monitor/compare/v0.1.1...v0.2.0
[v0.1.1]: https://github.com/anselal/antminer-monitor/compare/v0.1.0...v0.1.1
[v0.1.0]: https://github.com/anselal/antminer-monitor/compare/v0.0.3...v0.1.0
[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
[v0.0.2]: https://github.com/anselal/antminer-monitor/compare/v0.0.1...v0.0.2
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Lite Python based Antminer Monitor !!!

### Screenshot

![Alt text](/antminermonitor/static/images/screenshot_v0.4.0.png?raw=true "Screenshot v0.4.0")
![Alt text](/antminermonitor/static/images/screenshot_v0.5.0.png?raw=true "Screenshot v0.4.0")

This comment has been minimized.

Copy link
@reyesmerq

reyesmerq Aug 9, 2023

hola


### Requirements

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 11 additions & 1 deletion config/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
basedir = os.path.abspath(os.path.join(os.path.dirname(__file__), '../'))
load_dotenv(os.path.join(basedir, '.env'))

__VERSION__ = '0.4.0'
__VERSION__ = '0.5.0'

DEBUG = True
LOG_LEVEL = 'DEBUG' # CRITICAL / ERROR / WARNING / INFO / DEBUG
Expand All @@ -16,3 +16,13 @@
SQLALCHEMY_DATABASE_URI = 'sqlite:///' + \
os.path.join(basedir, 'antminermonitor/db/app.db')
SQLALCHEMY_TRACK_MODIFICATIONS = False

# Session
#USE_SESSION_FOR_NEXT = True

# Mail
MAIL_SERVER = os.environ.get('MAIL_SERVER')
MAIL_PORT = int(os.environ.get('MAIL_PORT') or 25)
MAIL_USE_TLS = os.environ.get('MAIL_USE_TLS') is not None
MAIL_USERNAME = os.environ.get('MAIL_USERNAME')
MAIL_PASSWORD = os.environ.get('MAIL_PASSWORD')

0 comments on commit f77434b

Please sign in to comment.