forked from scratchfoundation/scratch-desktop
-
Notifications
You must be signed in to change notification settings - Fork 4
/
electron-builder.yaml
66 lines (63 loc) · 2.16 KB
/
electron-builder.yaml
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
directories:
buildResources: buildResources
output: dist
appId: edu.mit.scratch.scratch-desktop
productName: "Scratch 3"
publish: # empty provider list = don't publish
mac:
category: public.app-category.education
entitlements: buildResources/entitlements.mac.plist
extendInfo:
ITSAppUsesNonExemptEncryption: false
NSCameraUsageDescription: >-
This app requires camera access when using the video sensing blocks.
NSMicrophoneUsageDescription: >-
This app requires microphone access when recording sounds or detecting loudness.
gatekeeperAssess: true
hardenedRuntime: true
icon: buildResources/ScratchDesktop.icns
provisioningProfile: build/AppStore_edu.mit.scratch.scratch-desktop.provisionprofile
artifactName: "Scratch ${version}.${ext}"
target:
- dmg
- mas
dmg:
title: "Scratch ${version}"
mas:
category: public.app-category.education
entitlements: buildResources/entitlements.mas.plist
entitlementsInherit: buildResources/entitlements.mas.inherit.plist
hardenedRuntime: false
icon: buildResources/ScratchDesktop.icns
masDev:
type: development
provisioningProfile: build/Development_edu.mit.scratch.scratch-desktop.provisionprofile
win:
icon: buildResources/ScratchDesktop.ico
target:
- appx
- nsis
appx:
identityName: ScratchFoundation.ScratchDesktop
publisherDisplayName: "Scratch Foundation"
publisher: "CN=2EC43DF1-469A-4119-9AB9-568A0A1FF65F"
artifactName: "Scratch ${version} ${arch}.${ext}"
nsis:
oneClick: false # allow user to choose per-user or per-machine
artifactName: "Scratch ${version} Setup.${ext}"
linux:
category: public.app-category.education
icon: buildResources/ScratchDesktop.icns
target:
- deb
deb:
packageName: scratch3
maintainer: "RPF Digital Team <[email protected]>"
category: Application;Development;
packageCategory: x11
depends: ["libnotify4", "libappindicator1", "libxtst6", "libnss3"]
priority: extra
description: Electron build of Scratch 3 offline
Scratch 3.0 is the third and current major version of Scratch. Released on
January 2, 2019, it's a complete redesign and reimplementation of Scratch
written in HTML5 and JavaScript.