-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# 1.06.2409140-3 / 2024-11-16 | ||
|
||
- fix: 多开实例会出现卡死的情况 | ||
|
||
# 1.06.2409140-2 / 2024-11-15 | ||
|
||
- perf: 不对Skyline插件进行初始化(不会弹窗) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
(() => { | ||
const http = require('http') | ||
const originaleListen = http.Server.prototype.listen | ||
http.Server.prototype.listen = function(port) { | ||
if (port == 33233) { | ||
console.warn('block port of http server:', port) | ||
return | ||
} | ||
return originaleListen.apply(this, [port]) | ||
} | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters