File tree 4 files changed +32
-1308
lines changed
4 files changed +32
-1308
lines changed Original file line number Diff line number Diff line change 12
12
- name : install dependencies
13
13
run : npm install
14
14
- name : build
15
- run : npm run build
15
+ run : npm run make
16
16
17
17
build_on_mac :
18
18
runs-on : macos-latest
24
24
- name : install dependencies
25
25
run : npm install
26
26
- name : build
27
- run : npm run build
27
+ run : npm run make
28
28
29
29
build_on_win :
30
30
runs-on : windows-latest
36
36
- name : install dependencies
37
37
run : npm install
38
38
- name : build
39
- run : npm run build
39
+ run : npm run make
Original file line number Diff line number Diff line change @@ -2,36 +2,36 @@ module.exports = {
2
2
packagerConfig : {
3
3
asar : true ,
4
4
executableName : "proxy-manager" ,
5
- icon : "./public/icons/icon_512 " ,
5
+ icon : "./public/icons/icon_256 " ,
6
6
} ,
7
7
rebuildConfig : { } ,
8
8
makers : [
9
9
{
10
10
name : "@electron-forge/maker-squirrel" ,
11
11
config : {
12
- icon : "./public/icons/win/icon_512 .ico" ,
12
+ icon : "./public/icons/icon_256 .ico" ,
13
13
} ,
14
14
} ,
15
15
{
16
16
name : "@electron-forge/maker-zip" ,
17
17
platforms : [ "darwin" ] ,
18
18
config : {
19
- icon : "./public/icons/mac/icon_512 .icns" ,
19
+ icon : "./public/icons/icon_256 .icns" ,
20
20
} ,
21
21
} ,
22
22
{
23
23
name : "@electron-forge/maker-deb" ,
24
24
config : {
25
25
options : {
26
- icon : "./public/icons/linux/icon_512 .ico" ,
26
+ icon : "./public/icons/icon_256 .ico" ,
27
27
} ,
28
28
} ,
29
29
} ,
30
30
{
31
31
name : "@electron-forge/maker-rpm" ,
32
32
config : {
33
33
options : {
34
- icon : "./public/icons/linux/icon_512 .ico" ,
34
+ icon : "./public/icons/icon_256 .ico" ,
35
35
} ,
36
36
} ,
37
37
} ,
You can’t perform that action at this time.
0 commit comments