Skip to content

Commit

Permalink
Fix version update issues
Browse files Browse the repository at this point in the history
  • Loading branch information
LinkLeong committed Jun 14, 2022
1 parent 1626020 commit 6d1528c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

## [0.3.2.1] - 2022-06-13
## [0.3.2.1] - 2022-06-14

### Fixed

- Fix the problem of application opening failure on non-80 ports ([#283](https://github.com/IceWhaleTech/CasaOS/issues/283) [#280](https://github.com/IceWhaleTech/CasaOS/issues/280))
- Modify port failure problem ([#282](https://github.com/IceWhaleTech/CasaOS/issues/282))
- Modify environment variables disappearing problem([#284](https://github.com/IceWhaleTech/CasaOS/issues/284))
- Fix no update alert([#278](https://github.com/IceWhaleTech/CasaOS/issues/278))

## [0.3.2] - 2022-06-10

### Added
Expand Down
5 changes: 1 addition & 4 deletions pkg/utils/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @Author: LinkLeong link@icewhale.com
* @Date: 2022-05-13 18:15:46
* @LastEditors: LinkLeong
* @LastEditTime: 2022-06-14 08:55:39
* @LastEditTime: 2022-06-14 11:17:16
* @FilePath: /CasaOS/pkg/utils/version/version.go
* @Description:
* @Website: https://www.casaos.io
Expand Down Expand Up @@ -32,9 +32,6 @@ func IsNeedUpdate() (bool, model.Version) {

v2 := strings.Split(types.CURRENTVERSION, ".")

// v1 := strings.Split("0.3.2", ".")
// v2 := strings.Split("0.3.1.1", ".")

for len(v1) < len(v2) {
v1 = append(v1, "0")
}
Expand Down

0 comments on commit 6d1528c

Please sign in to comment.