From ef5e87216532b2768a0cbe3e2a3a193382377ded Mon Sep 17 00:00:00 2001
From: Lauvaan <122087991+Lauvaan@users.noreply.github.com>
Date: Thu, 29 Jun 2023 13:27:19 +0300
Subject: [PATCH 01/10] Add command simbridgeDebug.ts
---
src/commands/support/simbridgeDebug.ts | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
create mode 100644 src/commands/support/simbridgeDebug.ts
diff --git a/src/commands/support/simbridgeDebug.ts b/src/commands/support/simbridgeDebug.ts
new file mode 100644
index 00000000..9684a200
--- /dev/null
+++ b/src/commands/support/simbridgeDebug.ts
@@ -0,0 +1,25 @@
+import { MessageCommandDefinition } from '../../lib/command';
+import { makeEmbed, makeLines } from '../../lib/embed';
+import { CommandCategory, imageBaseUrl } from '../../constants';
+
+const SIMBRIDGE_HELP_URL = `${imageBaseUrl}/support/simbridgeDebug.png`;
+
+const simbridgeDebugEmbed = makeEmbed({
+ title: 'FlyByWire Support | Why does SimBridge crash?',
+ description: makeLines([
+ `SimBridge will typically crash moments after it has started due to a bad installation of SimBridge, missing modules or some other issue. In order to assist you further we will need to see your SimBridge logs.`,
+ `1. Open the folder where SimBridge is installed`,
+ `2. Open a terminal window in that location (Hold \`SHIFT\` and right click on the empty space of the folder and select "Open Windows Terminal" or "Open Command Prompt" or "Open Powershell Window"`,
+ `3. Type in \`fbw-simbridge.exe\` and press enter`,
+ `4. Screenshot the output of the console`,
+ ]),
+ image: { url: SIMBRIDGE_HELP_URL },
+ footer: { text: 'Tip: Click the image to view in full size' },
+});
+
+export const simbridgeDebug: MessageCommandDefinition = {
+ name: ['simbridgedebug', 'sbdebug'],
+ description: 'Provides instructions to debug SimBridge',
+ category: CommandCategory.SUPPORT,
+ genericEmbed: simbridgeDebugEmbed,
+};
From 6f79fd8a1ca011ebc74bf58f67f1162c474ecb85 Mon Sep 17 00:00:00 2001
From: Lauvaan <122087991+Lauvaan@users.noreply.github.com>
Date: Thu, 29 Jun 2023 13:28:59 +0300
Subject: [PATCH 02/10] index.ts entries
---
src/commands/index.ts | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/commands/index.ts b/src/commands/index.ts
index 0168eb29..467368bd 100644
--- a/src/commands/index.ts
+++ b/src/commands/index.ts
@@ -170,6 +170,7 @@ import { taf } from './utils/taf';
import { remoteEfb } from './support/remoteEfb';
import { brakeCheck } from './support/brakeCheck';
import { spad } from './general/spad';
+import { simbridgeDebug } from `./support/simbridgeDebug`;
const commands: BaseCommandDefinition[] = [
typeCommand,
@@ -342,6 +343,7 @@ const commands: BaseCommandDefinition[] = [
remoteEfb,
brakeCheck,
spad,
+ simbridgeDebug,
];
const commandsObject: { [k: string]: BaseCommandDefinition } = {};
From 24fbc6d77c1d7e5498712930ae1412f36b7e25b5 Mon Sep 17 00:00:00 2001
From: Lauvaan <122087991+Lauvaan@users.noreply.github.com>
Date: Thu, 29 Jun 2023 13:33:56 +0300
Subject: [PATCH 03/10] added command-docs.md description
---
.github/command-docs.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/.github/command-docs.md b/.github/command-docs.md
index c5ca6d9d..88f54a80 100644
--- a/.github/command-docs.md
+++ b/.github/command-docs.md
@@ -83,6 +83,7 @@
| .reportedissues | Provides a link to the reported issues page within docs, either a general link, or a link for a specific search
Search terms can be terminated by a line break or one of the symbols . - > / \ | .issues |
| .remoteefb | Provides information about to the viewing the EFB remotely | .refb
.remoteflypad
.rflypad |
| .screenshot | Help to screenshot for support | .cockpit
.ss |
+| .simbridgedebug | Provides reason for SimBridge crashong, and steps to get a screenshot for debugging the crashing. | .sbdebug |
| .simbridgelog | Information on how to provide SimBridge Log | .slog |
| .simulationrate | Explanation of the limitation of the Simulation Rate based on frame rate | .simrate |
| .simversion | Help to identify MSFS version for support | .msfsversion |
From 58de4126d1aa498005840a2affe13417f4837ea4 Mon Sep 17 00:00:00 2001
From: Lauvaan <122087991+Lauvaan@users.noreply.github.com>
Date: Thu, 29 Jun 2023 13:43:26 +0300
Subject: [PATCH 04/10] fix index.ts
---
src/commands/index.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/commands/index.ts b/src/commands/index.ts
index 467368bd..d9098e43 100644
--- a/src/commands/index.ts
+++ b/src/commands/index.ts
@@ -170,7 +170,7 @@ import { taf } from './utils/taf';
import { remoteEfb } from './support/remoteEfb';
import { brakeCheck } from './support/brakeCheck';
import { spad } from './general/spad';
-import { simbridgeDebug } from `./support/simbridgeDebug`;
+import { simbridgeDebug } from './support/simbridgeDebug';
const commands: BaseCommandDefinition[] = [
typeCommand,
From b8629d9f8a6c605e391dc783e9d4a21daade4327 Mon Sep 17 00:00:00 2001
From: Lauvaan
Date: Tue, 11 Jul 2023 09:06:14 +0300
Subject: [PATCH 05/10] Implement nuts' suggestions
---
.github/command-docs.md | 2 +-
src/commands/support/simbridgeDebug.ts | 11 ++++++-----
2 files changed, 7 insertions(+), 6 deletions(-)
diff --git a/.github/command-docs.md b/.github/command-docs.md
index 88f54a80..fe0e4246 100644
--- a/.github/command-docs.md
+++ b/.github/command-docs.md
@@ -83,7 +83,7 @@
| .reportedissues | Provides a link to the reported issues page within docs, either a general link, or a link for a specific search
Search terms can be terminated by a line break or one of the symbols . - > / \ | .issues |
| .remoteefb | Provides information about to the viewing the EFB remotely | .refb
.remoteflypad
.rflypad |
| .screenshot | Help to screenshot for support | .cockpit
.ss |
-| .simbridgedebug | Provides reason for SimBridge crashong, and steps to get a screenshot for debugging the crashing. | .sbdebug |
+| .simbridgedebug | Provides reason for SimBridge crashing, and steps to get a screenshot for debugging the crashing. | .sbdebug |
| .simbridgelog | Information on how to provide SimBridge Log | .slog |
| .simulationrate | Explanation of the limitation of the Simulation Rate based on frame rate | .simrate |
| .simversion | Help to identify MSFS version for support | .msfsversion |
diff --git a/src/commands/support/simbridgeDebug.ts b/src/commands/support/simbridgeDebug.ts
index 9684a200..af784905 100644
--- a/src/commands/support/simbridgeDebug.ts
+++ b/src/commands/support/simbridgeDebug.ts
@@ -7,11 +7,12 @@ const SIMBRIDGE_HELP_URL = `${imageBaseUrl}/support/simbridgeDebug.png`;
const simbridgeDebugEmbed = makeEmbed({
title: 'FlyByWire Support | Why does SimBridge crash?',
description: makeLines([
- `SimBridge will typically crash moments after it has started due to a bad installation of SimBridge, missing modules or some other issue. In order to assist you further we will need to see your SimBridge logs.`,
- `1. Open the folder where SimBridge is installed`,
- `2. Open a terminal window in that location (Hold \`SHIFT\` and right click on the empty space of the folder and select "Open Windows Terminal" or "Open Command Prompt" or "Open Powershell Window"`,
- `3. Type in \`fbw-simbridge.exe\` and press enter`,
- `4. Screenshot the output of the console`,
+ '',
+ 'If SimBridge crashes moments after start, it could be due to bad installation of SimBridge, missing modules or another issue. In order to assist you further we will need to see your SimBridge logs.',
+ '1. Open the folder where SimBridge is installed.',
+ '2. Open a terminal window in that location (Hold \`SHIFT\` and right click on the empty space of the folder, then select "Open Windows Terminal", "Open Command Prompt", or "Open Powershell Window".',
+ '3. Type \`fbw-simbridge.exe\` and press enter',
+ '4. Screenshot the output of the console and send it to us.',
]),
image: { url: SIMBRIDGE_HELP_URL },
footer: { text: 'Tip: Click the image to view in full size' },
From 38ea66d0582d385e630f5f2da02fd3fae838fa81 Mon Sep 17 00:00:00 2001
From: Lauvaan
Date: Tue, 11 Jul 2023 09:08:16 +0300
Subject: [PATCH 06/10] small formatting fix
---
src/commands/support/simbridgeDebug.ts | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/commands/support/simbridgeDebug.ts b/src/commands/support/simbridgeDebug.ts
index af784905..d9d80075 100644
--- a/src/commands/support/simbridgeDebug.ts
+++ b/src/commands/support/simbridgeDebug.ts
@@ -7,14 +7,14 @@ const SIMBRIDGE_HELP_URL = `${imageBaseUrl}/support/simbridgeDebug.png`;
const simbridgeDebugEmbed = makeEmbed({
title: 'FlyByWire Support | Why does SimBridge crash?',
description: makeLines([
- '',
'If SimBridge crashes moments after start, it could be due to bad installation of SimBridge, missing modules or another issue. In order to assist you further we will need to see your SimBridge logs.',
+ '',
'1. Open the folder where SimBridge is installed.',
'2. Open a terminal window in that location (Hold \`SHIFT\` and right click on the empty space of the folder, then select "Open Windows Terminal", "Open Command Prompt", or "Open Powershell Window".',
'3. Type \`fbw-simbridge.exe\` and press enter',
'4. Screenshot the output of the console and send it to us.',
]),
- image: { url: SIMBRIDGE_HELP_URL },
+
footer: { text: 'Tip: Click the image to view in full size' },
});
From fbb718ba6b35f1dcf8c8523957a510b70a5d1587 Mon Sep 17 00:00:00 2001
From: Lauvaan
Date: Tue, 11 Jul 2023 09:09:05 +0300
Subject: [PATCH 07/10] fix add image(into the command file)
---
src/commands/support/simbridgeDebug.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/commands/support/simbridgeDebug.ts b/src/commands/support/simbridgeDebug.ts
index d9d80075..6f74ebb7 100644
--- a/src/commands/support/simbridgeDebug.ts
+++ b/src/commands/support/simbridgeDebug.ts
@@ -14,7 +14,7 @@ const simbridgeDebugEmbed = makeEmbed({
'3. Type \`fbw-simbridge.exe\` and press enter',
'4. Screenshot the output of the console and send it to us.',
]),
-
+ image: { url: SIMBRIDGE_HELP_URL },
footer: { text: 'Tip: Click the image to view in full size' },
});
From 635feaf4a188784d13e77fa18f00c3a0eddbdf07 Mon Sep 17 00:00:00 2001
From: Lauvaan <122087991+Lauvaan@users.noreply.github.com>
Date: Mon, 24 Jul 2023 10:44:12 +0300
Subject: [PATCH 08/10] Add image
---
assets/images/support/simbridgeDebug.png | Bin 0 -> 16238 bytes
1 file changed, 0 insertions(+), 0 deletions(-)
create mode 100644 assets/images/support/simbridgeDebug.png
diff --git a/assets/images/support/simbridgeDebug.png b/assets/images/support/simbridgeDebug.png
new file mode 100644
index 0000000000000000000000000000000000000000..8a6b2c69d4d2bdb795328d0885b0dab48e833f45
GIT binary patch
literal 16238
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
leQM(Gq5HpVgUH%rTNY2>r{{e@^^~C@H
literal 0
HcmV?d00001
From 9a529c9d4f4c737277ed45ed14bf6e5413f45daf Mon Sep 17 00:00:00 2001
From: Lauvaan <122087991+Lauvaan@users.noreply.github.com>
Date: Mon, 7 Aug 2023 16:31:39 +0000
Subject: [PATCH 09/10] fix linting and add .changelog.md entry
---
.github/CHANGELOG.md | 4 ++++
src/commands/support/simbridgeDebug.ts | 4 ++--
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md
index 0ab6919f..d3555c88 100644
--- a/.github/CHANGELOG.md
+++ b/.github/CHANGELOG.md
@@ -1,5 +1,9 @@
## Changelog
+Update _ August 2023
+
+- feat: added .simbridgedebug command which explains debugging steps, if SimBridge crashes right after starting (07/08/2023)
+
Update _ July 2023
- fix: change the checklist image in the checklist command to the correct one (27/07/2023)
diff --git a/src/commands/support/simbridgeDebug.ts b/src/commands/support/simbridgeDebug.ts
index 6f74ebb7..0d5faca5 100644
--- a/src/commands/support/simbridgeDebug.ts
+++ b/src/commands/support/simbridgeDebug.ts
@@ -10,8 +10,8 @@ const simbridgeDebugEmbed = makeEmbed({
'If SimBridge crashes moments after start, it could be due to bad installation of SimBridge, missing modules or another issue. In order to assist you further we will need to see your SimBridge logs.',
'',
'1. Open the folder where SimBridge is installed.',
- '2. Open a terminal window in that location (Hold \`SHIFT\` and right click on the empty space of the folder, then select "Open Windows Terminal", "Open Command Prompt", or "Open Powershell Window".',
- '3. Type \`fbw-simbridge.exe\` and press enter',
+ '2. Open a terminal window in that location (Hold `SHIFT` and right click on the empty space of the folder, then select "Open Windows Terminal", "Open Command Prompt", or "Open Powershell Window".',
+ '3. Type `fbw-simbridge.exe` and press enter',
'4. Screenshot the output of the console and send it to us.',
]),
image: { url: SIMBRIDGE_HELP_URL },
From 5d4f034ac7b60f1404066a898869f3a194828a9e Mon Sep 17 00:00:00 2001
From: Lauvaan <122087991+Lauvaan@users.noreply.github.com>
Date: Mon, 7 Aug 2023 20:47:17 +0300
Subject: [PATCH 10/10] Update src/commands/support/simbridgeDebug.ts
Co-authored-by: NUT <87286435+NUTTTTTTTT@users.noreply.github.com>
---
src/commands/support/simbridgeDebug.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/commands/support/simbridgeDebug.ts b/src/commands/support/simbridgeDebug.ts
index 0d5faca5..f7631111 100644
--- a/src/commands/support/simbridgeDebug.ts
+++ b/src/commands/support/simbridgeDebug.ts
@@ -11,7 +11,7 @@ const simbridgeDebugEmbed = makeEmbed({
'',
'1. Open the folder where SimBridge is installed.',
'2. Open a terminal window in that location (Hold `SHIFT` and right click on the empty space of the folder, then select "Open Windows Terminal", "Open Command Prompt", or "Open Powershell Window".',
- '3. Type `fbw-simbridge.exe` and press enter',
+ '3. Type `fbw-simbridge.exe` and press enter.',
'4. Screenshot the output of the console and send it to us.',
]),
image: { url: SIMBRIDGE_HELP_URL },