mirror of
https://github.com/vrcx-team/VRCX.git
synced 2026-04-06 00:32:02 +02:00
Random fixes
This commit is contained in:
@@ -37,7 +37,7 @@ namespace VRCX
|
||||
break;
|
||||
}
|
||||
}
|
||||
catch (IOException)
|
||||
catch (Exception ex) when (ex is IOException or UnauthorizedAccessException)
|
||||
{
|
||||
Thread.Sleep(1000);
|
||||
}
|
||||
|
||||
@@ -43,6 +43,7 @@ namespace VRCX
|
||||
public void WriteConfigFile(string json)
|
||||
{
|
||||
var path = GetVRChatAppDataLocation();
|
||||
Directory.CreateDirectory(path);
|
||||
var configFile = Path.Join(path, "config.json");
|
||||
File.WriteAllText(configFile, json);
|
||||
}
|
||||
|
||||
@@ -65,6 +65,8 @@
|
||||
<PrimaryPasswordDialog></PrimaryPasswordDialog>
|
||||
|
||||
<SendBoopDialog></SendBoopDialog>
|
||||
|
||||
<ChangelogDialog></ChangelogDialog>
|
||||
</template>
|
||||
</div>
|
||||
</el-config-provider>
|
||||
@@ -96,6 +98,7 @@
|
||||
|
||||
import AvatarDialog from './components/dialogs/AvatarDialog/AvatarDialog.vue';
|
||||
import AvatarImportDialog from './views/Favorites/dialogs/AvatarImportDialog.vue';
|
||||
import ChangelogDialog from './views/Settings/dialogs/ChangelogDialog.vue';
|
||||
import ChooseFavoriteGroupDialog from './components/dialogs/ChooseFavoriteGroupDialog.vue';
|
||||
import EditInviteMessageDialog from './views/Profile/dialogs/EditInviteMessageDialog.vue';
|
||||
import FriendImportDialog from './views/Favorites/dialogs/FriendImportDialog.vue';
|
||||
|
||||
@@ -175,6 +175,7 @@ export const useVRCXUpdaterStore = defineStore('VRCXUpdater', () => {
|
||||
currentVersion.value === 'VRCX Nightly Build' ||
|
||||
currentVersion.value === 'VRCX Build'
|
||||
) {
|
||||
changeLogDialog.value.changeLog = '-';
|
||||
// ignore custom builds
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -26,7 +26,6 @@
|
||||
<AdvancedTab />
|
||||
</el-tab-pane>
|
||||
</el-tabs>
|
||||
<ChangelogDialog />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -35,7 +34,6 @@
|
||||
|
||||
import AdvancedTab from './components/Tabs/AdvancedTab.vue';
|
||||
import AppearanceTab from './components/Tabs/AppearanceTab.vue';
|
||||
import ChangelogDialog from './dialogs/ChangelogDialog.vue';
|
||||
import DiscordPresenceTab from './components/Tabs/DiscordPresenceTab.vue';
|
||||
import GeneralTab from './components/Tabs/GeneralTab.vue';
|
||||
import NotificationsTab from './components/Tabs/NotificationsTab.vue';
|
||||
|
||||
Reference in New Issue
Block a user