Skip to content

Commit

Permalink
Add 0.4.2 changelog (IceWhaleTech#885)
Browse files Browse the repository at this point in the history
  • Loading branch information
LinkLeong authored Feb 10, 2023
1 parent 7b07f22 commit 143af78
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Security


## [0.4.2]

### Added

- [App] Increase the display of progress during the installation process
- [App] Label whether the current app supports x86 or Pi devices
- [App] Support single app version upgrade
- [File] Support mounting of Google Drive and Dropbox cloud drives
- [System] Support Mint Linux

### Changed

- [File] Optimize the download speed of a single file

### Fixed

- [Share] Fix the samba permission issue
- [Disk] Fix the problem of disk mount point plus 1 after upgrade ([#770](https://github.com/IceWhaleTech/CasaOS/issues/770))
- [File] Fix the problem of file permission change caused by modifying files in casaos ([#829](https://github.com/IceWhaleTech/CasaOS/issues/829))
- [Share] Fix the problem of files being deleted due to samba uninstallation failure ([#843](https://github.com/IceWhaleTech/CasaOS/issues/843))



## [0.4.1] - 2023-1-19


Expand Down
1 change: 1 addition & 0 deletions route/v1/file.go
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,7 @@ func DirPath(c *gin.Context) {
t.IsDir = info[i].IsDir
t.Name = info[i].Name
t.Modified = info[i].Date
t.Date = info[i].Date
t.Size = info[i].Size
t.Path = info[i].Path
t.Extensions = info[i].Extensions
Expand Down
1 change: 1 addition & 0 deletions route/v1/file_read.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ type ObjResp struct {
Thumb string `json:"thumb"`
Type int `json:"type"`
Path string `json:"path"`
Date time.Time `json:"date"`
Extensions map[string]interface{} `json:"extensions"`
}
type FsListResp struct {
Expand Down

0 comments on commit 143af78

Please sign in to comment.