Skip to content

Commit

Permalink
list: whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
yretenai committed Dec 23, 2024
1 parent 859fb15 commit 4ca291e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion Sources/Starvalve/ApplicationContentFile.swift
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,6 @@ public struct ApplicationContentFile: VDFContent {
public var stagingFolder: Int? // index of library folder in libraryfolders.vdf
public var needsUpdate: Bool = false
public var needsDownload: Bool = false
public var lastBuildId: Bool = false
public var installedDepots: [UInt: ACFInstalledApplicationDepot] = [:]
public var sharedDepots: [UInt: UInt] = [:]
public var installScripts: [UInt: String] = [:]
Expand Down
2 changes: 1 addition & 1 deletion Sources/StarvalveControl/Commands/ListAppsCommand.swift
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ struct ListAppsCommand: ParsableCommand {
print("\tlast updated: \(appInfo.acf.lastUpdated, color: .blue)")
print("\tscheduled update time: \(appInfo.acf.scheduledAutoUpdate, color: .blue)")
print("\tbuild id: \(appInfo.acf.buildID, color: .magenta)")
print("\ttarget build id: \(appInfo.acf.lastBuildId, color: .magenta)")
print("\ttarget build id: \(appInfo.acf.targetBuildID, color: .magenta)")
if appInfo.acf.lastOwner.rawValue != 0 {
print("\tlast owner: \(users[appInfo.acf.lastOwner] ?? appInfo.acf.lastOwner.steam3, color: .green) (\(appInfo.acf.lastOwner, color: .red))")
}
Expand Down

0 comments on commit 4ca291e

Please sign in to comment.