Skip to content

Commit

Permalink
Recommend 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
felixbrucker committed May 3, 2024
1 parent 3f85755 commit 0091743
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/clients/clients.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const chiaClient: Client<string> = {
},
versions: {
minimum: '2.1.0',
recommendedMinimum: '2.2.1',
recommendedMinimum: '2.3.0',
current: '2.3.0',
recent: '2.1.0',
outdated: '1.8.2',
Expand Down Expand Up @@ -104,7 +104,7 @@ export const gigahorseClient: Client<number> = {
},
versions: {
minimum: 22,
recommendedMinimum: 34,
recommendedMinimum: 36,
},
}
export const fastFarmerClient: Client<string> = {
Expand Down
4 changes: 4 additions & 0 deletions src/app/harvester-card/harvester-card.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -612,6 +612,10 @@ export class HarvesterCardComponent implements OnInit, OnDestroy {
}

public get gigahorseVersionUpdateInfo(): VersionUpdateInfo {
if (this.hasFoxyFarmerVersion) {
return VersionUpdateInfo.noActionRequired
}

return getIntegerVersionUpdateInfo(gigahorseClient, this.gigahorseVersion)
}

Expand Down

0 comments on commit 0091743

Please sign in to comment.