mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-18 14:23:51 +02:00
chore(npm): update deps
This commit is contained in:
621
html/package-lock.json
generated
621
html/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -26,27 +26,28 @@
|
||||
"copy-webpack-plugin": "^10.2.4",
|
||||
"css-loader": "^6.7.1",
|
||||
"default-passive-events": "^2.0.0",
|
||||
"element-ui": "^2.15.6",
|
||||
"eslint": "^8.12.0",
|
||||
"element-ui": "^2.15.8",
|
||||
"eslint": "^8.14.0",
|
||||
"eslint-config-prettier": "^8.5.0",
|
||||
"famfamfam-flags": "^1.0.0",
|
||||
"html-webpack-plugin": "^5.5.0",
|
||||
"konami": "^1.6.3",
|
||||
"mini-css-extract-plugin": "^2.6.0",
|
||||
"normalize.css": "^8.0.1",
|
||||
"noty": "^3.2.0-beta-deprecated",
|
||||
"prettier": "^2.6.1",
|
||||
"prettier": "^2.6.2",
|
||||
"pug": "^3.0.2",
|
||||
"pug-plain-loader": "^1.1.0",
|
||||
"raw-loader": "^4.0.2",
|
||||
"sass": "^1.49.9",
|
||||
"sass": "^1.51.0",
|
||||
"sass-loader": "^12.6.0",
|
||||
"uuid": "^8.3.2",
|
||||
"vue": "^2.6.14",
|
||||
"vue-data-tables": "^3.4.5",
|
||||
"vue-lazyload": "^1.3.3",
|
||||
"vue-marquee-text-component": "^1.2.0",
|
||||
"webpack": "^5.70.0",
|
||||
"webpack": "^5.72.0",
|
||||
"webpack-cli": "^4.9.2",
|
||||
"worker-timers": "^7.0.45"
|
||||
"worker-timers": "^7.0.47"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -13,6 +13,7 @@ import locale from 'element-ui/lib/locale/lang/en';
|
||||
import {v4 as uuidv4} from 'uuid';
|
||||
import * as workerTimers from 'worker-timers';
|
||||
import 'default-passive-events';
|
||||
import Konami from 'konami';
|
||||
|
||||
import {appVersion} from './constants.js';
|
||||
import configRepository from './repository/config.js';
|
||||
@@ -78,6 +79,10 @@ speechSynthesis.getVoices();
|
||||
}
|
||||
});
|
||||
|
||||
var konamiCode = new Konami(() => {
|
||||
$app.toggleCustomEndpoint();
|
||||
});
|
||||
|
||||
VRCXStorage.GetArray = function (key) {
|
||||
try {
|
||||
var array = JSON.parse(this.Get(key));
|
||||
@@ -10725,7 +10730,7 @@ speechSynthesis.getVoices();
|
||||
};
|
||||
|
||||
$app.methods.getFriendLog = async function () {
|
||||
await database.cleanLegendFromFriendLog(); // fix dataebase spam crap
|
||||
await database.cleanLegendFromFriendLog(); // fix database spam crap
|
||||
var friendLogCurrentArray = await database.getFriendLogCurrent();
|
||||
for (var friend of friendLogCurrentArray) {
|
||||
this.friendLog.set(friend.userId, friend);
|
||||
@@ -19056,6 +19061,19 @@ speechSynthesis.getVoices();
|
||||
);
|
||||
$app.methods.toggleCustomEndpoint = function () {
|
||||
this.enableCustomEndpoint = !this.enableCustomEndpoint;
|
||||
if (this.enableCustomEndpoint) {
|
||||
this.$message({
|
||||
message:
|
||||
'Custom endpoint option enabled',
|
||||
type: 'success'
|
||||
});
|
||||
} else {
|
||||
this.$message({
|
||||
message:
|
||||
'Custom endpoint option disabled',
|
||||
type: 'success'
|
||||
});
|
||||
}
|
||||
configRepository.setBool(
|
||||
'VRCX_enableCustomEndpoint',
|
||||
this.enableCustomEndpoint
|
||||
|
||||
Reference in New Issue
Block a user