updated version number to v1.8.0

pull/129/head
13621160019@163.com 2022-02-28 18:27:56 +08:00
parent 80f3d275d6
commit d0f34a3487
7 changed files with 338 additions and 314 deletions

View File

@ -16,6 +16,31 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Removed
- 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
### Added
- 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
- 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.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

View File

@ -1,5 +1,5 @@
<div class="footer-login">
<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>

View File

@ -3,6 +3,6 @@
<strong><a href="https://myems.io">https://myems.io</a></strong>
</div>
<div>
<strong>{{'MY_EMS_NAME' | translate}} v1.7.2</strong>
<strong>{{'MY_EMS_NAME' | translate}} v1.8.0</strong>
</div>
</div>

View File

@ -1248,6 +1248,6 @@ USE `myems_system_db`;
INSERT INTO `myems_system_db`.`tbl_versions`
(`id`, `version`, `release_date`)
VALUES
(1, '1.7.2', '2022-02-19');
(1, '1.8.0', '2022-02-28');
COMMIT;

614
web/package-lock.json generated vendored

File diff suppressed because it is too large Load Diff

2
web/package.json vendored
View File

@ -1,6 +1,6 @@
{
"name": "myems",
"version": "1.7.2",
"version": "1.8.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.1",

View File

@ -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 topNavbarBreakpoint = 'lg';
//export const APIBaseURL = 'http://127.0.0.1:8000';