diff --git a/Assets/Scripts/Monitor.cs b/Assets/Scripts/Monitor.cs index 182068d..9174bad 100644 --- a/Assets/Scripts/Monitor.cs +++ b/Assets/Scripts/Monitor.cs @@ -168,8 +168,6 @@ public class SimMonitor : MonoBehaviour catch (IOException e) { Debug.LogWarning($"An IO error occurred while converting binary telemetry to CSV: {e.Message}"); - //System.Threading.Thread.Sleep(1000); - //ConvertBinaryTelemetryToCsv(binaryFilePath, csvFilePath); } } diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index 03863dd..0de810e 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -9,22 +9,21 @@ module.exports = async () => { [ {text: 'Home', link: '/'}, { text: 'Keybinds and Controls', - link: '/Keybinds_and_Controls.html' + link: '/Keybinds_and_Controls/' }, { text: 'Simulation Configuration Guide', - link: '/Simulation_Config_Guide.html' + link: '/Simulation_Config_Guide/' }, - {text: 'Simulation Logging', link: '/Simulation_Logging.html'}, + {text: 'Simulation Logging', link: '/Simulation_Logging/'}, { text: 'Coverage Reports', - link: '/coverage/' + link: '/coverage/editmode/Report/' }, // Link to coverage reports ], sidebar: 'auto', }, - bundler: viteBundler(), public: '../images', - // Add this to ensure INDEX.md is used as the home page + bundler: viteBundler(), patterns: ['INDEX.md', '**/*.md', '**/*.vue'], } }