Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"items/items.se.json": "2b5b1f4219c050d485cb33ef7f1a3d354d09eb5159267c0960a85cd1ddb0d278",
"items/items.th.json": "bf9396b2a04b4fa201f1ef074fedaad02e67b2acc14b8e4945f029ab9e37ec11",
"items/items.tw.json": "a9275fa3ee673fbca47c45bac6d7ccc50cecc9f35df4c89c21d81b0d4df6507e",
"module.json": "f34cfc0fbabd0e8de9856d30224c29012f7cfff9f500fb32b2bbcf1cf90536c8",
"module.json": "c21aaa9f6de82b6e2de2e80c5d3f0431cc838aa8715f42bf01d6c048b4ab9548",
"mounts/mounts.eu.json": "3a5806f7bfcb26699fee9cac40e8a5f205b3e3721e66dc11322fd418211dc1f1",
"mounts/mounts.jp.json": "786060b44e1573e3c19d8bedaaaeaeed5a6e5120f2ad294fbded09d61c6f941b",
"mounts/mounts.kr.json": "a91434ee19ee105291e6da994e0de24886928dfe9cacc3e67d7a45069a4d2fb2",
Expand All @@ -20,13 +20,15 @@
"mounts/mounts.se.json": "e49219fdeb33966b40b6518a8bcb9b9404fc81a5aff59cdd59e851ca7bf8b6f4",
"mounts/mounts.th.json": "336b2cafae12639440e5b8e26fd9d800451bbb7d05275341165ad8affe7b2c50",
"mounts/mounts.tw.json": "55d727e6a2f47e57cd2dcf57a94bf1cdf1e44467bbf1ec684c8472cbc4d1404a",
"mouse.js": "7d8b679cb30f45573e157b1bcb4efd557019d65b6474d1b61961af356ec4a6a7",
"mouse.js": "c3dcec4e3dedca5a6aff865c85291233196aab7df64817922efaf542e0efba94",
"mouse/64.node": "835cf41596d004ba063fcf811e84a2663899c8c58b2e911ec54b3b989d585979",
"mouse/67.node": "04a2aa706447370564a7bb0f3c9c78c6827ecbf3d07ac2c63dad6f9348023fb5",
"mouse/72.node": "ad27cb9e5d0315a91fae25e1eff509cfb6da9ef4890e9eaf33728649dd8acb11",
"mouse/79.node": "5689b343cddcfc67314204367b3a887428738d9c7bccf6e16e645e264f6e26b7",
"mouse/electron64.node": "f45d55dea556489d4326b446c88e094573560a9bddaf511c9956e965d9226190",
"mouse/electron70.node": "a5bcde9e69646bffd9d63d9649abc2fdf2d834e3b2fdc7e1a85645014d672bcd",
"mouse/electron73.node": "5eca61d99781504dcaa89eeac1f086f17b4c2596534bc6201616be32be903aa8",
"mouse/electron76.node": "2a5598ecd6629230338ec46e23a870340621f1d23880c38f94dd01b4bd05a91a",
"presets.json": {
"overwrite": false,
"hash": "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
Expand Down
2 changes: 1 addition & 1 deletion module.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"niceName": "Cosplay",
"guiName": "Cosplayer"
},
"servers": ["https://raw.githubusercontent.com/TeraProxy/Cosplayer/master/"],
"servers": ["https://raw.githubusercontent.com/tera-tools/Cosplayer/master/"],
"supportUrl": "https://github.com/TeraProxy/Cosplayer/issues",
"dependencies": {
"tera-game-state": "https://raw.githubusercontent.com/caali-hackerman/tera-game-state/master/module.json"
Expand Down
8 changes: 7 additions & 1 deletion mouse.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ catch {

if(process.versions.electron) {
switch(process.versions.modules) {
case("73"): // Electron 6
case("76"): // Electron 8
Mouse = require('./mouse/electron76.node').Mouse
break;
case("73"): // Electron 6
Mouse = require('./mouse/electron73.node').Mouse
break;
case("70"): // Electron 5
Expand All @@ -31,6 +34,9 @@ if(process.versions.electron) {
}
else {
switch(process.versions.modules) {
case("79"): // Node.js 13
Mouse = require('./mouse/79.node').Mouse
break;
case("72"): // Node.js 12
Mouse = require('./mouse/72.node').Mouse
break;
Expand Down
Binary file added mouse/79.node
Binary file not shown.
Binary file added mouse/electron76.node
Binary file not shown.