Compare commits

...

2 Commits

Author SHA1 Message Date
Steven Polley 3e5bea532f Merge branch 'main' of https://deadbeef.codes/steven/lineageos-ota-server
continuous-integration/drone/push Build is passing Details
2023-06-09 08:55:17 -06:00
Steven Polley c79519849a update comments 2023-06-09 08:55:11 -06:00
1 changed files with 2 additions and 2 deletions

View File

@ -18,9 +18,9 @@ type LineageOSROM struct {
Datetime int `json:"datetime"` // Unix timestamp - i.e. 1685907926
Filename string `json:"filename"` // .zip filename - i.e. lineage-20.0-20230604-UNOFFICIAL-sunfish.zip
ID string `json:"id"` // A unique identifier such as a SHA256 hash of the .zip - i.e. 603bfc02e403e5fd1bf9ed74383f1d6c9ec7fb228d03c4b37753033d79488e93
Romtype string `json:"romtype"` // i.e. nightly
Romtype string `json:"romtype"` // i.e. NIGHTLY or UNOFFICIAL
Size int `json:"size"` // size of .zip file in bytes
URL string `json:"url"` // public URL where client could download the .zip file
URL string `json:"url"` // Accessible URL where client could download the .zip file
Version string `json:"version"` // LineageOS version - i.e. 20.0
}