This commit is contained in:
zeng 2025-06-09 15:27:50 +08:00
parent 18789cb6ec
commit 9f3242cb26
3 changed files with 4 additions and 7 deletions

View File

@ -257,7 +257,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.0.6;
MARKETING_VERSION = 1.0.7;
PRODUCT_BUNDLE_IDENTIFIER = com.thimratv.app;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
@ -303,7 +303,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.0.6;
MARKETING_VERSION = 1.0.7;
PRODUCT_BUNDLE_IDENTIFIER = com.thimratv.app;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";

View File

@ -52,7 +52,7 @@ extension SceneDelegate {
var statUrlStr: String?
var data: [String : Any]?
if let pasteStr = UIPasteboard.general.string {
if let pasteStr = UIPasteboard.general.string, pasteStr.contains("movia") {
UIPasteboard.general.string = nil
let tempArr = pasteStr.components(separatedBy: "?")
let query = tempArr.last

View File

@ -46,7 +46,6 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate {
func sceneDidBecomeActive(_ scene: UIScene) {
// Called when the scene has moved from an inactive state to an active state.
// Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive.
handleOpenAppMessage(webpageURL: nil)
SPStatAPI.requestEnterApp()
handleOnLine()
}
@ -61,9 +60,7 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate {
func sceneWillEnterForeground(_ scene: UIScene) {
// Called as the scene transitions from the background to the foreground.
// Use this method to undo the changes made on entering the background.
handleOpenAppMessage(webpageURL: nil)
}
func sceneDidEnterBackground(_ scene: UIScene) {