add editing status
This commit is contained in:
parent
586857146c
commit
78c554be2d
20
app.js
20
app.js
|
@ -40,7 +40,10 @@ const run = () => {
|
||||||
const splitArray = [components.shift(), components.join(' - ')];
|
const splitArray = [components.shift(), components.join(' - ')];
|
||||||
rpcOsuVersion = splitArray[0];
|
rpcOsuVersion = splitArray[0];
|
||||||
currentMap = splitArray[1];
|
currentMap = splitArray[1];
|
||||||
rpc.updateState("Playing...");
|
if(currentMap.endsWith(".osu")){
|
||||||
|
rpc.updateState("Editing...");
|
||||||
|
currentMap = currentMap.substring(0, currentMap.length - 4);
|
||||||
|
} else rpc.updateState("Playing...");
|
||||||
}
|
}
|
||||||
|
|
||||||
rpc.updateStatus(currentMap, rpcOsuVersion);
|
rpc.updateStatus(currentMap, rpcOsuVersion);
|
||||||
|
@ -79,7 +82,11 @@ const run = () => {
|
||||||
const splitArray = [components.shift(), components.join(' - ')];
|
const splitArray = [components.shift(), components.join(' - ')];
|
||||||
rpcOsuVersion = splitArray[0];
|
rpcOsuVersion = splitArray[0];
|
||||||
currentMap = splitArray[1];
|
currentMap = splitArray[1];
|
||||||
rpc.updateState("Playing...");
|
if(currentMap.endsWith(".osu")){
|
||||||
|
rpc.updateState("Editing...");
|
||||||
|
currentMap = currentMap.substring(0, currentMap.length - 4);
|
||||||
|
}
|
||||||
|
else rpc.updateState("Playing...");
|
||||||
}
|
}
|
||||||
|
|
||||||
rpc.updateStatus(currentMap, rpcOsuVersion);
|
rpc.updateStatus(currentMap, rpcOsuVersion);
|
||||||
|
@ -112,6 +119,15 @@ const run = () => {
|
||||||
await tryLogin(mainWindow);
|
await tryLogin(mainWindow);
|
||||||
await doUpdateCheck(mainWindow);
|
await doUpdateCheck(mainWindow);
|
||||||
if (platform === "linux") {
|
if (platform === "linux") {
|
||||||
|
try{
|
||||||
|
await terminalUtil.execCommand(`osu-stable -h`);
|
||||||
|
}catch(err){
|
||||||
|
mainWindow.webContents.send('status_update', {
|
||||||
|
type: "package-issue",
|
||||||
|
message: "Seems like you dont have the osu AUR Package installed, please install it."
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
/* mainWindow.webContents.send('status_update', {
|
/* mainWindow.webContents.send('status_update', {
|
||||||
type: "info",
|
type: "info",
|
||||||
message: "We detected that you are running the Launcher under Linux. It's currently just compatible with Arch and the osu AUR package!"
|
message: "We detected that you are running the Launcher under Linux. It's currently just compatible with Arch and the osu AUR package!"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user