blob: 179dd824477b92ae83ac314c883877d480e8dcfc (
plain)
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
|
setInterval(() => {
try {
currentMemory = process.memoryUsage().rss;
currentMemoryMib = (((currentMemory)/1024)/1024).toFixed(2);
if ((((currentMemory)/1024)/1024) > 250) {
throw new Error("Out of memory");
}
file = webview.getURL().split("/")[webview.getURL().split("/").length - 1];
activity = lang.discord.game[0];
enableActivity = true;
eaid = "";
switch (file) {
case "game.html?online":
activity = lang.online.discord;
break;
case "game.html?sp":
activity = lang.discord.game[1];
break;
case "game.html":
activity = lang.discord.game[2];
break;
case "intro.html":
activity = lang.discord.intro[1];
break;
case "settings.html":
activity = lang.discord.settings[1];
break;
case "credits.html":
activity = lang.discord.credits[1];
break;
case "online.html":
activity = lang.online.discord2;
break;
case "menu.html":
case "win.html":
activity = lang.discord.credits[0];
break;
case "loader.html":
enableActivity = false;
break;
}
if (file.includes("online.html")) {
activity = lang.online.discord2;
}
if (enableActivity) {
eaid = " - " + activity;
} else {
eaid = "";
}
if (require('./package.json').channel === "git") {
document.getElementById('experimental-ramusage').innerText = currentMemoryMib;
document.title="Kartik Trunk " +require('./package.json').version + eaid;
} else {
if (require('./package.json').channel !== "stable") {
document.getElementById('experimental-ramusage').innerText = currentMemoryMib;
document.title="Kartik"+require('@electron/remote').getCurrentWindow().channel+require('./package.json').version + eaid;
} else {
document.title="Kartik"+require('@electron/remote').getCurrentWindow().channel+require('./package.json').version + eaid;
}
}
} catch (e) {}
}, 1000)
|