Compare commits
14 Commits
f06e63f7f8
...
2.1.5
Author | SHA1 | Date | |
---|---|---|---|
6ccc285c61 | |||
a72ae1df5f | |||
9fbab69206 | |||
ecf329dd69 | |||
4e79809c19 | |||
2bb4a86df3 | |||
144d1bb86a | |||
c3f0882951 | |||
4c33323e9e | |||
eb166c0165 | |||
6bca0b32a9 | |||
401be3c977 | |||
d2d2a618c5 | |||
fc6ec3bd69 |
@@ -1,4 +1,4 @@
|
||||
const appName = "EZPPLauncher";
|
||||
const appVersion = "2.1.4";
|
||||
const appVersion = "2.1.5";
|
||||
|
||||
module.exports = { appName, appVersion };
|
||||
|
5
main.js
5
main.js
@@ -116,7 +116,7 @@ function startOsuStatus() {
|
||||
const windowTitle = firstInstance.processTitle;
|
||||
lastOsuStatus = windowTitle;
|
||||
const currentStatusRequest = await fetch(
|
||||
"https://api.ez-pp.farm/get_player_status?name=" + currentUser.username,
|
||||
"https://api.ez-pp.farm/v1/get_player_status?name=" + currentUser.username,
|
||||
);
|
||||
const currentStatus = await currentStatusRequest.json();
|
||||
|
||||
@@ -127,8 +127,7 @@ function startOsuStatus() {
|
||||
const currentModeString = gamemodes[currentMode];
|
||||
|
||||
const currentInfoRequest = await fetch(
|
||||
"https://api.ez-pp.farm/get_player_info?name=" + currentUser.username +
|
||||
"&scope=all",
|
||||
"https://api.ez-pp.farm/v1/get_player_info?name=" + currentUser.username + "&scope=all",
|
||||
);
|
||||
const currentInfo = await currentInfoRequest.json();
|
||||
let currentUsername = currentInfo.player.info.name;
|
||||
|
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "ezpplauncher-next",
|
||||
"version": "2.1.4",
|
||||
"version": "2.1.5",
|
||||
"description": "EZPPLauncher rewritten with Svelte.",
|
||||
"private": false,
|
||||
"license": "MIT",
|
||||
|
Reference in New Issue
Block a user