File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " electron-ssr" ,
3
- "version" : " 0.3.0-alpha.3 " ,
3
+ "version" : " 0.3.0-alpha.4 " ,
4
4
"description" : " Cross platform ShadowsocksR GUI client built with electron" ,
5
5
"author" : {
6
6
"name" : " The Electron-SSR Authors" ,
Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ async function generateMenus (appConfig) {
72
72
handler . toggleProxy ( appConfig . sysProxyMode )
73
73
}
74
74
} ,
75
+ { label : $t ( 'MENU_SUB_COPY_HTTP_PROXY' ) , click : handler . copyHttpProxyCode } ,
75
76
{
76
77
label : $t ( 'MENU_PAC' ) ,
77
78
submenu : [
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import logger from './logger'
4
4
import {
5
5
createProtocol
6
6
} from 'vue-cli-plugin-electron-builder/lib'
7
- import { isLinux } from '@/shared/env'
8
7
9
8
let mainWindow
10
9
let readyPromise
@@ -19,7 +18,7 @@ export function createWindow () {
19
18
resizable : false ,
20
19
minimizable : false ,
21
20
maximizable : false ,
22
- show : isLinux ,
21
+ show : false ,
23
22
webPreferences : { webSecurity : process . env . NODE_ENV === 'production' , nodeIntegration : true }
24
23
} )
25
24
if ( process . platform === 'darwin' ) { app . dock . show ( ) }
You can’t perform that action at this time.
0 commit comments