Skip to content

Commit

Permalink
🚚 (LekaUpdater): Add UpdateProcessV150
Browse files Browse the repository at this point in the history
Copied from UpdateProcessV130
  • Loading branch information
YannLocatelli committed Jan 17, 2024
1 parent ea74987 commit 997c6e8
Show file tree
Hide file tree
Showing 2 changed files with 612 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ class UpdateProcessController {
case Version(1, 3, 0),
Version(1, 4, 0):
self.currentUpdateProcess = UpdateProcessV130()
case Version(1, 5, 0):
self.currentUpdateProcess = UpdateProcessV150()
default:
self.currentUpdateProcess = UpdateProcessTemplate()
}
Expand All @@ -63,6 +65,7 @@ class UpdateProcessController {
Version(1, 2, 0),
Version(1, 3, 0),
Version(1, 4, 0),
Version(1, 5, 0),
]

public var currentStage = CurrentValueSubject<UpdateProcessStage, UpdateProcessError>(.initial)
Expand Down
Loading

0 comments on commit 997c6e8

Please sign in to comment.