upgraded version number to v1.2.2

pull/67/head
13621160019@163.com 2021-08-28 14:47:27 +08:00 committed by Caozhenhui
parent 89c287148c
commit f19a22813a
6 changed files with 3101 additions and 775 deletions

View File

@ -16,6 +16,32 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Removed ### Removed
- None. - None.
## [v1.2.2] - 2021-08-28
### Added
- added user log to UserLogin, ChangePassword and ResetPassword in API
- implemented user_logger decorators in API
- added default passwords to README.
### Changed
- updated myems_user_db.tbl_logs in database
- updated i18n of WebUI
- changed user token hash algorithm from sha1 to sha256 in API
- upgraded dropzone js library in Admin UI
- moved css files for dropzone from js folder to css folder in Admin UI
### Fixed
- fixed code style warnings in README
- fixed PEP8 warnings in API
- fixed code style warnings in API
- fixed translation errors in Admin UI
- fixed issues of markdown in README files
- fixed typeof issue of dropzone js in Admin UI
- fixed issue of 'typeof' expression compared to 'null' in Web UI
- fixed toaster issues for uploading file in Admin UI
### Removed
- removed unnecessary dropzone-amd-module library from Admin UI
## [v1.2.1] - 2021-08-19 ## [v1.2.1] - 2021-08-19
### Added ### Added
- Added Missing Error Messages Words of API to Web UI i18n - Added Missing Error Messages Words of API to Web UI i18n
@ -381,7 +407,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.2.1...HEAD [Unreleased]: https://github.com/MyEMS/myems/compare/v1.2.2...HEAD
[v1.2.2]: https://github.com/MyEMS/myems/compare/v1.2.1...v1.2.2
[v1.2.1]: https://github.com/MyEMS/myems/compare/v1.2.0...v1.2.1 [v1.2.1]: https://github.com/MyEMS/myems/compare/v1.2.0...v1.2.1
[v1.2.0]: https://github.com/MyEMS/myems/compare/v1.1.6...v1.2.0 [v1.2.0]: https://github.com/MyEMS/myems/compare/v1.1.6...v1.2.0
[v1.1.6]: https://github.com/MyEMS/myems/compare/v1.1.5...v1.1.6 [v1.1.6]: https://github.com/MyEMS/myems/compare/v1.1.5...v1.1.6

View File

@ -1,5 +1,5 @@
<div class="footer-login"> <div class="footer-login">
<div> <div>
<strong>{{'MY_EMS_NAME' | translate}} v1.2.1 <a href="https://myems.io">https://myems.io</a> </strong> <strong>{{'MY_EMS_NAME' | translate}} v1.2.2 <a href="https://myems.io">https://myems.io</a> </strong>
</div> </div>
</div> </div>

View File

@ -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.2.1</strong> <strong>{{'MY_EMS_NAME' | translate}} v1.2.2</strong>
</div> </div>
</div> </div>

3839
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", "name": "myems",
"version": "1.2.1", "version": "1.2.2",
"private": true, "private": true,
"dependencies": { "dependencies": {
"@fortawesome/fontawesome-free": "^5.15.1", "@fortawesome/fontawesome-free": "^5.15.1",

View File

@ -1,4 +1,4 @@
export const version = '1.2.1'; export const version = '1.2.2';
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';