提交 5b0de16e 编写于 作者: nengyuangzhang's avatar nengyuangzhang

Merge branch 'develop'

......@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [Unreleased]
### Added
### Changed
### Fixed
### Removed
## [v3.12.0] - 2023-12-08
### Added
- added charge time and discharge time settings to power conversion system of microgrid
- added nominal voltage to microgrid battery in database, myems-api and myems-admin
......@@ -1506,7 +1513,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/v3.11.0...HEAD
[Unreleased]: https://github.com/MyEMS/myems/compare/v3.12.0...HEAD
[3.12.0]: https://github.com/MyEMS/myems/compare/v3.12.0...v3.11.0
[3.11.0]: https://github.com/MyEMS/myems/compare/v3.11.0...v3.10.0
[3.10.0]: https://github.com/MyEMS/myems/compare/v3.10.0...v3.9.0
[3.9.0]: https://github.com/MyEMS/myems/compare/v3.9.0...v3.8.0
......
......@@ -1733,7 +1733,7 @@ USE `myems_system_db`;
INSERT INTO `myems_system_db`.`tbl_versions`
(`id`, `version`, `release_date`)
VALUES
(1, '3.12.0RC', '2023-12-01');
(1, '3.12.0', '2023-12-08');
COMMIT;
......
......@@ -51,6 +51,6 @@ VALUES
(1302,'Microgrid Reporting','/microgrid/reporting',1300,1);
-- UPDATE VERSION NUMBER
UPDATE `myems_system_db`.`tbl_versions` SET version='3.12.0RC', release_date='2023-12-01' WHERE id=1;
UPDATE `myems_system_db`.`tbl_versions` SET version='3.12.0', release_date='2023-12-08' WHERE id=1;
COMMIT;
<div class="footer-login">
<div>
<strong>{{'MY_EMS_NAME' | translate}} v3.11.0 <a href="https://myems.io">https://myems.io</a> </strong>
<strong>{{'MY_EMS_NAME' | translate}} v3.12.0 <a href="https://myems.io">https://myems.io</a> </strong>
</div>
</div>
......@@ -3,6 +3,6 @@
<strong><a href="https://myems.io">https://myems.io</a></strong>
</div>
<div>
<strong>{{'MY_EMS_NAME' | translate}} v3.11.0</strong>
<strong>{{'MY_EMS_NAME' | translate}} v3.12.0</strong>
</div>
</div>
3.11.0
\ No newline at end of file
3.12.0
\ No newline at end of file
......@@ -14,8 +14,8 @@ class VersionItem:
@staticmethod
def on_get(req, resp):
result = {"version": 'MyEMS v3.11.0',
"release-date": '2023-11-03',
result = {"version": 'MyEMS v3.12.0',
"release-date": '2023-12-08',
"licensed-to": 'COMMUNITY',
"website": "https://myems.io"}
resp.text = json.dumps(result)
......
3.11.0
\ No newline at end of file
3.12.0
\ No newline at end of file
3.11.0
\ No newline at end of file
3.12.0
\ No newline at end of file
3.11.0
\ No newline at end of file
3.12.0
\ No newline at end of file
此差异已折叠。
{
"name": "myems",
"version": "3.11.0",
"version": "3.12.0",
"private": true,
"dependencies": {
"@amap/amap-jsapi-loader": "^1.0.1",
......
export const version = '3.11.0';
export const version = '3.12.0';
export const navbarBreakPoint = 'xl'; // Vertical navbar breakpoint
export const topNavbarBreakpoint = 'lg';
//export const APIBaseURL = 'http://127.0.0.1:8000';
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册