From 066b87fe799289848ac9ddf1f56d5b711785d991 Mon Sep 17 00:00:00 2001 From: "Eric X. Liu" Date: Fri, 17 Jul 2026 21:38:04 -0700 Subject: [PATCH] Verify wireless iOS installation --- HelloWorld.xcodeproj/project.pbxproj | 4 ++-- Resources/Info.plist | 2 +- Sources/App.swift | 5 +++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/HelloWorld.xcodeproj/project.pbxproj b/HelloWorld.xcodeproj/project.pbxproj index 245becb..105a769 100644 --- a/HelloWorld.xcodeproj/project.pbxproj +++ b/HelloWorld.xcodeproj/project.pbxproj @@ -141,7 +141,7 @@ isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1; + CURRENT_PROJECT_VERSION = 2; DEVELOPMENT_TEAM = HY3W4U256Z; GENERATE_INFOPLIST_FILE = NO; INFOPLIST_FILE = Resources/Info.plist; @@ -158,7 +158,7 @@ isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1; + CURRENT_PROJECT_VERSION = 2; DEVELOPMENT_TEAM = HY3W4U256Z; GENERATE_INFOPLIST_FILE = NO; INFOPLIST_FILE = Resources/Info.plist; diff --git a/Resources/Info.plist b/Resources/Info.plist index 5b2bd97..a7944d6 100644 --- a/Resources/Info.plist +++ b/Resources/Info.plist @@ -19,7 +19,7 @@ CFBundleShortVersionString 1.0 CFBundleVersion - 1 + $(CURRENT_PROJECT_VERSION) LSRequiresIPhoneOS MinimumOSVersion diff --git a/Sources/App.swift b/Sources/App.swift index 3a60a99..12e98bb 100644 --- a/Sources/App.swift +++ b/Sources/App.swift @@ -9,9 +9,10 @@ final class AppDelegate: UIResponder, UIApplicationDelegate { didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil ) -> Bool { let label = UILabel() - label.text = "Hello, world!" - label.font = .systemFont(ofSize: 32, weight: .bold) + label.text = "Wireless install works!\nHello from Proxmox." + label.font = .systemFont(ofSize: 28, weight: .bold) label.textAlignment = .center + label.numberOfLines = 0 let viewController = UIViewController() viewController.view.backgroundColor = .systemBackground