diff --git a/Celestia-light-node-app-v0.1.0/node-app.app/Contents/Info.plist b/Celestia-light-node-app-v0.1.0/node-app.app/Contents/Info.plist deleted file mode 100644 index 9209608..0000000 --- a/Celestia-light-node-app-v0.1.0/node-app.app/Contents/Info.plist +++ /dev/null @@ -1,48 +0,0 @@ - - - - - BuildMachineOSBuild - 22F66 - CFBundleDevelopmentRegion - en - CFBundleDisplayName - Celestia light node - CFBundleExecutable - node-app - CFBundleIdentifier - gm.node-app - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - node-app - CFBundlePackageType - APPL - CFBundleShortVersionString - v0.1.0 - CFBundleSupportedPlatforms - - MacOSX - - CFBundleVersion - 1 - DTCompiler - com.apple.compilers.llvm.clang.1_0 - DTPlatformBuild - 14C18 - DTPlatformName - macosx - DTPlatformVersion - 13.1 - DTSDKBuild - 22C55 - DTSDKName - macosx13.1 - DTXcode - 1420 - DTXcodeBuild - 14C18 - LSMinimumSystemVersion - 13.1 - - diff --git a/Celestia-light-node-app-v0.1.0/node-app.app/Contents/MacOS/node-app b/Celestia-light-node-app-v0.1.0/node-app.app/Contents/MacOS/node-app deleted file mode 100755 index a724b60..0000000 Binary files a/Celestia-light-node-app-v0.1.0/node-app.app/Contents/MacOS/node-app and /dev/null differ diff --git a/Celestia-light-node-app-v0.1.0/node-app.app/Contents/PkgInfo b/Celestia-light-node-app-v0.1.0/node-app.app/Contents/PkgInfo deleted file mode 100644 index bd04210..0000000 --- a/Celestia-light-node-app-v0.1.0/node-app.app/Contents/PkgInfo +++ /dev/null @@ -1 +0,0 @@ -APPL???? \ No newline at end of file diff --git a/Celestia-light-node-app-v0.1.0/node-app.app/Contents/Resources/celestia b/Celestia-light-node-app-v0.1.0/node-app.app/Contents/Resources/celestia deleted file mode 100755 index 54c37c4..0000000 Binary files a/Celestia-light-node-app-v0.1.0/node-app.app/Contents/Resources/celestia and /dev/null differ diff --git a/Celestia-light-node-app-v0.1.0/node-app.app/Contents/_CodeSignature/CodeResources b/Celestia-light-node-app-v0.1.0/node-app.app/Contents/_CodeSignature/CodeResources deleted file mode 100644 index f17d0e9..0000000 --- a/Celestia-light-node-app-v0.1.0/node-app.app/Contents/_CodeSignature/CodeResources +++ /dev/null @@ -1,128 +0,0 @@ - - - - - files - - Resources/celestia - - zZ3iuRT2SOzRGK18lLx5BUk4uWI= - - - files2 - - Resources/celestia - - hash2 - - Thsb2BcBwZVx/HCYkWQqqNY+9rw1wgy1yuvog6ROxDY= - - - - rules - - ^Resources/ - - ^Resources/.*\.lproj/ - - optional - - weight - 1000 - - ^Resources/.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Resources/Base\.lproj/ - - weight - 1010 - - ^version.plist$ - - - rules2 - - .*\.dSYM($|/) - - weight - 11 - - ^(.*/)?\.DS_Store$ - - omit - - weight - 2000 - - ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ - - nested - - weight - 10 - - ^.* - - ^Info\.plist$ - - omit - - weight - 20 - - ^PkgInfo$ - - omit - - weight - 20 - - ^Resources/ - - weight - 20 - - ^Resources/.*\.lproj/ - - optional - - weight - 1000 - - ^Resources/.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Resources/Base\.lproj/ - - weight - 1010 - - ^[^/]+$ - - nested - - weight - 10 - - ^embedded\.provisionprofile$ - - weight - 20 - - ^version\.plist$ - - weight - 20 - - - - diff --git a/CelestiaNode.dmg b/CelestiaNode.dmg deleted file mode 100644 index 6b96263..0000000 Binary files a/CelestiaNode.dmg and /dev/null differ diff --git a/node-app/node-app.xcodeproj/project.xcworkspace/xcuserdata/joshstein.xcuserdatad/UserInterfaceState.xcuserstate b/node-app/node-app.xcodeproj/project.xcworkspace/xcuserdata/joshstein.xcuserdatad/UserInterfaceState.xcuserstate index 10adfd1..34c77ec 100644 Binary files a/node-app/node-app.xcodeproj/project.xcworkspace/xcuserdata/joshstein.xcuserdatad/UserInterfaceState.xcuserstate and b/node-app/node-app.xcodeproj/project.xcworkspace/xcuserdata/joshstein.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/node-app/node-app/ContentView.swift b/node-app/node-app/ContentView.swift index 02341f7..6ff938e 100644 --- a/node-app/node-app/ContentView.swift +++ b/node-app/node-app/ContentView.swift @@ -105,32 +105,32 @@ struct ContentView: View { viewModel.runCommand1() isShowingMnemonicAlert = true }) { - Text("Initialize a Celestia light node") + Text("Initialize your Celestia light node") } Button(action: { viewModel.runCommand2() }) { - Text("Start the node") + Text("Start your node") } Button(action: { viewModel.stopCommand() }) { - Text("Stop the node") + Text("Stop your node") } Spacer() .frame(height: 20) // Add space here if viewModel.isRunningNode { - ProgressView("Node is running...") + ProgressView("Your light node is running...") .padding() Button(action: { checkBalance() }) { - Text("Check Your Balance") + Text("Check your balance") } Text(balance)