Skip to content

Commit

Permalink
sync port back to 2999
Browse files Browse the repository at this point in the history
  • Loading branch information
Knkajfw committed Sep 29, 2020
1 parent 73bf137 commit aeffe09
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion assets/js/renderer.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const { ipcRenderer, shell } = require('electron');
const qrcode = require('qrcode');
const pldVersion = 145;
const pldVersion = 146;

var canvas = document.getElementById('canvas');
var referLink = '';
Expand Down
10 changes: 5 additions & 5 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ function typeit() {
}

function getActivePlayerName(mobileClientId) {
const getActivePlayerNameReq = net.request('https://127.0.0.1:8291/liveclientdata/activeplayername');
const getActivePlayerNameReq = net.request('https://127.0.0.1:2999/liveclientdata/activeplayername');
getActivePlayerNameReq.on('error', (error) => {
console.error('getActivePlayerNameErr', error.message);
})
Expand All @@ -128,7 +128,7 @@ function getActivePlayerName(mobileClientId) {
}

function getActivePlayerNameForLv(mobileClientId) {
const getActivePlayerNameForLvReq = net.request('https://127.0.0.1:8291/liveclientdata/activeplayername');
const getActivePlayerNameForLvReq = net.request('https://127.0.0.1:2999/liveclientdata/activeplayername');
getActivePlayerNameForLvReq.on('error', (error) => {
console.error('getActivePlayerNameForLvReqErr', error.message);
})
Expand All @@ -142,7 +142,7 @@ function getActivePlayerNameForLv(mobileClientId) {
}

function requestPlayerList(mobileClientId) {
const playerListReq = net.request('https://127.0.0.1:8291/liveclientdata/playerlist');
const playerListReq = net.request('https://127.0.0.1:2999/liveclientdata/playerlist');
playerListReq.on('error', (error) => {
console.error('playerListReqErr:', error.message);
})
Expand All @@ -168,7 +168,7 @@ function requestPlayerList(mobileClientId) {
}

function requestPlayerListForLv(mobileClientId) {
const playerListForLvReq = net.request('https://127.0.0.1:8291/liveclientdata/playerlist');
const playerListForLvReq = net.request('https://127.0.0.1:2999/liveclientdata/playerlist');
playerListForLvReq.on('error', (error) => {
console.error('playerListForLvReqErr:', error.message);
})
Expand Down Expand Up @@ -250,7 +250,7 @@ function trimSummonerSpells() {
}

function getGameTime() {
const gtimereq = net.request('https://127.0.0.1:8291/liveclientdata/gamestats');
const gtimereq = net.request('https://127.0.0.1:2999/liveclientdata/gamestats');
gtimereq.on('error', (error) => {
console.error('getGameTimeReqErr', error.message);
})
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pastelikedoinb",
"version": "2.0.4",
"version": "2.0.5",
"description": "An app that generates and auto-type LOL flash tracking messages",
"main": "main.js",
"scripts": {
Expand Down

0 comments on commit aeffe09

Please sign in to comment.