From 5b0341a733040ea34c23c9c5846868b247ef846c Mon Sep 17 00:00:00 2001 From: Joseph Mattello Date: Mon, 21 Nov 2022 21:04:59 -0500 Subject: [PATCH] Add TODO notes for PR #122 notes what to do with patreon table view and url Signed-off-by: Joseph Mattello --- AltStore/Settings/PatreonViewController.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/AltStore/Settings/PatreonViewController.swift b/AltStore/Settings/PatreonViewController.swift index 316688e3..b0765fd8 100644 --- a/AltStore/Settings/PatreonViewController.swift +++ b/AltStore/Settings/PatreonViewController.swift @@ -69,6 +69,7 @@ class PatreonViewController: UICollectionViewController var itemWidth = (self.collectionView.bounds.width - (layout.sectionInset.left + layout.sectionInset.right + layout.minimumInteritemSpacing)) / 2 itemWidth.round(.down) + // TODO: if the intention here is to hide the cells, we should just modify the data source. @JoeMatt layout.itemSize = CGSize(width: 0, height: 0) } } @@ -128,7 +129,7 @@ private extension PatreonViewController You’re the best. Your account was linked successfully, so you now have access to the beta versions of all of our apps. You can find them all in the Browse tab. Thanks for all of your support. Enjoy! - Riley & Shane + - SideTeam """, comment: "") if let account = DatabaseManager.shared.patreonAccount(), PatreonAPI.shared.isAuthenticated @@ -172,6 +173,7 @@ private extension PatreonViewController @objc func openPatreonURL(_ sender: UIButton) { + // TODO: Is this the final URL? @JoeMatt let patreonURL = URL(string: "https://www.patreon.com/JitStreamer")! let safariViewController = SFSafariViewController(url: patreonURL)