This commit is contained in:
Natsumi
2021-09-17 21:30:35 +12:00
parent db00248c1d
commit e39491a6c4
2 changed files with 17 additions and 8 deletions

View File

@@ -4332,9 +4332,8 @@ speechSynthesis.getVoices();
return;
}
if (noty.type === 'VideoPlay') {
if (!noty.videoName || noty.videoUrl === this.nowPlaying.url) {
if (!noty.videoName) {
// skip video without name
// skip video already playing
return;
}
noty.notyName = noty.videoName;
@@ -7252,6 +7251,8 @@ speechSynthesis.getVoices();
var length = this.gameLogTable.data.length;
if (length > 1) {
this.updateGameLog(this.gameLogTable.data[length - 1].created_at);
} else {
this.refreshEntireGameLog();
}
};
@@ -14053,32 +14054,40 @@ speechSynthesis.getVoices();
$app.data.VRChatConfigList = {
cache_size: {
name: 'Max Cache Size [GB] (minimum 20)',
name: 'Max Cache Size [GB] (min 20)',
default: '20',
type: 'number',
min: 20
},
cache_expiry_delay: {
name: 'Cache Expiry [Days] (minimum 30)',
name: 'Cache Expiry [Days] (30 - 150)',
default: '30',
type: 'number',
min: 30
min: 30,
max: 150
},
cache_directory: {
name: 'Custom Cache Folder Location',
default: '%AppData%\\..\\LocalLow\\VRChat\\vrchat'
},
dynamic_bone_max_affected_transform_count: {
name: 'Dynamic Bones Limit Max Transforms (0 always disable transforms)',
name: 'Dynamic Bones Limit Max Transforms (0 disable all transforms)',
default: '32',
type: 'number',
min: 0
},
dynamic_bone_max_collider_check_count: {
name: 'Dynamic Bones Limit Max Collider Collisions (0 always disable colliders)',
name: 'Dynamic Bones Limit Max Collider Collisions (0 disable all colliders)',
default: '8',
type: 'number',
min: 0
},
fpv_steadycam_fov: {
name: 'First-Person Steadycam FOV',
default: '50',
type: 'number',
min: 30,
max: 110
}
};