Skip to content

Commit

Permalink
Merge pull request #11 from spdermn02/minorBugFix-ReconnectTiming
Browse files Browse the repository at this point in the history
Minor bug fix reconnect timing
  • Loading branch information
spdermn02 authored Jan 22, 2021
2 parents 02bbde3 + 4399817 commit aa0eb71
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 6 deletions.
Binary file modified Installers/TPDiscord-Mac.tpp
Binary file not shown.
Binary file modified Installers/TPDiscord-Win.tpp
Binary file not shown.
2 changes: 1 addition & 1 deletion base/Mac/TPDiscord/entry.tp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"sdk": 2,
"version": 3,
"TPDiscord_Version":"3.0.0",
"TPDiscord_Version":"3.0.2",
"name": "Touch Portal Discord Plugin",
"id": "TPDiscord",
"plugin_start_cmd": "sh %TP_PLUGIN_FOLDER%TPDiscord/start_tpdiscord.sh",
Expand Down
Binary file modified base/Mac/TPDiscord/tpdiscord
Binary file not shown.
2 changes: 1 addition & 1 deletion base/Win/TPDiscord/entry.tp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"sdk": 2,
"version": 3,
"TPDiscord_Version":"3.0.0",
"TPDiscord_Version":"3.0.2",
"name": "Touch Portal Discord Plugin",
"id": "TPDiscord",
"plugin_start_cmd": "\"%TP_PLUGIN_FOLDER%TPDiscord\\tpdiscord.exe\"",
Expand Down
Binary file modified base/Win/TPDiscord/tpdiscord.exe
Binary file not shown.
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.

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
{
"name": "tpdiscord",
"version": "3.0.0",
"version": "3.0.2",
"description": "Touch Portal Plugin for Discord using RPC",
"bin": "src/index.js",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"pkg": "pkg .",
"pkg-win": "pkg --targets node12-win-x64 .",
"pkg-mac": "pkg --targets node12-macos-x64 ."
"pkg-mac": "pkg --targets node12-macos-x64 .",
"build-win": "pkg --targets node12-win-x64 . && move tpdiscord.exe base/Win/TPDiscord/ && del Installers\\TPDiscord-Win.tpp && cd base\\Win && 7z a -tzip ../../Installers/TPDiscord-Win.tpp TPDiscord",
"build-mac": "pkg --targets node12-macos-x64 . && move tpdiscord base/Mac/TPDiscord/ && del Installers\\TPDiscord-Mac.tpp && cd base\\Mac && 7z a -tzip ../../Installers/TPDiscord-Mac.tpp TPDiscord"
},
"author": "Jameson Allen aka Spdermn02",
"license": "ISC",
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ var waitForLogin = () =>
connecting = false;
r();
} else {
setTimeout(check, 1000);
setTimeout(check, 5000);
}
}
};
Expand Down

0 comments on commit aa0eb71

Please sign in to comment.