anshdadhich commited on
Commit
6b3d6e4
·
verified ·
1 Parent(s): c17dcf7

Upload fastsearch-tauri/src-tauri/tauri.conf.json

Browse files
fastsearch-tauri/src-tauri/tauri.conf.json CHANGED
@@ -1,89 +1,56 @@
1
  {
 
 
 
 
2
  "build": {
3
- "beforeBuildCommand": "",
 
4
  "beforeDevCommand": "",
5
- "devPath": "../ui",
6
- "distDir": "../ui",
7
- "withGlobalTauri": true
8
  },
9
- "tauri": {
10
- "allowlist": {
11
- "all": false,
12
- "shell": {
13
- "all": false,
14
- "open": true
15
- },
16
- "window": {
17
- "all": false,
18
- "create": true,
19
- "center": true,
20
- "requestUserAttention": true,
21
- "setFocus": true,
22
- "setPosition": true,
23
- "setSize": true,
24
- "setAlwaysOnTop": true,
25
- "show": true,
26
- "hide": true,
27
- "close": true,
28
- "startDragging": true
29
- }
30
- },
31
- "bundle": {
32
- "active": true,
33
- "category": "DeveloperTool",
34
- "copyright": "",
35
- "deb": {
36
- "depends": []
37
- },
38
- "externalBin": [],
39
- "icon": [
40
- "icons/32x32.png",
41
- "icons/128x128.png",
42
- "icons/128x128@2x.png",
43
- "icons/icon.ico"
44
- ],
45
- "identifier": "com.fastseek.app",
46
- "longDescription": "",
47
- "macOS": {
48
- "entitlements": null,
49
- "exceptionDomain": "",
50
- "frameworks": [],
51
- "providerShortName": null,
52
- "signingIdentity": null
53
- },
54
- "resources": [],
55
- "shortDescription": "",
56
- "targets": "all",
57
- "windows": {
58
- "certificateThumbprint": null,
59
- "digestAlgorithm": "sha256",
60
- "timestampUrl": ""
61
- }
62
  },
63
  "security": {
64
- "csp": null
65
- },
66
- "updater": {
67
- "active": false
68
- },
69
- "systemTray": {
70
- "iconPath": "icons/icon.png",
71
- "iconAsTemplate": true
72
  },
73
  "windows": [
74
  {
75
- "fullscreen": false,
76
- "height": 520,
77
- "resizable": false,
78
  "title": "FastSeek",
79
  "width": 800,
 
 
80
  "decorations": false,
81
  "transparent": true,
82
  "alwaysOnTop": true,
83
  "skipTaskbar": true,
84
  "visible": false,
85
- "center": true
 
86
  }
87
  ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  }
89
  }
 
1
  {
2
+ "productName": "FastSeek",
3
+ "version": "0.1.0",
4
+ "identifier": "com.fastseek.app",
5
+ "mainBinaryName": "FastSeek",
6
  "build": {
7
+ "frontendDist": "../ui",
8
+ "devUrl": "../ui",
9
  "beforeDevCommand": "",
10
+ "beforeBuildCommand": ""
 
 
11
  },
12
+ "app": {
13
+ "trayIcon": {
14
+ "iconPath": "icons/icon.png",
15
+ "iconAsTemplate": true,
16
+ "menuOnLeftClick": false
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  },
18
  "security": {
19
+ "csp": null,
20
+ "capabilities": ["main"]
 
 
 
 
 
 
21
  },
22
  "windows": [
23
  {
24
+ "label": "main",
 
 
25
  "title": "FastSeek",
26
  "width": 800,
27
+ "height": 520,
28
+ "resizable": false,
29
  "decorations": false,
30
  "transparent": true,
31
  "alwaysOnTop": true,
32
  "skipTaskbar": true,
33
  "visible": false,
34
+ "center": true,
35
+ "focus": true
36
  }
37
  ]
38
+ },
39
+ "bundle": {
40
+ "active": true,
41
+ "category": "DeveloperTool",
42
+ "copyright": "",
43
+ "icon": [
44
+ "icons/32x32.png",
45
+ "icons/128x128.png",
46
+ "icons/128x128@2x.png",
47
+ "icons/icon.ico"
48
+ ],
49
+ "targets": ["msi", "nsis"],
50
+ "windows": {
51
+ "certificateThumbprint": null,
52
+ "digestAlgorithm": "sha256",
53
+ "timestampUrl": ""
54
+ }
55
  }
56
  }