Skip to content

Commit

Permalink
fix: Improve software index on larger displays (#394)
Browse files Browse the repository at this point in the history
This change catches up to the latest version of the Psion Software Index
with improved appearance on larger screens.
  • Loading branch information
jbmorley authored Sep 25, 2024
1 parent 85a151a commit 974ee1d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion OpoLua/View Controllers/BrowserViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ class BrowserViewController: UICollectionViewController {
}

@objc func showSoftwareIndex() {
let indexViewController = PsionSoftwareIndexViewController()
let indexViewController = PsionSoftwareIndexViewController { release in
return release.kind == .installer && release.hasDownload && release.tags.contains("opl")
}
indexViewController.delegate = self
present(indexViewController, animated: true)
}
Expand Down

0 comments on commit 974ee1d

Please sign in to comment.