-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
234 lines (223 loc) · 6.49 KB
/
index.js
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
const electron = require('electron');
const { app, BrowserWindow, Menu } = electron;
const fs = require('fs')
let window;
app.on('ready', () => {
window = new BrowserWindow({
icon: './assets/img/brightcore.png',
webPreferences: {
contextIsolation: false,
enableRemoteModule: true,
nodeIntegration: true
}
});
//window.webContents.openDevTools();
//window.webContents.setVisualZoomLevelLimits(1, 3).then(); //not working? idk
window.webContents.setUserAgent('Fortnite/++Fortnite+Release-16.40-CL-16227914');
window.loadURL('file://'+__dirname+'/index.html').then();
const mainMenu = Menu.buildFromTemplate(menu);
Menu.setApplicationMenu(mainMenu);
});
function addAccountWindow(){
let addWindow = new BrowserWindow({
width: 300,
height: 200,
modal: true,
parent: window,
title: 'Add Account',
icon: './assets/img/brightcore.png',
webPreferences: {
contextIsolation: false,
enableRemoteModule: true,
nodeIntegration: true
}
});
//addWindow.webContents.openDevTools();
addWindow.loadURL('file://'+__dirname+'/menu/account/addAccount.html').then();
//addWindow.loadURL('file://'+__dirname+'/menu/account/authLogin.html').then(); //Use when device code doesn't work
addWindow.removeMenu();
}
function authCodeWindow(){ //Comment this out if Device Code doesn't work
let authWindow = new BrowserWindow({
width: 300,
height: 200,
modal: true,
parent: window,
title: 'Add Account',
icon: './assets/img/brightcore.png',
webPreferences: {
contextIsolation: false,
enableRemoteModule: true,
nodeIntegration: true
}
});
authWindow.loadURL('file://'+__dirname+'/menu/account/authLogin.html').then();
authWindow.removeMenu();
}
function convertAccountsWindow(){
let convertWindow = new BrowserWindow({
width: 300,
height: 200,
modal: true,
parent: window,
title: 'Convert Accounts',
icon: './assets/img/brightcore.png',
webPreferences: {
contextIsolation: false,
enableRemoteModule: true,
nodeIntegration: true
}
});
//convertWindow.webContents.openDevTools();
convertWindow.loadURL('file://'+__dirname+'/menu/account/convertOld.html').then();
convertWindow.removeMenu();
}
function removeAccWindow(){
let rmWindow = new BrowserWindow({
width: 300,
height: 200,
modal: true,
parent: window,
title: 'Remove Account',
icon: './assets/img/brightcore.png',
webPreferences: {
contextIsolation: false,
enableRemoteModule: true,
nodeIntegration: true
}
});
//rmWindow.webContents.openDevTools();
rmWindow.loadURL('file://'+__dirname+'/menu/account/rmAccount.html').then();
rmWindow.removeMenu();
}
function setPathWindow(){
let pathWindow = new BrowserWindow({
width: 350,
height: 233,
modal: true,
parent: window,
title: 'Set Path',
icon: './assets/img/brightcore.png',
webPreferences: {
contextIsolation: false,
enableRemoteModule: true,
nodeIntegration: true
}
});
pathWindow.loadURL('file://'+__dirname+'/menu/settings/setPath.html').then();
pathWindow.removeMenu();
}
function creditsWindow(){
let credWindow = new BrowserWindow({
width: 350,
height: 350,
modal: true,
parent: window,
title: 'Potato Launcher Credits',
icon: './assets/img/brightcore.png',
webPreferences: {
contextIsolation: false,
enableRemoteModule: true,
nodeIntegration: true
}
});
credWindow.loadURL('file://'+__dirname+'/menu/credits/index.html').then();
credWindow.removeMenu();
}
function devLoginWindow(){
let loginWindow = new BrowserWindow({
width: 350,
height: 350,
modal: true,
parent: window,
title: 'Device Auth Login',
icon: './assets/img/brightcore.png',
webPreferences: {
contextIsolation: false,
enableRemoteModule: true,
nodeIntegration: true
}
});
loginWindow.loadURL('file://'+__dirname+'/menu/account/devLogin.html').then();
loginWindow.removeMenu();
}
function xchLoginWindow(){
let accounts = JSON.parse(fs.readFileSync(process.env.appdata+'/a.bakedpotato/fnappv2/accounts.json').toString());
fs.writeFileSync('C:\\Users\\Noah\\Desktop\\shitfile1.txt', JSON.stringify(accounts));
let loginWindow = new BrowserWindow({
width: 350,
height: 233,
modal: true,
parent: window,
title: 'Exchange Code Login',
icon: './assets/img/brightcore.png',
webPreferences: {
contextIsolation: false,
enableRemoteModule: true,
nodeIntegration: true
}
});
//loginWindow.webContents.openDevTools();
loginWindow.loadURL('file://'+__dirname+'/menu/account/xchLogin.html').then();
loginWindow.removeMenu();
}
const menu = [
{
label: 'Accounts',
submenu: [
{
label: 'Add Account',
click(){
addAccountWindow();
}
},
{
label: 'Authorization Code Login',
click(){
authCodeWindow();
}
},
{
label: 'Convert v1 Accounts',
click(){
convertAccountsWindow();
}
},
{
label: 'Device Auth Login',
click(){
devLoginWindow();
}
},
{
label: 'Exchange Code Login',
click(){
xchLoginWindow();
}
},
{
label: 'Remove Account',
click(){
removeAccWindow();
}
}
]
},
{
label: 'Credits',
click(){
creditsWindow();
}
},
{
label: 'Settings',
submenu: [
{
label: 'Set Path',
click() {
setPathWindow();
}
}
]
}
]