Skip to content

Commit db602bf

Browse files
1 parent fc441d2 commit db602bf

File tree

9 files changed

+74
-9
lines changed

9 files changed

+74
-9
lines changed

.SRCINFO

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
pkgbase = land
2+
pkgver = 0.0.1
3+
pkgrel = 1
4+
url = https://github.com/CodeEditorLand/Mountain
5+
install = land.install
6+
arch = x86_64
7+
arch = aarch64
8+
license = mit
9+
source_x86_64 = https://github.com/CodeEditorLand/Mountain/releases/download/v0.0.1/appname_0.0.1_amd64.deb
10+
source_aarch64 = https://github.com/CodeEditorLand/Mountain/releases/download/v0.0.1/appname_0.0.1_arm64.deb
11+
12+
pkgname = land

Entitlements.plist

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>com.apple.security.app-sandbox</key>
6+
<true />
7+
</dict>
8+
</plist>

Info.plist

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict></dict>
5+
</plist>

PKGBUILD

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
pkgname=land
2+
pkgver=0.0.1
3+
pkgrel=1
4+
pkgdesc=""
5+
arch=('x86_64' 'aarch64')
6+
url="https://github.com/CodeEditorLand/Mountain"
7+
license=('mit')
8+
depends=()
9+
options=()
10+
install=${pkgname}.install
11+
source_x86_64=("https://github.com/CodeEditorLand/Mountain/releases/download/v$pkgver/appname_"$pkgver"_amd64.deb")
12+
source_aarch64=("https://github.com/CodeEditorLand/Mountain/releases/download/v$pkgver/appname_"$pkgver"_arm64.deb")

gen/android/app/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ val tauriProperties = Properties().apply {
1515

1616
android {
1717
compileSdk = 34
18-
namespace = "mountain.editor.land"
18+
namespace = "land.editor.application"
1919
defaultConfig {
2020
manifestPlaceholders["usesCleartextTraffic"] = "false"
21-
applicationId = "mountain.editor.land"
21+
applicationId = "land.editor.application"
2222
minSdk = 24
2323
targetSdk = 34
2424
versionCode = tauriProperties.getProperty("tauri.android.versionCode", "1").toInt()
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
package mountain.editor.land
1+
package land.editor.application
22

33
class MainActivity : TauriActivity()

tauri.conf.json

+24-5
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,7 @@
4646
"fileAssociations": [
4747
{
4848
"description": "Reserved",
49-
"ext": [
50-
"land"
51-
],
49+
"ext": ["land"],
5250
"mimeType": "text/plain",
5351
"name": "Reserved",
5452
"role": "Editor"
@@ -61,9 +59,30 @@
6159
"icons/icon.icns",
6260
"icons/icon.ico"
6361
],
62+
"macOS": {
63+
"dmg": {
64+
"appPosition": {
65+
"x": 0,
66+
"y": 0
67+
},
68+
"applicationFolderPosition": {
69+
"x": 0,
70+
"y": 0
71+
},
72+
"windowSize": {
73+
"height": 600,
74+
"width": 800
75+
}
76+
},
77+
"entitlements": "./Entitlements.plist",
78+
"files": {},
79+
"hardenedRuntime": true,
80+
"minimumSystemVersion": "10.0"
81+
},
82+
"publisher": "Land",
6483
"targets": "all"
6584
},
66-
"identifier": "mountain.editor.land",
85+
"identifier": "land.editor.application",
6786
"productName": "Mountain",
6887
"version": "0.0.1"
69-
}
88+
}

tauri.conf.prod.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@
191191
}
192192
]
193193
},
194-
"identifier": "mountain.editor.land",
194+
"identifier": "land.editor.application",
195195
"productName": "Mountain",
196196
"version": "0.0.1"
197197
}

tauri.microsoftstore.conf.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"bundle": {
3+
"windows": {
4+
"webviewInstallMode": {
5+
"type": "offlineInstaller"
6+
}
7+
}
8+
}
9+
}

0 commit comments

Comments
 (0)