~repos /website
git clone https://pyrossh.dev/repos/website.git
木 Personal website of pyrossh. Built with astrojs, shiki, vite.
9ea981f6
—
pyrossh 3 months ago
update app name
- src-tauri/Cargo.lock +11 -11
- src-tauri/Cargo.toml +3 -3
- src-tauri/gen/android/app/.gitignore +1 -1
- src-tauri/gen/android/app/build.gradle.kts +2 -2
- src-tauri/gen/android/app/src/main/AndroidManifest.xml +1 -1
- src-tauri/gen/android/app/src/main/java/com/pyrossh/{tauri_app → website}/MainActivity.kt +1 -1
- src-tauri/gen/android/app/src/main/res/values-night/themes.xml +1 -1
- src-tauri/gen/android/app/src/main/res/values/strings.xml +2 -2
- src-tauri/gen/android/app/src/main/res/values/themes.xml +1 -1
- src-tauri/gen/android/buildSrc/src/main/java/com/pyrossh/{tauri_app → website}/kotlin/BuildTask.kt +2 -2
- src-tauri/gen/android/buildSrc/src/main/java/com/pyrossh/{tauri_app → website}/kotlin/RustPlugin.kt +0 -0
- src-tauri/gen/apple/Podfile +4 -4
- src-tauri/gen/apple/Sources/{tauri-app → website}/bindings/bindings.h +0 -0
- src-tauri/gen/apple/Sources/{tauri-app → website}/main.mm +0 -0
- src-tauri/gen/apple/project.yml +9 -9
- src-tauri/gen/apple/{tauri-app.xcodeproj → website.xcodeproj}/project.pbxproj +142 -142
- src-tauri/gen/apple/{tauri-app.xcodeproj → website.xcodeproj}/project.xcworkspace/contents.xcworkspacedata +0 -0
- src-tauri/gen/apple/{tauri-app.xcodeproj → website.xcodeproj}/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +0 -0
- src-tauri/gen/apple/{tauri-app.xcodeproj/xcshareddata/xcschemes/tauri-app_iOS.xcscheme → website.xcodeproj/xcshareddata/xcschemes/website_iOS.xcscheme} +16 -16
- src-tauri/gen/apple/{tauri-app_iOS → website_iOS}/Info.plist +0 -0
- src-tauri/gen/apple/{tauri-app_iOS/tauri-app_iOS.entitlements → website_iOS/website_iOS.entitlements} +0 -0
- src-tauri/icons/icon.icns +0 -0
- src-tauri/tauri.conf.json +1 -1
src-tauri/Cargo.lock
CHANGED
|
@@ -3612,17 +3612,6 @@ dependencies = [
|
|
|
3612
3612
|
"windows",
|
|
3613
3613
|
]
|
|
3614
3614
|
|
|
3615
|
-
[[package]]
|
|
3616
|
-
name = "tauri-app"
|
|
3617
|
-
version = "0.1.0"
|
|
3618
|
-
dependencies = [
|
|
3619
|
-
"serde",
|
|
3620
|
-
"serde_json",
|
|
3621
|
-
"tauri",
|
|
3622
|
-
"tauri-build",
|
|
3623
|
-
"tauri-plugin-opener",
|
|
3624
|
-
]
|
|
3625
|
-
|
|
3626
3615
|
[[package]]
|
|
3627
3616
|
name = "tauri-build"
|
|
3628
3617
|
version = "2.4.0"
|
|
@@ -4493,6 +4482,17 @@ dependencies = [
|
|
|
4493
4482
|
"system-deps",
|
|
4494
4483
|
]
|
|
4495
4484
|
|
|
4485
|
+
[[package]]
|
|
4486
|
+
name = "website"
|
|
4487
|
+
version = "0.1.0"
|
|
4488
|
+
dependencies = [
|
|
4489
|
+
"serde",
|
|
4490
|
+
"serde_json",
|
|
4491
|
+
"tauri",
|
|
4492
|
+
"tauri-build",
|
|
4493
|
+
"tauri-plugin-opener",
|
|
4494
|
+
]
|
|
4495
|
+
|
|
4496
4496
|
[[package]]
|
|
4497
4497
|
name = "webview2-com"
|
|
4498
4498
|
version = "0.38.0"
|
src-tauri/Cargo.toml
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
[package]
|
|
2
|
-
name = "
|
|
2
|
+
name = "website"
|
|
3
3
|
version = "0.1.0"
|
|
4
|
-
description = "
|
|
4
|
+
description = "pyrossh website app"
|
|
5
|
-
authors = ["
|
|
5
|
+
authors = ["pyrossh"]
|
|
6
6
|
edition = "2021"
|
|
7
7
|
|
|
8
8
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
src-tauri/gen/android/app/.gitignore
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/src/main/java/com/pyrossh/
|
|
1
|
+
/src/main/java/com/pyrossh/website/generated
|
|
2
2
|
/src/main/jniLibs/**/*.so
|
|
3
3
|
/src/main/assets/tauri.conf.json
|
|
4
4
|
/tauri.build.gradle.kts
|
src-tauri/gen/android/app/build.gradle.kts
CHANGED
|
@@ -15,10 +15,10 @@ val tauriProperties = Properties().apply {
|
|
|
15
15
|
|
|
16
16
|
android {
|
|
17
17
|
compileSdk = 36
|
|
18
|
-
namespace = "com.pyrossh.
|
|
18
|
+
namespace = "com.pyrossh.website"
|
|
19
19
|
defaultConfig {
|
|
20
20
|
manifestPlaceholders["usesCleartextTraffic"] = "false"
|
|
21
|
-
applicationId = "com.pyrossh.
|
|
21
|
+
applicationId = "com.pyrossh.website"
|
|
22
22
|
minSdk = 24
|
|
23
23
|
targetSdk = 36
|
|
24
24
|
versionCode = tauriProperties.getProperty("tauri.android.versionCode", "1").toInt()
|
src-tauri/gen/android/app/src/main/AndroidManifest.xml
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<application
|
|
9
9
|
android:icon="@mipmap/ic_launcher"
|
|
10
10
|
android:label="@string/app_name"
|
|
11
|
-
android:theme="@style/Theme.
|
|
11
|
+
android:theme="@style/Theme.website"
|
|
12
12
|
android:usesCleartextTraffic="${usesCleartextTraffic}">
|
|
13
13
|
<activity
|
|
14
14
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode"
|
src-tauri/gen/android/app/src/main/java/com/pyrossh/{tauri_app → website}/MainActivity.kt
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
package com.pyrossh.
|
|
1
|
+
package com.pyrossh.website
|
|
2
2
|
|
|
3
3
|
import android.os.Bundle
|
|
4
4
|
import androidx.activity.enableEdgeToEdge
|
src-tauri/gen/android/app/src/main/res/values-night/themes.xml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
|
2
2
|
<!-- Base application theme. -->
|
|
3
|
-
<style name="Theme.
|
|
3
|
+
<style name="Theme.website" parent="Theme.MaterialComponents.DayNight.NoActionBar">
|
|
4
4
|
<!-- Customize your theme here. -->
|
|
5
5
|
</style>
|
|
6
6
|
</resources>
|
src-tauri/gen/android/app/src/main/res/values/strings.xml
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
<resources>
|
|
2
|
-
<string name="app_name">
|
|
2
|
+
<string name="app_name">pyrossh</string>
|
|
3
|
-
<string name="main_activity_title">
|
|
3
|
+
<string name="main_activity_title">pyrossh</string>
|
|
4
4
|
</resources>
|
src-tauri/gen/android/app/src/main/res/values/themes.xml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
|
2
2
|
<!-- Base application theme. -->
|
|
3
|
-
<style name="Theme.
|
|
3
|
+
<style name="Theme.website" parent="Theme.MaterialComponents.DayNight.NoActionBar">
|
|
4
4
|
<!-- Customize your theme here. -->
|
|
5
5
|
</style>
|
|
6
6
|
</resources>
|
src-tauri/gen/android/buildSrc/src/main/java/com/pyrossh/{tauri_app → website}/kotlin/BuildTask.kt
RENAMED
|
@@ -16,7 +16,7 @@ open class BuildTask : DefaultTask() {
|
|
|
16
16
|
|
|
17
17
|
@TaskAction
|
|
18
18
|
fun assemble() {
|
|
19
|
-
val executable = """
|
|
19
|
+
val executable = """npm""";
|
|
20
20
|
try {
|
|
21
21
|
runTauriCli(executable)
|
|
22
22
|
} catch (e: Exception) {
|
|
@@ -32,7 +32,7 @@ open class BuildTask : DefaultTask() {
|
|
|
32
32
|
val rootDirRel = rootDirRel ?: throw GradleException("rootDirRel cannot be null")
|
|
33
33
|
val target = target ?: throw GradleException("target cannot be null")
|
|
34
34
|
val release = release ?: throw GradleException("release cannot be null")
|
|
35
|
-
val args = listOf("tauri", "android", "android-studio-script");
|
|
35
|
+
val args = listOf("run", "--", "tauri", "android", "android-studio-script");
|
|
36
36
|
|
|
37
37
|
project.exec {
|
|
38
38
|
workingDir(File(project.projectDir, rootDirRel))
|
src-tauri/gen/android/buildSrc/src/main/java/com/pyrossh/{tauri_app → website}/kotlin/RustPlugin.kt
RENAMED
|
File without changes
|
src-tauri/gen/apple/Podfile
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# Uncomment the next line to define a global platform for your project
|
|
2
2
|
|
|
3
|
-
target '
|
|
3
|
+
target 'website_iOS' do
|
|
4
4
|
platform :ios, '14.0'
|
|
5
|
-
# Pods for
|
|
5
|
+
# Pods for website_iOS
|
|
6
6
|
end
|
|
7
7
|
|
|
8
|
-
target '
|
|
8
|
+
target 'website_macOS' do
|
|
9
9
|
platform :osx, '11.0'
|
|
10
|
-
# Pods for
|
|
10
|
+
# Pods for website_macOS
|
|
11
11
|
end
|
|
12
12
|
|
|
13
13
|
# Delete the deployment target for iOS and macOS, causing it to be inherited from the Podfile
|
src-tauri/gen/apple/Sources/{tauri-app → website}/bindings/bindings.h
RENAMED
|
File without changes
|
src-tauri/gen/apple/Sources/{tauri-app → website}/main.mm
RENAMED
|
File without changes
|
src-tauri/gen/apple/project.yml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
name:
|
|
1
|
+
name: website
|
|
2
2
|
options:
|
|
3
|
-
bundleIdPrefix: com.pyrossh.
|
|
3
|
+
bundleIdPrefix: com.pyrossh.website
|
|
4
4
|
deploymentTarget:
|
|
5
5
|
iOS: 14.0
|
|
6
6
|
fileGroups: [../../src]
|
|
@@ -10,8 +10,8 @@ configs:
|
|
|
10
10
|
settingGroups:
|
|
11
11
|
app:
|
|
12
12
|
base:
|
|
13
|
-
PRODUCT_NAME:
|
|
13
|
+
PRODUCT_NAME: pyrossh
|
|
14
|
-
PRODUCT_BUNDLE_IDENTIFIER: com.pyrossh.
|
|
14
|
+
PRODUCT_BUNDLE_IDENTIFIER: com.pyrossh.website
|
|
15
15
|
targetTemplates:
|
|
16
16
|
app:
|
|
17
17
|
type: application
|
|
@@ -24,20 +24,20 @@ targetTemplates:
|
|
|
24
24
|
settings:
|
|
25
25
|
groups: [app]
|
|
26
26
|
targets:
|
|
27
|
-
|
|
27
|
+
website_iOS:
|
|
28
28
|
type: application
|
|
29
29
|
platform: iOS
|
|
30
30
|
sources:
|
|
31
31
|
- path: Sources
|
|
32
32
|
- path: Assets.xcassets
|
|
33
33
|
- path: Externals
|
|
34
|
-
- path:
|
|
34
|
+
- path: website_iOS
|
|
35
35
|
- path: assets
|
|
36
36
|
buildPhase: resources
|
|
37
37
|
type: folder
|
|
38
38
|
- path: LaunchScreen.storyboard
|
|
39
39
|
info:
|
|
40
|
-
path:
|
|
40
|
+
path: website_iOS/Info.plist
|
|
41
41
|
properties:
|
|
42
42
|
LSRequiresIPhoneOS: true
|
|
43
43
|
UILaunchStoryboardName: LaunchScreen
|
|
@@ -54,7 +54,7 @@ targets:
|
|
|
54
54
|
CFBundleShortVersionString: 0.1.0
|
|
55
55
|
CFBundleVersion: "0.1.0"
|
|
56
56
|
entitlements:
|
|
57
|
-
path:
|
|
57
|
+
path: website_iOS/website_iOS.entitlements
|
|
58
58
|
scheme:
|
|
59
59
|
environmentVariables:
|
|
60
60
|
RUST_BACKTRACE: full
|
|
@@ -80,7 +80,7 @@ targets:
|
|
|
80
80
|
- sdk: UIKit.framework
|
|
81
81
|
- sdk: WebKit.framework
|
|
82
82
|
preBuildScripts:
|
|
83
|
-
- script:
|
|
83
|
+
- script: npm run -- tauri ios xcode-script -v --platform ${PLATFORM_DISPLAY_NAME:?} --sdk-root ${SDKROOT:?} --framework-search-paths "${FRAMEWORK_SEARCH_PATHS:?}" --header-search-paths "${HEADER_SEARCH_PATHS:?}" --gcc-preprocessor-definitions "${GCC_PREPROCESSOR_DEFINITIONS:-}" --configuration ${CONFIGURATION:?} ${FORCE_COLOR} ${ARCHS:?}
|
|
84
84
|
name: Build Rust Code
|
|
85
85
|
basedOnDependencyAnalysis: false
|
|
86
86
|
outputFiles:
|
src-tauri/gen/apple/{tauri-app.xcodeproj → website.xcodeproj}/project.pbxproj
RENAMED
|
@@ -7,182 +7,182 @@
|
|
|
7
7
|
objects = {
|
|
8
8
|
|
|
9
9
|
/* Begin PBXBuildFile section */
|
|
10
|
-
|
|
10
|
+
0493E2F87E8F7C9F794C1B34 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DAA64BC163CEFBAD08F66211 /* Security.framework */; };
|
|
11
|
-
|
|
11
|
+
0A90377127D43BAD3C3C0A7A /* main.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5473F9169BAE2325C40E5A99 /* main.mm */; };
|
|
12
|
-
|
|
12
|
+
0D5873105DD74611B081A4A3 /* assets in Resources */ = {isa = PBXBuildFile; fileRef = BBF7CBA019B728942FAE291D /* assets */; };
|
|
13
|
-
|
|
13
|
+
17771C197F17EA56AE15B585 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 535C3C9D350C1E1429DD9FF6 /* QuartzCore.framework */; };
|
|
14
|
+
2E50A699862B8902BE4B1B8A /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 4089124370A3CDF41282AB02 /* LaunchScreen.storyboard */; };
|
|
14
|
-
|
|
15
|
+
3883C4AD60DFD0B246A9BCC6 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DAF46F52F19D6D45ED818707 /* UIKit.framework */; };
|
|
15
|
-
|
|
16
|
+
443945E92FE8908364947E84 /* Metal.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 651618644F58327895D07ADE /* Metal.framework */; };
|
|
16
|
-
74C25A7912AFE30DBE96B590 /* assets in Resources */ = {isa = PBXBuildFile; fileRef = 234C7D371C7B526F7E893B15 /* assets */; };
|
|
17
|
-
|
|
17
|
+
5164D359C48CDFEFCBC52799 /* MetalKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 86F77AEF3C535780FA61C70E /* MetalKit.framework */; };
|
|
18
|
+
5BE2A729DF17D1F82E538035 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 12FE403996F58E69924775BC /* CoreGraphics.framework */; };
|
|
19
|
+
78BD33716BA88F5EEE27CF72 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 94930D8561C7E566D0BA9B22 /* Assets.xcassets */; };
|
|
18
|
-
|
|
20
|
+
A79C0E77D599BF7535D59A73 /* libapp.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4FAC398011E766C3CD5C3AA2 /* libapp.a */; };
|
|
19
|
-
|
|
21
|
+
CDDB60A5E3FF3FA95016B2EA /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 03E71EA79ED5D7D8C76BCF46 /* WebKit.framework */; };
|
|
20
|
-
8A272DD02B0D36ACBCE73E26 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = CFDCAF660F4CA93110C8FB02 /* Assets.xcassets */; };
|
|
21
|
-
CA00951E60FA3594F396EEEC /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC56A11F310BBFF30CCFEB63 /* CoreGraphics.framework */; };
|
|
22
22
|
/* End PBXBuildFile section */
|
|
23
23
|
|
|
24
24
|
/* Begin PBXFileReference section */
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
25
|
+
03E71EA79ED5D7D8C76BCF46 /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
|
|
26
|
+
12FE403996F58E69924775BC /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
|
|
27
|
+
13E5015BE69EC238DF5E1C4B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
|
|
28
|
+
3E42CE58A26F4A4537990E73 /* website_iOS.app */ = {isa = PBXFileReference; includeInIndex = 0; lastKnownFileType = wrapper.application; path = website_iOS.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
29
|
+
4089124370A3CDF41282AB02 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = LaunchScreen.storyboard; sourceTree = "<group>"; };
|
|
30
|
+
42D0761224AD048056963FF9 /* main.rs */ = {isa = PBXFileReference; path = main.rs; sourceTree = "<group>"; };
|
|
31
|
+
4FAC398011E766C3CD5C3AA2 /* libapp.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libapp.a; sourceTree = "<group>"; };
|
|
32
|
+
535C3C9D350C1E1429DD9FF6 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
|
|
33
|
+
5473F9169BAE2325C40E5A99 /* main.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = main.mm; sourceTree = "<group>"; };
|
|
34
|
+
651618644F58327895D07ADE /* Metal.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Metal.framework; path = System/Library/Frameworks/Metal.framework; sourceTree = SDKROOT; };
|
|
35
|
+
86F77AEF3C535780FA61C70E /* MetalKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MetalKit.framework; path = System/Library/Frameworks/MetalKit.framework; sourceTree = SDKROOT; };
|
|
36
|
+
94930D8561C7E566D0BA9B22 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
|
37
|
+
A53C794967C82D65BF213E78 /* bindings.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = bindings.h; sourceTree = "<group>"; };
|
|
38
|
+
BBF7CBA019B728942FAE291D /* assets */ = {isa = PBXFileReference; lastKnownFileType = folder; path = assets; sourceTree = SOURCE_ROOT; };
|
|
39
|
+
DA07FF1C699F9180B6AFC48C /* lib.rs */ = {isa = PBXFileReference; path = lib.rs; sourceTree = "<group>"; };
|
|
40
|
+
DAA64BC163CEFBAD08F66211 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
|
|
41
|
+
DAF46F52F19D6D45ED818707 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
|
|
42
|
+
FC57ED7C809BF215ACE80823 /* website_iOS.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = website_iOS.entitlements; sourceTree = "<group>"; };
|
|
43
43
|
/* End PBXFileReference section */
|
|
44
44
|
|
|
45
45
|
/* Begin PBXFrameworksBuildPhase section */
|
|
46
|
-
|
|
46
|
+
7583D8B9CE3CD614BC1DD9A5 /* Frameworks */ = {
|
|
47
47
|
isa = PBXFrameworksBuildPhase;
|
|
48
48
|
buildActionMask = 2147483647;
|
|
49
49
|
files = (
|
|
50
|
-
|
|
50
|
+
A79C0E77D599BF7535D59A73 /* libapp.a in Frameworks */,
|
|
51
|
-
|
|
51
|
+
5BE2A729DF17D1F82E538035 /* CoreGraphics.framework in Frameworks */,
|
|
52
|
-
|
|
52
|
+
443945E92FE8908364947E84 /* Metal.framework in Frameworks */,
|
|
53
|
-
|
|
53
|
+
5164D359C48CDFEFCBC52799 /* MetalKit.framework in Frameworks */,
|
|
54
|
-
|
|
54
|
+
17771C197F17EA56AE15B585 /* QuartzCore.framework in Frameworks */,
|
|
55
|
-
|
|
55
|
+
0493E2F87E8F7C9F794C1B34 /* Security.framework in Frameworks */,
|
|
56
|
-
|
|
56
|
+
3883C4AD60DFD0B246A9BCC6 /* UIKit.framework in Frameworks */,
|
|
57
|
-
|
|
57
|
+
CDDB60A5E3FF3FA95016B2EA /* WebKit.framework in Frameworks */,
|
|
58
58
|
);
|
|
59
59
|
runOnlyForDeploymentPostprocessing = 0;
|
|
60
60
|
};
|
|
61
61
|
/* End PBXFrameworksBuildPhase section */
|
|
62
62
|
|
|
63
63
|
/* Begin PBXGroup section */
|
|
64
|
-
|
|
64
|
+
3414C8584534A3ECF0C8D143 /* website */ = {
|
|
65
65
|
isa = PBXGroup;
|
|
66
66
|
children = (
|
|
67
|
+
5473F9169BAE2325C40E5A99 /* main.mm */,
|
|
68
|
+
3E3FAFAAD8C0F60391DD9DE3 /* bindings */,
|
|
67
69
|
);
|
|
68
|
-
path =
|
|
70
|
+
path = website;
|
|
69
71
|
sourceTree = "<group>";
|
|
70
72
|
};
|
|
71
|
-
|
|
73
|
+
3E3FAFAAD8C0F60391DD9DE3 /* bindings */ = {
|
|
72
74
|
isa = PBXGroup;
|
|
73
75
|
children = (
|
|
74
|
-
|
|
76
|
+
A53C794967C82D65BF213E78 /* bindings.h */,
|
|
75
77
|
);
|
|
76
|
-
|
|
78
|
+
path = bindings;
|
|
77
79
|
sourceTree = "<group>";
|
|
78
80
|
};
|
|
79
|
-
|
|
81
|
+
686794EA8CCC7F7587344201 /* Products */ = {
|
|
80
82
|
isa = PBXGroup;
|
|
81
83
|
children = (
|
|
82
|
-
E486419C84C58B66E0FC1383 /* lib.rs */,
|
|
83
|
-
|
|
84
|
+
3E42CE58A26F4A4537990E73 /* website_iOS.app */,
|
|
84
85
|
);
|
|
85
|
-
name =
|
|
86
|
+
name = Products;
|
|
86
|
-
path = ../../src;
|
|
87
87
|
sourceTree = "<group>";
|
|
88
88
|
};
|
|
89
|
-
|
|
89
|
+
7BA08FD346DFAB0608ED68D3 /* Sources */ = {
|
|
90
90
|
isa = PBXGroup;
|
|
91
91
|
children = (
|
|
92
|
-
|
|
92
|
+
3414C8584534A3ECF0C8D143 /* website */,
|
|
93
93
|
);
|
|
94
|
-
path =
|
|
94
|
+
path = Sources;
|
|
95
95
|
sourceTree = "<group>";
|
|
96
96
|
};
|
|
97
|
-
|
|
97
|
+
BAB31B8016D1C01ED4825409 /* Externals */ = {
|
|
98
98
|
isa = PBXGroup;
|
|
99
99
|
children = (
|
|
100
|
-
AC56A11F310BBFF30CCFEB63 /* CoreGraphics.framework */,
|
|
101
|
-
46600E42EDBD4E2F9CFFB94E /* libapp.a */,
|
|
102
|
-
CA1A066F7EDD869BC014BB9C /* Metal.framework */,
|
|
103
|
-
B8DBF813DB5FCB214283D94D /* MetalKit.framework */,
|
|
104
|
-
5384EE0C649F19A31B462538 /* QuartzCore.framework */,
|
|
105
|
-
84E625C1ABDB2D39CB77BF29 /* Security.framework */,
|
|
106
|
-
C42C09CE350D0304EDF85C59 /* UIKit.framework */,
|
|
107
|
-
CF0F15D9837DA9743995496A /* WebKit.framework */,
|
|
108
100
|
);
|
|
109
|
-
|
|
101
|
+
path = Externals;
|
|
110
102
|
sourceTree = "<group>";
|
|
111
103
|
};
|
|
112
|
-
|
|
104
|
+
D5EA0579610FC1A18543DE74 /* src */ = {
|
|
113
105
|
isa = PBXGroup;
|
|
114
106
|
children = (
|
|
115
|
-
|
|
107
|
+
DA07FF1C699F9180B6AFC48C /* lib.rs */,
|
|
108
|
+
42D0761224AD048056963FF9 /* main.rs */,
|
|
116
109
|
);
|
|
117
|
-
|
|
110
|
+
name = src;
|
|
111
|
+
path = ../../src;
|
|
118
112
|
sourceTree = "<group>";
|
|
119
113
|
};
|
|
120
|
-
|
|
114
|
+
D697450EC597BD6FFBB8C9FD = {
|
|
121
115
|
isa = PBXGroup;
|
|
122
116
|
children = (
|
|
117
|
+
BBF7CBA019B728942FAE291D /* assets */,
|
|
118
|
+
94930D8561C7E566D0BA9B22 /* Assets.xcassets */,
|
|
119
|
+
4089124370A3CDF41282AB02 /* LaunchScreen.storyboard */,
|
|
120
|
+
BAB31B8016D1C01ED4825409 /* Externals */,
|
|
123
|
-
|
|
121
|
+
7BA08FD346DFAB0608ED68D3 /* Sources */,
|
|
122
|
+
D5EA0579610FC1A18543DE74 /* src */,
|
|
123
|
+
F717530A8E2095005FCBE277 /* website_iOS */,
|
|
124
|
+
E16B41AB859C18F3BD55ABD2 /* Frameworks */,
|
|
124
|
-
|
|
125
|
+
686794EA8CCC7F7587344201 /* Products */,
|
|
125
126
|
);
|
|
126
|
-
path = "tauri-app";
|
|
127
127
|
sourceTree = "<group>";
|
|
128
128
|
};
|
|
129
|
-
|
|
129
|
+
E16B41AB859C18F3BD55ABD2 /* Frameworks */ = {
|
|
130
130
|
isa = PBXGroup;
|
|
131
131
|
children = (
|
|
132
|
-
6B62CCFCDED0CBE851A51E4F /* Info.plist */,
|
|
133
|
-
|
|
132
|
+
12FE403996F58E69924775BC /* CoreGraphics.framework */,
|
|
133
|
+
4FAC398011E766C3CD5C3AA2 /* libapp.a */,
|
|
134
|
+
651618644F58327895D07ADE /* Metal.framework */,
|
|
135
|
+
86F77AEF3C535780FA61C70E /* MetalKit.framework */,
|
|
136
|
+
535C3C9D350C1E1429DD9FF6 /* QuartzCore.framework */,
|
|
137
|
+
DAA64BC163CEFBAD08F66211 /* Security.framework */,
|
|
138
|
+
DAF46F52F19D6D45ED818707 /* UIKit.framework */,
|
|
139
|
+
03E71EA79ED5D7D8C76BCF46 /* WebKit.framework */,
|
|
134
140
|
);
|
|
135
|
-
|
|
141
|
+
name = Frameworks;
|
|
136
142
|
sourceTree = "<group>";
|
|
137
143
|
};
|
|
138
|
-
|
|
144
|
+
F717530A8E2095005FCBE277 /* website_iOS */ = {
|
|
139
145
|
isa = PBXGroup;
|
|
140
146
|
children = (
|
|
141
|
-
234C7D371C7B526F7E893B15 /* assets */,
|
|
142
|
-
CFDCAF660F4CA93110C8FB02 /* Assets.xcassets */,
|
|
143
|
-
BA38F7BF7C28E04DBA849965 /* LaunchScreen.storyboard */,
|
|
144
|
-
2ECFA35AFF2D5945783C3B8D /* Externals */,
|
|
145
|
-
90B7B06659AD5A7A7EE39662 /* Sources */,
|
|
146
|
-
48DF3F622809E7EBA4ED342A /* src */,
|
|
147
|
-
|
|
147
|
+
13E5015BE69EC238DF5E1C4B /* Info.plist */,
|
|
148
|
-
86E4D2974D6FC803E43026BD /* Frameworks */,
|
|
149
|
-
|
|
148
|
+
FC57ED7C809BF215ACE80823 /* website_iOS.entitlements */,
|
|
150
149
|
);
|
|
150
|
+
path = website_iOS;
|
|
151
151
|
sourceTree = "<group>";
|
|
152
152
|
};
|
|
153
153
|
/* End PBXGroup section */
|
|
154
154
|
|
|
155
155
|
/* Begin PBXNativeTarget section */
|
|
156
|
-
|
|
156
|
+
CE477CBD3BC30A319BF11379 /* website_iOS */ = {
|
|
157
157
|
isa = PBXNativeTarget;
|
|
158
|
-
buildConfigurationList =
|
|
158
|
+
buildConfigurationList = 261C19669627DEB526D22683 /* Build configuration list for PBXNativeTarget "website_iOS" */;
|
|
159
159
|
buildPhases = (
|
|
160
|
-
|
|
160
|
+
B7418C0D2E82AEF10995AB89 /* Build Rust Code */,
|
|
161
|
-
|
|
161
|
+
E7C182EDA366516C29559102 /* Sources */,
|
|
162
|
-
|
|
162
|
+
5C04A9801679092C238D6A57 /* Resources */,
|
|
163
|
-
|
|
163
|
+
7583D8B9CE3CD614BC1DD9A5 /* Frameworks */,
|
|
164
164
|
);
|
|
165
165
|
buildRules = (
|
|
166
166
|
);
|
|
167
167
|
dependencies = (
|
|
168
168
|
);
|
|
169
|
-
name =
|
|
169
|
+
name = website_iOS;
|
|
170
170
|
packageProductDependencies = (
|
|
171
171
|
);
|
|
172
|
-
productName =
|
|
172
|
+
productName = website_iOS;
|
|
173
|
-
productReference =
|
|
173
|
+
productReference = 3E42CE58A26F4A4537990E73 /* website_iOS.app */;
|
|
174
174
|
productType = "com.apple.product-type.application";
|
|
175
175
|
};
|
|
176
176
|
/* End PBXNativeTarget section */
|
|
177
177
|
|
|
178
178
|
/* Begin PBXProject section */
|
|
179
|
-
|
|
179
|
+
09D371B39E032D1C75D03DC2 /* Project object */ = {
|
|
180
180
|
isa = PBXProject;
|
|
181
181
|
attributes = {
|
|
182
182
|
BuildIndependentTargetsInParallel = YES;
|
|
183
183
|
LastUpgradeCheck = 1430;
|
|
184
184
|
};
|
|
185
|
-
buildConfigurationList =
|
|
185
|
+
buildConfigurationList = BD04E45C5DE624B205F4CB28 /* Build configuration list for PBXProject "website" */;
|
|
186
186
|
compatibilityVersion = "Xcode 14.0";
|
|
187
187
|
developmentRegion = en;
|
|
188
188
|
hasScannedForEncodings = 0;
|
|
@@ -190,32 +190,32 @@
|
|
|
190
190
|
Base,
|
|
191
191
|
en,
|
|
192
192
|
);
|
|
193
|
-
mainGroup =
|
|
193
|
+
mainGroup = D697450EC597BD6FFBB8C9FD;
|
|
194
194
|
minimizedProjectReferenceProxies = 1;
|
|
195
195
|
preferredProjectObjectVersion = 77;
|
|
196
196
|
projectDirPath = "";
|
|
197
197
|
projectRoot = "";
|
|
198
198
|
targets = (
|
|
199
|
-
|
|
199
|
+
CE477CBD3BC30A319BF11379 /* website_iOS */,
|
|
200
200
|
);
|
|
201
201
|
};
|
|
202
202
|
/* End PBXProject section */
|
|
203
203
|
|
|
204
204
|
/* Begin PBXResourcesBuildPhase section */
|
|
205
|
-
|
|
205
|
+
5C04A9801679092C238D6A57 /* Resources */ = {
|
|
206
206
|
isa = PBXResourcesBuildPhase;
|
|
207
207
|
buildActionMask = 2147483647;
|
|
208
208
|
files = (
|
|
209
|
-
|
|
209
|
+
78BD33716BA88F5EEE27CF72 /* Assets.xcassets in Resources */,
|
|
210
|
-
|
|
210
|
+
2E50A699862B8902BE4B1B8A /* LaunchScreen.storyboard in Resources */,
|
|
211
|
-
|
|
211
|
+
0D5873105DD74611B081A4A3 /* assets in Resources */,
|
|
212
212
|
);
|
|
213
213
|
runOnlyForDeploymentPostprocessing = 0;
|
|
214
214
|
};
|
|
215
215
|
/* End PBXResourcesBuildPhase section */
|
|
216
216
|
|
|
217
217
|
/* Begin PBXShellScriptBuildPhase section */
|
|
218
|
-
|
|
218
|
+
B7418C0D2E82AEF10995AB89 /* Build Rust Code */ = {
|
|
219
219
|
isa = PBXShellScriptBuildPhase;
|
|
220
220
|
alwaysOutOfDate = 1;
|
|
221
221
|
buildActionMask = 2147483647;
|
|
@@ -234,23 +234,23 @@
|
|
|
234
234
|
);
|
|
235
235
|
runOnlyForDeploymentPostprocessing = 0;
|
|
236
236
|
shellPath = /bin/sh;
|
|
237
|
-
shellScript = "
|
|
237
|
+
shellScript = "npm run -- tauri ios xcode-script -v --platform ${PLATFORM_DISPLAY_NAME:?} --sdk-root ${SDKROOT:?} --framework-search-paths \"${FRAMEWORK_SEARCH_PATHS:?}\" --header-search-paths \"${HEADER_SEARCH_PATHS:?}\" --gcc-preprocessor-definitions \"${GCC_PREPROCESSOR_DEFINITIONS:-}\" --configuration ${CONFIGURATION:?} ${FORCE_COLOR} ${ARCHS:?}";
|
|
238
238
|
};
|
|
239
239
|
/* End PBXShellScriptBuildPhase section */
|
|
240
240
|
|
|
241
241
|
/* Begin PBXSourcesBuildPhase section */
|
|
242
|
-
|
|
242
|
+
E7C182EDA366516C29559102 /* Sources */ = {
|
|
243
243
|
isa = PBXSourcesBuildPhase;
|
|
244
244
|
buildActionMask = 2147483647;
|
|
245
245
|
files = (
|
|
246
|
-
|
|
246
|
+
0A90377127D43BAD3C3C0A7A /* main.mm in Sources */,
|
|
247
247
|
);
|
|
248
248
|
runOnlyForDeploymentPostprocessing = 0;
|
|
249
249
|
};
|
|
250
250
|
/* End PBXSourcesBuildPhase section */
|
|
251
251
|
|
|
252
252
|
/* Begin XCBuildConfiguration section */
|
|
253
|
-
|
|
253
|
+
0E9519C86727B450CD89865A /* debug */ = {
|
|
254
254
|
isa = XCBuildConfiguration;
|
|
255
255
|
buildSettings = {
|
|
256
256
|
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
|
@@ -258,7 +258,7 @@
|
|
|
258
258
|
arm64,
|
|
259
259
|
);
|
|
260
260
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
261
|
-
CODE_SIGN_ENTITLEMENTS =
|
|
261
|
+
CODE_SIGN_ENTITLEMENTS = website_iOS/website_iOS.entitlements;
|
|
262
262
|
CODE_SIGN_IDENTITY = "iPhone Developer";
|
|
263
263
|
ENABLE_BITCODE = NO;
|
|
264
264
|
"EXCLUDED_ARCHS[sdk=iphoneos*]" = x86_64;
|
|
@@ -266,22 +266,22 @@
|
|
|
266
266
|
"$(inherited)",
|
|
267
267
|
"\".\"",
|
|
268
268
|
);
|
|
269
|
-
INFOPLIST_FILE =
|
|
269
|
+
INFOPLIST_FILE = website_iOS/Info.plist;
|
|
270
270
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
271
271
|
"$(inherited)",
|
|
272
272
|
"@executable_path/Frameworks",
|
|
273
273
|
);
|
|
274
274
|
"LIBRARY_SEARCH_PATHS[arch=arm64]" = "$(inherited) $(PROJECT_DIR)/Externals/arm64/$(CONFIGURATION) $(SDKROOT)/usr/lib/swift $(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME) $(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)";
|
|
275
275
|
"LIBRARY_SEARCH_PATHS[arch=x86_64]" = "$(inherited) $(PROJECT_DIR)/Externals/x86_64/$(CONFIGURATION) $(SDKROOT)/usr/lib/swift $(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME) $(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)";
|
|
276
|
-
PRODUCT_BUNDLE_IDENTIFIER =
|
|
276
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.pyrossh.website;
|
|
277
|
-
PRODUCT_NAME =
|
|
277
|
+
PRODUCT_NAME = pyrossh;
|
|
278
278
|
SDKROOT = iphoneos;
|
|
279
279
|
TARGETED_DEVICE_FAMILY = "1,2";
|
|
280
280
|
VALID_ARCHS = arm64;
|
|
281
281
|
};
|
|
282
282
|
name = debug;
|
|
283
283
|
};
|
|
284
|
-
|
|
284
|
+
3F97C5E7673094FE5640D153 /* debug */ = {
|
|
285
285
|
isa = XCBuildConfiguration;
|
|
286
286
|
buildSettings = {
|
|
287
287
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
@@ -315,11 +315,17 @@
|
|
|
315
315
|
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
316
316
|
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
317
317
|
COPY_PHASE_STRIP = NO;
|
|
318
|
-
DEBUG_INFORMATION_FORMAT =
|
|
318
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
319
|
-
ENABLE_NS_ASSERTIONS = NO;
|
|
320
319
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
320
|
+
ENABLE_TESTABILITY = YES;
|
|
321
321
|
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
322
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
322
323
|
GCC_NO_COMMON_BLOCKS = YES;
|
|
324
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
325
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
326
|
+
"$(inherited)",
|
|
327
|
+
"DEBUG=1",
|
|
328
|
+
);
|
|
323
329
|
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
324
330
|
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
325
331
|
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
@@ -327,17 +333,18 @@
|
|
|
327
333
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
328
334
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
329
335
|
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
|
|
330
|
-
MTL_ENABLE_DEBUG_INFO =
|
|
336
|
+
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
|
331
337
|
MTL_FAST_MATH = YES;
|
|
338
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
332
339
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
333
340
|
SDKROOT = iphoneos;
|
|
334
|
-
|
|
341
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
|
335
|
-
SWIFT_OPTIMIZATION_LEVEL = "-
|
|
342
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
336
343
|
SWIFT_VERSION = 5.0;
|
|
337
344
|
};
|
|
338
|
-
name =
|
|
345
|
+
name = debug;
|
|
339
346
|
};
|
|
340
|
-
|
|
347
|
+
54FAEF10FBAF48B93A7149FF /* release */ = {
|
|
341
348
|
isa = XCBuildConfiguration;
|
|
342
349
|
buildSettings = {
|
|
343
350
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
@@ -371,17 +378,11 @@
|
|
|
371
378
|
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
372
379
|
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
373
380
|
COPY_PHASE_STRIP = NO;
|
|
374
|
-
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
381
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
382
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
375
383
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
376
|
-
ENABLE_TESTABILITY = YES;
|
|
377
384
|
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
378
|
-
GCC_DYNAMIC_NO_PIC = NO;
|
|
379
385
|
GCC_NO_COMMON_BLOCKS = YES;
|
|
380
|
-
GCC_OPTIMIZATION_LEVEL = 0;
|
|
381
|
-
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
382
|
-
"$(inherited)",
|
|
383
|
-
"DEBUG=1",
|
|
384
|
-
);
|
|
385
386
|
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
386
387
|
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
387
388
|
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
@@ -389,18 +390,17 @@
|
|
|
389
390
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
390
391
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
391
392
|
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
|
|
392
|
-
MTL_ENABLE_DEBUG_INFO =
|
|
393
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
393
394
|
MTL_FAST_MATH = YES;
|
|
394
|
-
ONLY_ACTIVE_ARCH = YES;
|
|
395
395
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
396
396
|
SDKROOT = iphoneos;
|
|
397
|
-
|
|
397
|
+
SWIFT_COMPILATION_MODE = wholemodule;
|
|
398
|
-
SWIFT_OPTIMIZATION_LEVEL = "-
|
|
398
|
+
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
|
399
399
|
SWIFT_VERSION = 5.0;
|
|
400
400
|
};
|
|
401
|
-
name =
|
|
401
|
+
name = release;
|
|
402
402
|
};
|
|
403
|
-
|
|
403
|
+
F5E19F06FF370630D2A8D5B7 /* release */ = {
|
|
404
404
|
isa = XCBuildConfiguration;
|
|
405
405
|
buildSettings = {
|
|
406
406
|
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
|
@@ -408,7 +408,7 @@
|
|
|
408
408
|
arm64,
|
|
409
409
|
);
|
|
410
410
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
411
|
-
CODE_SIGN_ENTITLEMENTS =
|
|
411
|
+
CODE_SIGN_ENTITLEMENTS = website_iOS/website_iOS.entitlements;
|
|
412
412
|
CODE_SIGN_IDENTITY = "iPhone Developer";
|
|
413
413
|
ENABLE_BITCODE = NO;
|
|
414
414
|
"EXCLUDED_ARCHS[sdk=iphoneos*]" = x86_64;
|
|
@@ -416,15 +416,15 @@
|
|
|
416
416
|
"$(inherited)",
|
|
417
417
|
"\".\"",
|
|
418
418
|
);
|
|
419
|
-
INFOPLIST_FILE =
|
|
419
|
+
INFOPLIST_FILE = website_iOS/Info.plist;
|
|
420
420
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
421
421
|
"$(inherited)",
|
|
422
422
|
"@executable_path/Frameworks",
|
|
423
423
|
);
|
|
424
424
|
"LIBRARY_SEARCH_PATHS[arch=arm64]" = "$(inherited) $(PROJECT_DIR)/Externals/arm64/$(CONFIGURATION) $(SDKROOT)/usr/lib/swift $(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME) $(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)";
|
|
425
425
|
"LIBRARY_SEARCH_PATHS[arch=x86_64]" = "$(inherited) $(PROJECT_DIR)/Externals/x86_64/$(CONFIGURATION) $(SDKROOT)/usr/lib/swift $(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME) $(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)";
|
|
426
|
-
PRODUCT_BUNDLE_IDENTIFIER =
|
|
426
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.pyrossh.website;
|
|
427
|
-
PRODUCT_NAME =
|
|
427
|
+
PRODUCT_NAME = pyrossh;
|
|
428
428
|
SDKROOT = iphoneos;
|
|
429
429
|
TARGETED_DEVICE_FAMILY = "1,2";
|
|
430
430
|
VALID_ARCHS = arm64;
|
|
@@ -434,25 +434,25 @@
|
|
|
434
434
|
/* End XCBuildConfiguration section */
|
|
435
435
|
|
|
436
436
|
/* Begin XCConfigurationList section */
|
|
437
|
-
|
|
437
|
+
261C19669627DEB526D22683 /* Build configuration list for PBXNativeTarget "website_iOS" */ = {
|
|
438
438
|
isa = XCConfigurationList;
|
|
439
439
|
buildConfigurations = (
|
|
440
|
-
|
|
440
|
+
0E9519C86727B450CD89865A /* debug */,
|
|
441
|
-
|
|
441
|
+
F5E19F06FF370630D2A8D5B7 /* release */,
|
|
442
442
|
);
|
|
443
443
|
defaultConfigurationIsVisible = 0;
|
|
444
444
|
defaultConfigurationName = debug;
|
|
445
445
|
};
|
|
446
|
-
|
|
446
|
+
BD04E45C5DE624B205F4CB28 /* Build configuration list for PBXProject "website" */ = {
|
|
447
447
|
isa = XCConfigurationList;
|
|
448
448
|
buildConfigurations = (
|
|
449
|
-
|
|
449
|
+
3F97C5E7673094FE5640D153 /* debug */,
|
|
450
|
-
|
|
450
|
+
54FAEF10FBAF48B93A7149FF /* release */,
|
|
451
451
|
);
|
|
452
452
|
defaultConfigurationIsVisible = 0;
|
|
453
453
|
defaultConfigurationName = debug;
|
|
454
454
|
};
|
|
455
455
|
/* End XCConfigurationList section */
|
|
456
456
|
};
|
|
457
|
-
rootObject =
|
|
457
|
+
rootObject = 09D371B39E032D1C75D03DC2 /* Project object */;
|
|
458
458
|
}
|
src-tauri/gen/apple/{tauri-app.xcodeproj → website.xcodeproj}/project.xcworkspace/contents.xcworkspacedata
RENAMED
|
File without changes
|
src-tauri/gen/apple/{tauri-app.xcodeproj → website.xcodeproj}/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
RENAMED
|
File without changes
|
src-tauri/gen/apple/{tauri-app.xcodeproj/xcshareddata/xcschemes/tauri-app_iOS.xcscheme → website.xcodeproj/xcshareddata/xcschemes/website_iOS.xcscheme}
RENAMED
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
buildForAnalyzing = "YES">
|
|
16
16
|
<BuildableReference
|
|
17
17
|
BuildableIdentifier = "primary"
|
|
18
|
-
BlueprintIdentifier = "
|
|
18
|
+
BlueprintIdentifier = "CE477CBD3BC30A319BF11379"
|
|
19
|
-
BuildableName = "
|
|
19
|
+
BuildableName = "website_iOS.app"
|
|
20
|
-
BlueprintName = "
|
|
20
|
+
BlueprintName = "website_iOS"
|
|
21
|
-
ReferencedContainer = "container:
|
|
21
|
+
ReferencedContainer = "container:website.xcodeproj">
|
|
22
22
|
</BuildableReference>
|
|
23
23
|
</BuildActionEntry>
|
|
24
24
|
</BuildActionEntries>
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
<MacroExpansion>
|
|
33
33
|
<BuildableReference
|
|
34
34
|
BuildableIdentifier = "primary"
|
|
35
|
-
BlueprintIdentifier = "
|
|
35
|
+
BlueprintIdentifier = "CE477CBD3BC30A319BF11379"
|
|
36
|
-
BuildableName = "
|
|
36
|
+
BuildableName = "website_iOS.app"
|
|
37
|
-
BlueprintName = "
|
|
37
|
+
BlueprintName = "website_iOS"
|
|
38
|
-
ReferencedContainer = "container:
|
|
38
|
+
ReferencedContainer = "container:website.xcodeproj">
|
|
39
39
|
</BuildableReference>
|
|
40
40
|
</MacroExpansion>
|
|
41
41
|
<Testables>
|
|
@@ -69,10 +69,10 @@
|
|
|
69
69
|
runnableDebuggingMode = "0">
|
|
70
70
|
<BuildableReference
|
|
71
71
|
BuildableIdentifier = "primary"
|
|
72
|
-
BlueprintIdentifier = "
|
|
72
|
+
BlueprintIdentifier = "CE477CBD3BC30A319BF11379"
|
|
73
|
-
BuildableName = "
|
|
73
|
+
BuildableName = "website_iOS.app"
|
|
74
|
-
BlueprintName = "
|
|
74
|
+
BlueprintName = "website_iOS"
|
|
75
|
-
ReferencedContainer = "container:
|
|
75
|
+
ReferencedContainer = "container:website.xcodeproj">
|
|
76
76
|
</BuildableReference>
|
|
77
77
|
</BuildableProductRunnable>
|
|
78
78
|
<CommandLineArguments>
|
|
@@ -100,10 +100,10 @@
|
|
|
100
100
|
runnableDebuggingMode = "0">
|
|
101
101
|
<BuildableReference
|
|
102
102
|
BuildableIdentifier = "primary"
|
|
103
|
-
BlueprintIdentifier = "
|
|
103
|
+
BlueprintIdentifier = "CE477CBD3BC30A319BF11379"
|
|
104
|
-
BuildableName = "
|
|
104
|
+
BuildableName = "website_iOS.app"
|
|
105
|
-
BlueprintName = "
|
|
105
|
+
BlueprintName = "website_iOS"
|
|
106
|
-
ReferencedContainer = "container:
|
|
106
|
+
ReferencedContainer = "container:website.xcodeproj">
|
|
107
107
|
</BuildableReference>
|
|
108
108
|
</BuildableProductRunnable>
|
|
109
109
|
<CommandLineArguments>
|
src-tauri/gen/apple/{tauri-app_iOS → website_iOS}/Info.plist
RENAMED
|
File without changes
|
src-tauri/gen/apple/{tauri-app_iOS/tauri-app_iOS.entitlements → website_iOS/website_iOS.entitlements}
RENAMED
|
File without changes
|
src-tauri/icons/icon.icns
CHANGED
|
Binary file
|
src-tauri/tauri.conf.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://schema.tauri.app/config/2",
|
|
3
|
-
"productName": "
|
|
3
|
+
"productName": "pyrossh",
|
|
4
4
|
"version": "0.1.0",
|
|
5
5
|
"identifier": "com.pyrossh.website",
|
|
6
6
|
"build": {
|