This repository has been archived by the owner on Jan 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Cover Flow again, and update apps to 2.0.1/1.0.1
Simplify Cover Flow List View code to fix layout issues
- Loading branch information
Showing
113 changed files
with
226 additions
and
86 deletions.
There are no files selected for viewing
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+382 KB
Design Assets/moviePosterPlaceholder.pxd/data/A646682E-4254-484F-BC4C-551943919ACF
Binary file not shown.
Binary file added
BIN
+5.23 KB
Design Assets/moviePosterPlaceholder.pxd/data/ADC5E32F-B0F4-4AAB-959F-B1EAE7A312AD
Binary file not shown.
Binary file added
BIN
+868 KB
Design Assets/moviePosterPlaceholder.pxd/data/D544136C-18F1-4CB4-A60C-B36E90FA3784
Binary file not shown.
Binary file added
BIN
+984 Bytes
Design Assets/moviePosterPlaceholder.pxd/data/originalImportedContentDocumentInfo
Binary file not shown.
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+254 KB
(600%)
...c/Assets.xcassets/MoviePosterPlaceholder.imageset/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// | ||
// AppStoreReviewManager.swift | ||
// TheatricalMovieTrailers | ||
// | ||
// Created by Christoph Parstorfer on 20.02.22. | ||
// | ||
|
||
import StoreKit | ||
|
||
/** | ||
Shows the App Store review prompt if appropriate. | ||
Appropriate means: | ||
- app launched > 1 minute ago | ||
- has not been asked to review this version | ||
*/ | ||
class AppStoreReviewsManager { | ||
static func requestReviewIfAppropriate() { | ||
let settings = Settings.instance | ||
// check if app was first launched more than one minute ago | ||
guard Date().timeIntervalSince(settings.firstLaunchedDate) > 1 * 60/* seconds */ else { | ||
return | ||
} | ||
|
||
// check that no request for review of this app version has been made | ||
let currentVersion = NSApplication.version | ||
let lastVersion = settings.lastReviewRequestAppVersion | ||
guard lastVersion == nil || lastVersion! != currentVersion else { | ||
return | ||
} | ||
|
||
// request for the review popup to be shown | ||
SKStoreReviewController.requestReview() | ||
|
||
// update last requested version number | ||
settings.lastReviewRequestAppVersion = currentVersion | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file removed
BIN
-41.8 KB
...lMovieTrailers/Supporting Files/Assets.xcassets/RatingLogo.imageset/512x512.png
Binary file not shown.
Binary file added
BIN
+253 KB
...MovieTrailers/Supporting Files/Assets.xcassets/TheatreLogo.imageset/512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
...MovieTrailers/Supporting Files/Assets.xcassets/frontRowTrailersRed.colorset/Contents.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"colors" : [ | ||
{ | ||
"color" : { | ||
"color-space" : "srgb", | ||
"components" : { | ||
"alpha" : "1.000", | ||
"blue" : "4", | ||
"green" : "11", | ||
"red" : "194" | ||
} | ||
}, | ||
"idiom" : "universal" | ||
}, | ||
{ | ||
"appearances" : [ | ||
{ | ||
"appearance" : "luminosity", | ||
"value" : "dark" | ||
} | ||
], | ||
"color" : { | ||
"color-space" : "srgb", | ||
"components" : { | ||
"alpha" : "1.000", | ||
"blue" : "0.016", | ||
"green" : "0.043", | ||
"red" : "0.761" | ||
} | ||
}, | ||
"idiom" : "universal" | ||
} | ||
], | ||
"info" : { | ||
"author" : "xcode", | ||
"version" : 1 | ||
} | ||
} |
Binary file modified
BIN
+241 KB
(580%)
...s/Assets.xcassets/moviePosterPlaceholder.imageset/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.