-
Notifications
You must be signed in to change notification settings - Fork 54
/
electron-builder.yml
90 lines (71 loc) · 1.81 KB
/
electron-builder.yml
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
appId: 'org.devlive.dbm'
artifactName: ${name}-${version}-${os}-${arch}.${ext}
productName: 'dbm'
publish: {
provider: github,
releaseType: draft,
vPrefixedTagName: true
}
forceCodeSigning: false
releaseInfo:
releaseNotes: |
#### General
---
- Fix CI for windows compile
- Removed publish test ci
#### Object Design (Beta)
---
- Add the metadata management (database management) layout
- Add the metadata management (table management) layout
- Support metadata management (database) responsiveness
- Support metadata management create table
- Refactor the beta function layout
- Fix the data source operation type
- Refactor the table style
- Refactor object designer layout
- Support delete table
- Support delete table
- Support delete table
- Support for adding columns to a specified location
- Support table data custom view columns
- Support column display control
directories:
output: ./release
files:
# - '**/*'
- '!**/*.ts'
- '!scripts'
- '!src'
- '!node_modules'
- '!docs'
- '!release'
- '!.github'
- '!.vscode'
- 'dist'
compression: normal
asar: false
mac:
icon: ./src/shared/assets/icons
# category: public.app-category.productivity
# darkModeSupport: true
# target:
# - { target: dmg }
dmg:
icon: ./src/shared/assets/icons
iconSize: 128
contents:
- { x: 380, y: 240, type: link, path: /Applications }
- { x: 122, y: 240, type: file }
linux:
icon: ./src/shared/assets/icons/favicon.png
target:
- { target: AppImage }
win:
artifactName: ${name}-${version}-windows-${arch}.${ext}
icon: ./src/shared/assets/icons/favicon.ico
target:
- { target: nsis }
nsis:
artifactName: ${name}-${version}-windows-${arch}-nsis-installer.${ext}
oneClick: false
perMachine: false