-
-
Notifications
You must be signed in to change notification settings - Fork 139
/
tauri.conf.json
111 lines (111 loc) · 2.78 KB
/
tauri.conf.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"$schema": "node_modules/@tauri-apps/cli/config.schema.json",
"productName": "Seelen UI",
"identifier": "com.seelen.seelen-ui",
"version": "package.json",
"app": {
"security": {
"assetProtocol": {
"enable": true,
"scope": [
"$RESOURCE/**/*",
"$TEMP/**/*",
"$DATA/**/*",
"**/*.jpg",
"**/*.jpeg",
"**/*.png",
"**/*.webp",
"**/*.gif",
"**/*.mp4",
"**/*.mkv",
"**/*.wav"
]
}
}
},
"build": {
"beforeDevCommand": "npm run build:ui -- --serve",
"beforeBuildCommand": "npm run build:ui -- --production",
"devUrl": "http://localhost:3579",
"frontendDist": "dist",
"features": []
},
"bundle": {
"active": true,
"createUpdaterArtifacts": true,
"publisher": "Seelen",
"category": "Utility",
"copyright": "Copyright © 2024",
"shortDescription": "Seelen UI",
"longDescription": "Seelen UI Fully Customizable Desktop Environment for Windows",
"licenseFile": "LICENSE",
"homepage": "https://github.com/eythaann/Seelen-UI",
"resources": [
"static/**/*"
],
"targets": [
"nsis"
],
"icon": [
"static/icons/icon.ico"
],
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"nsis": {
"installerIcon": "static/icons/icon.ico",
"sidebarImage": "static/icons/banner.bmp",
"template": "templates/installer.nsi",
"installerHooks": "templates/installer-hooks.nsh",
"installMode": "perMachine",
"startMenuFolder": "Seelen",
"displayLanguageSelector": true,
"languages": [
"arabic",
"bulgarian",
"dutch",
"english",
"german",
"japanese",
"korean",
"portuguesebr",
"russian",
"tradchinese",
"simpchinese",
"french",
"spanish",
"turkish",
"swedish"
]
}
},
"fileAssociations": [
{
"ext": [
".slu"
],
"name": "seelen-ui.file",
"description": "Seelen UI File",
"mimeType": "text/plain",
"role": "Viewer"
}
]
},
"plugins": {
"updater": {
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDQ4QjU1RUI0NEM0NzBERUIKUldUckRVZE10RjYxU0lpaERvdklYL05DVlg0Sk9EVngvaEgzZjMvU1NNemJTZXZ1K0dNVXU3ZkQK",
"endpoints": [
"https://github.com/eythaann/Seelen-UI/releases/latest/download/latest.json",
"https://github.com/eythaann/Seelen-UI/releases/download/nightly/latest.json"
]
},
"deep-link": {
"mobile": [],
"desktop": {
"schemes": [
"seelen-ui.uri"
]
}
}
}
}