Skip to content

Commit ac95443

Browse files
committed
Fix: add tauri.conf.json to git (was ignored by *.json)
1 parent 47b3bbe commit ac95443

3 files changed

Lines changed: 44 additions & 7 deletions

File tree

.github/workflows/tauri-release.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,6 @@ jobs:
3939
- name: Install Tauri CLI
4040
run: cargo install tauri-cli --version "^2.0.0" --locked
4141

42-
- name: Debug files
43-
run: |
44-
pwd
45-
ls -la
46-
ls -la src-tauri/ || echo "src-tauri not found"
47-
cat src-tauri/tauri.conf.json || echo "tauri.conf.json not found"
48-
4942
- name: Build Tauri app
5043
run: cargo tauri build
5144

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ kjvstudy_org/interlinear_data.py
1616
kjvstudy_org/verse_collections.py
1717
*.backup
1818
*.json
19+
!src-tauri/tauri.conf.json
1920
.coverage
2021

2122
# Desktop app build artifacts

src-tauri/tauri.conf.json

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
"$schema": "https://schema.tauri.app/config/2",
3+
"productName": "KJV Study",
4+
"version": "0.1.0",
5+
"identifier": "org.kjvstudy.desktop",
6+
"build": {
7+
"beforeBuildCommand": "",
8+
"beforeDevCommand": ""
9+
},
10+
"app": {
11+
"withGlobalTauri": false,
12+
"windows": [],
13+
"security": {
14+
"csp": null
15+
}
16+
},
17+
"bundle": {
18+
"active": true,
19+
"targets": ["dmg", "app"],
20+
"icon": [
21+
"icons/32x32.png",
22+
"icons/128x128.png",
23+
"icons/128x128@2x.png",
24+
"icons/icon.icns",
25+
"icons/icon.ico"
26+
],
27+
"resources": ["../dist/kjvstudy-server"],
28+
"category": "Education",
29+
"shortDescription": "Offline KJV Bible Study Application",
30+
"longDescription": "A comprehensive offline Bible study application featuring the 1769 Cambridge King James Version with commentary, cross-references, interlinear Hebrew/Greek analysis, Strong's concordance, and more.",
31+
"macOS": {
32+
"minimumSystemVersion": "10.15",
33+
"frameworks": [],
34+
"entitlements": null,
35+
"signingIdentity": null
36+
}
37+
},
38+
"plugins": {
39+
"shell": {
40+
"open": true
41+
}
42+
}
43+
}

0 commit comments

Comments
 (0)