updated version number to v1.8.0
parent
80f3d275d6
commit
d0f34a3487
28
CHANGELOG.md
28
CHANGELOG.md
|
@ -16,6 +16,31 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
### Removed
|
### Removed
|
||||||
- None.
|
- None.
|
||||||
|
|
||||||
|
## [v1.8.0] - 2022-02-28
|
||||||
|
### Added
|
||||||
|
- added Meter Carbon Dioxide Emissions Report to Web UI
|
||||||
|
- added Virtual Meter Carbon Dioxide Emissions Report
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- updated Dashboard report in Web UI
|
||||||
|
- updated README for docker
|
||||||
|
- added limit 1 to number of ENERGY_VALUE points of meter
|
||||||
|
- updated docker compose files for windows host and for linux host
|
||||||
|
- replaced DateTime with DateRangePicker for Meter reports in Web UI
|
||||||
|
- replaced DateTime with DateRangePicker for Space reports in Web UI
|
||||||
|
- replaced DateTime with DateRangePicker for Store reports in Web UI
|
||||||
|
- replaced DateTime with DateRangePicker for Tenant reports in Web UI
|
||||||
|
- replaced DateTime with DateRangePicker for Shopfloor reports in Web UI
|
||||||
|
- replaced DateTime with DateRangePicker for Equipment reports in Web UI
|
||||||
|
- replaced DateTime with DateRangePicker for CombinedEquipment reports in Web UI
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- fixed TypeError cased by undefined decimal value in Web UI
|
||||||
|
- fixed issues in CombinedEquipmentEfficiency report and EquipmentEfficiency report
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
- None.
|
||||||
|
|
||||||
## [v1.7.2] - 2022-02-19
|
## [v1.7.2] - 2022-02-19
|
||||||
### Added
|
### Added
|
||||||
- added default character set and collate to database
|
- added default character set and collate to database
|
||||||
|
@ -705,7 +730,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
### Removed
|
### Removed
|
||||||
- None.
|
- None.
|
||||||
|
|
||||||
[Unreleased]: https://github.com/MyEMS/myems/compare/v1.7.2...HEAD
|
[Unreleased]: https://github.com/MyEMS/myems/compare/v1.8.0...HEAD
|
||||||
|
[v1.8.0]: https://github.com/MyEMS/myems/compare/v1.7.2...v1.8.0
|
||||||
[v1.7.2]: https://github.com/MyEMS/myems/compare/v1.7.1...v1.7.2
|
[v1.7.2]: https://github.com/MyEMS/myems/compare/v1.7.1...v1.7.2
|
||||||
[v1.7.1]: https://github.com/MyEMS/myems/compare/v1.7.0...v1.7.1
|
[v1.7.1]: https://github.com/MyEMS/myems/compare/v1.7.0...v1.7.1
|
||||||
[v1.7.0]: https://github.com/MyEMS/myems/compare/v1.6.1...v1.7.0
|
[v1.7.0]: https://github.com/MyEMS/myems/compare/v1.6.1...v1.7.0
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<div class="footer-login">
|
<div class="footer-login">
|
||||||
<div>
|
<div>
|
||||||
<strong>{{'MY_EMS_NAME' | translate}} v1.7.2 <a href="https://myems.io">https://myems.io</a> </strong>
|
<strong>{{'MY_EMS_NAME' | translate}} v1.8.0 <a href="https://myems.io">https://myems.io</a> </strong>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -3,6 +3,6 @@
|
||||||
<strong><a href="https://myems.io">https://myems.io</a></strong>
|
<strong><a href="https://myems.io">https://myems.io</a></strong>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<strong>{{'MY_EMS_NAME' | translate}} v1.7.2</strong>
|
<strong>{{'MY_EMS_NAME' | translate}} v1.8.0</strong>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1248,6 +1248,6 @@ USE `myems_system_db`;
|
||||||
INSERT INTO `myems_system_db`.`tbl_versions`
|
INSERT INTO `myems_system_db`.`tbl_versions`
|
||||||
(`id`, `version`, `release_date`)
|
(`id`, `version`, `release_date`)
|
||||||
VALUES
|
VALUES
|
||||||
(1, '1.7.2', '2022-02-19');
|
(1, '1.8.0', '2022-02-28');
|
||||||
|
|
||||||
COMMIT;
|
COMMIT;
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "myems",
|
"name": "myems",
|
||||||
"version": "1.7.2",
|
"version": "1.8.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fortawesome/fontawesome-free": "^5.15.1",
|
"@fortawesome/fontawesome-free": "^5.15.1",
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
export const version = '1.7.2';
|
export const version = '1.8.0';
|
||||||
export const navbarBreakPoint = 'xl'; // Vertical navbar breakpoint
|
export const navbarBreakPoint = 'xl'; // Vertical navbar breakpoint
|
||||||
export const topNavbarBreakpoint = 'lg';
|
export const topNavbarBreakpoint = 'lg';
|
||||||
//export const APIBaseURL = 'http://127.0.0.1:8000';
|
//export const APIBaseURL = 'http://127.0.0.1:8000';
|
||||||
|
|
Loading…
Reference in New Issue