Add IPData, Windows support, bugfixes (#2)
* Add IPData, Windows support, bugfixes Changes: - Added IPData: mutes and votes are now tracked per-IP instead of per-user. - Windows support: QMP over TCP can now be enabled in the config. - Vote cooldown can now be specified in the config. - Fixed bugs: "Username is already taken" message appearing when it shouldn't * Remove vote from closed connections --------- Co-authored-by: Elijah R <62162399+elijahr2411@users.noreply.github.com>
This commit is contained in:
@@ -9,7 +9,9 @@ export default interface IConfig {
|
||||
qemuArgs : string;
|
||||
vncPort : number;
|
||||
snapshots : boolean;
|
||||
qmpSockDir : string;
|
||||
qmpHost : string | null;
|
||||
qmpPort : number | null;
|
||||
qmpSockDir : string | null;
|
||||
};
|
||||
collabvm : {
|
||||
node : string;
|
||||
@@ -27,6 +29,7 @@ export default interface IConfig {
|
||||
tempMuteTime : number;
|
||||
turnTime : number;
|
||||
voteTime : number;
|
||||
voteCooldown: number;
|
||||
adminpass : string;
|
||||
modpass : string;
|
||||
moderatorPermissions : Permissions;
|
||||
|
||||
Reference in New Issue
Block a user