-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathmobrowser.conf.json
More file actions
73 lines (73 loc) · 1.81 KB
/
mobrowser.conf.json
File metadata and controls
73 lines (73 loc) · 1.81 KB
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
{
"app": {
"name": "Icon Maker",
"version": {
"major": "1",
"minor": "0",
"patch": "2"
},
"author": "",
"copyright": "© 2026 TeamDev. All rights reserved.",
"description": "Denerate beautiful macOS app icons in the *.icns format using AI.",
"locales": ["en-US"],
"trustedOrigins": [],
"bundle": {
"macOS": {
"icon": "assets/app.icns",
"bundleID": "com.teamdev.IconMaker",
"codesignIdentity": "${MAC_CODESIGN_IDENTITY}",
"codesignEntitlements": "assets/entitlements.plist",
"teamID": "${MAC_TEAM_ID}",
"appleID": "${MAC_APPLE_ID}",
"password": "${MAC_APPLE_PASSWORD}",
"installer": {
"dmg": {
"name": "",
"volumeName": "",
"volumeIcon": "assets/app.icns",
"eula": "",
"window": {
"textSize": 14,
"skipPrettifying": false,
"backgroundImage": "",
"position": {
"x": 500,
"y": 400
},
"size": {
"width": 600,
"height": 400
},
"icon": {
"size": 150,
"position": {
"x": 160,
"y": 160
}
},
"appDropLink": {
"x": 430,
"y": 160
}
}
}
}
},
"Windows": {
"icon": "assets/app.ico",
"signCommand": "",
"installer": {
"exe": {
"name": "",
"icon": "assets/app.ico",
"installationGif": "",
"deltaStrategy": "BestSpeed"
}
}
},
"Linux": {
"icon": "assets/app.png"
}
}
}
}