Skip to content

Commit 6348145

Browse files
committed
Removed the walkthrough
1 parent 90007d0 commit 6348145

File tree

8 files changed

+7
-220
lines changed

8 files changed

+7
-220
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,7 @@
2121

2222
- Leading newline when adding real-time inputs to empty saved input
2323
- Seed for generators in stress tester not utilizing full 64-bit integer range
24+
25+
### Removed
26+
27+
- Walkthrough. It never showed up by itself and was only accessible through the command palette. The README already covers majority of the information and the built-in error messages help fill in the necessary information.

package.json

Lines changed: 0 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -219,50 +219,6 @@
219219
"url": "./schemas/runSettings.schema.json"
220220
}
221221
],
222-
"walkthroughs": [
223-
{
224-
"id": "fastolympiccoding.gettingStarted",
225-
"title": "Get Started with Fast Olympic Coding",
226-
"description": "Natively test your solutions in VSCode.",
227-
"steps": [
228-
{
229-
"id": "createRunSettings",
230-
"title": "Create Run Settings",
231-
"description": "Configure compile and run commands for your programming language.\n[Create From Example](command:fastolympiccoding.createRunSettings)",
232-
"completionEvents": [
233-
"onCommand:fastolympiccoding.createRunSettings"
234-
],
235-
"media": {
236-
"markdown": "walkthroughs/setting-up.md"
237-
}
238-
},
239-
{
240-
"id": "setupDebug",
241-
"title": "Enable Debugging (Optional)",
242-
"description": "Configure debug support to use breakpoints and step through your code with real-time inputs.\n[Open runSettings.json](command:fastolympiccoding.openRunSettings)",
243-
"media": {
244-
"markdown": "walkthroughs/debugging.md"
245-
}
246-
},
247-
{
248-
"id": "setupStress",
249-
"title": "Configure Stress Testing (Optional)",
250-
"description": "Stress test your solution to ensure correctness and debug logic errors.\n[Open runSettings.json](command:fastolympiccoding.openRunSettings)",
251-
"media": {
252-
"markdown": "walkthroughs/stress-testing.md"
253-
}
254-
},
255-
{
256-
"id": "setupInteractive",
257-
"title": "Enable Interactive Problems (Optional)",
258-
"description": "Configure support for interactive problems where your solution communicates with a judge program.\n[Open runSettings.json](command:fastolympiccoding.openRunSettings)",
259-
"media": {
260-
"markdown": "walkthroughs/interactive.md"
261-
}
262-
}
263-
]
264-
}
265-
],
266222
"commands": [
267223
{
268224
"command": "fastolympiccoding.createRunSettings",

src/extension/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
createListener,
99
stopCompetitiveCompanion,
1010
} from "./competitiveCompanion";
11-
import { registerWalkthroughCommands } from "./walkthrough";
11+
import { registerRunSettingsCommands } from "./runSettingsCommands";
1212
import {
1313
initializeRunSettingsWatcher,
1414
ReadonlyStringProvider,
@@ -95,7 +95,7 @@ function registerDocumentContentProviders(context: vscode.ExtensionContext): voi
9595
}
9696

9797
function registerCommands(context: vscode.ExtensionContext): void {
98-
registerWalkthroughCommands(context);
98+
registerRunSettingsCommands(context);
9999

100100
const compilationStatusItem = vscode.window.createStatusBarItem(
101101
vscode.StatusBarAlignment.Right,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ function getActiveFileExtension(): string | null {
185185
return path.extname(activeEditor.document.fileName);
186186
}
187187

188-
export function registerWalkthroughCommands(context: vscode.ExtensionContext): void {
188+
export function registerRunSettingsCommands(context: vscode.ExtensionContext): void {
189189
context.subscriptions.push(
190190
vscode.commands.registerCommand(
191191
"fastolympiccoding.createRunSettings",

walkthroughs/debugging.md

Lines changed: 0 additions & 145 deletions
This file was deleted.

walkthroughs/interactive.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

walkthroughs/setting-up.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

walkthroughs/stress-testing.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)