Skip to content

Commit 6f8e1c3

Browse files
committed
fix: update documentation and code references to replace 'demo step' with 'move'
1 parent 06837ce commit 6f8e1c3

File tree

11 files changed

+348
-18
lines changed

11 files changed

+348
-18
lines changed

docs/.frontmatter/database/mediaDb.json

Lines changed: 331 additions & 1 deletion
Large diffs are not rendered by default.

docs/src/content/docs/actions/vscode.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ message: <message>
9494

9595
## Set state
9696

97-
The `setState` action allows you to set a key/value pair in the extension state which can be accessed by other actions. You can use the state value in your demo steps by using the following `{STATE_<key>}` syntax.
97+
The `setState` action allows you to set a key/value pair in the extension state which can be accessed by other actions. You can use the state value in your moves by using the following `{STATE_<key>}` syntax.
9898

9999
<Tabs syncKey="vscode-set-state">
100100
<TabItem label="JSON">

docs/src/content/docs/adding-demos.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ For example, if you want to highlight a piece of code, you can select the code a
264264
2. Search for the **Demo Time: Add scene** command.
265265
3. Click on the `highlight` action in the command palette.
266266

267-
<Image class="mx-auto" src={demoStepImage} alt="Add a demo step from the &quot;Demo Time: Add scene&quot; command" />
267+
<Image class="mx-auto" src={demoStepImage} alt="Add a move from the &quot;Demo Time: Add scene&quot; command" />
268268

269269
4. Select the act file in which you want to add the step (only if you have multiple act files).
270270
5. Select if you want to add it to an existing demo or create a new one.

docs/src/content/docs/features/overview-dashboard.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Open the Overview with the command `Demo Time: Overview` from the Command Palett
2727
From the Overview you can:
2828

2929
- Start a demo or open the demo presenter view.
30-
- Run a demo step-by-step or jump directly to a slide.
30+
- Run a scene step-by-step or jump directly to a slide.
3131
- Open the demo configuration editor for quick edits.
3232

3333
These actions are exposed as toolbar buttons inside the dashboard and can also be triggered via the demo actions and automation steps described elsewhere in the docs.

docs/src/content/docs/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ import LiveCodingComparison from '../../components/LiveCodingComparison.astro';
8787
</CustomCard>
8888

8989
<CustomCard title="Demo like a pro" icon="rocket">
90-
Test your demo steps in advance and ensure everything works perfectly. No more juggling snippets, notes, or worrying about what could go wrong.
90+
Test your moves in advance and ensure everything works perfectly. No more juggling snippets, notes, or worrying about what could go wrong.
9191

9292
<svg xmlns="http://www.w3.org/2000/svg" slot="icon" class="h-6 w-6" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
9393
<path d="M20 6 9 17l-5-5"/>

docs/src/content/docs/pro-features/analytics.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Once started, Analytics will begin tracking your presentation in the background.
5555

5656
While Analytics is recording, it tracks:
5757

58-
- **Step Timing**: How long you spend on each demo step
58+
- **Step Timing**: How long you spend on each move
5959
- **Navigation Patterns**: Which steps you skip, repeat, or spend extra time on
6060
- **File Interactions**: Which files you open, edit, or reference
6161
- **Terminal Commands**: Commands you execute in the integrated terminal

docs/src/content/docs/references/api.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ This endpoint will execute the previous step in the demo.
112112

113113
### `/api/notes`
114114

115-
Returns the notes of the current slide or demo step.
115+
Returns the notes of the current slide or move.
116116

117117
- Method: `GET`
118118

docs/src/content/docs/slides/powerpoint-import.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ To do this, follow these steps:
5050
4. Select the folder where you saved the images.
5151
5. Click on the `Select folder with PowerPoint exported slide images` button.
5252
6. Choose to create a new act file, or only import the slides.
53-
- When you choose to create a new act file. All the slides will be added as demo steps and you are ready to present.
53+
- When you choose to create a new act file. All the slides will be added as moves and you are ready to present.
5454
7. Let the import process finish.
5555
- If you choose to create a new act file, the import process will open the new act file.
5656

docs/src/content/docs/tips/adding-content.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ lastmod: 2025-07-04T18:02:57.716Z
77

88
import { Aside, Tabs, TabItem } from '@astrojs/starlight/components';
99

10-
When you want to insert content to a file, you can use the `content` or `contentPath` properties in the demo step.
10+
When you want to insert content to a file, you can use the `content` or `contentPath` properties in the move.
1111

1212
| Property | Description |
1313
| --- | --- |
@@ -90,4 +90,4 @@ insertTypingSpeed: 25
9090
```
9191

9292
</TabItem>
93-
</Tabs>
93+
</Tabs>

docs/src/content/docs/tips/variables.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ lastmod: 2025-01-22T11:25:57.794Z
66

77
import { Code } from '@astrojs/starlight/components';
88

9-
The extension has built-in variables which you can use in your demo steps. These variables are placeholders that get replaced with the actual value when the demo gets executed.
9+
The extension has built-in variables which you can use in your moves. These variables are placeholders that get replaced with the actual value when the demo gets executed.
1010

1111
- `{DT_INPUT}`: The extension will ask you to provide a value for this variable when the demo gets executed.
1212
- `{DT_CLIPBOARD}`: The value in your clipboard will be used for this variable.
@@ -16,7 +16,7 @@ The extension has built-in variables which you can use in your demo steps. These
1616

1717
### Request user input
1818

19-
You can use the `{DT_INPUT}` variable in your demo steps to request user input. When the demo gets executed, the extension will ask you to provide a value for this variable.
19+
You can use the `{DT_INPUT}` variable in your moves to request user input. When the demo gets executed, the extension will ask you to provide a value for this variable.
2020

2121
<Code code={`
2222
{
@@ -29,7 +29,7 @@ You can use the `{DT_INPUT}` variable in your demo steps to request user input.
2929

3030
### Use clipboard content
3131

32-
Similar to the `{DT_INPUT}` variable, you can use the `{DT_CLIPBOARD}` variable in your demo steps to use the value in your clipboard.
32+
Similar to the `{DT_INPUT}` variable, you can use the `{DT_CLIPBOARD}` variable in your moves to use the value in your clipboard.
3333

3434
<Code code={`
3535
{
@@ -42,7 +42,7 @@ Similar to the `{DT_INPUT}` variable, you can use the `{DT_CLIPBOARD}` variable
4242

4343
### Use state value
4444

45-
You can use the `{STATE_<key>}` variable in your demo steps to use the value of the state key which you set via the `setState` action.
45+
You can use the `{STATE_<key>}` variable in your moves to use the value of the state key which you set via the `setState` action.
4646

4747
<Code code={`
4848
[
@@ -64,7 +64,7 @@ You can use the `{STATE_<key>}` variable in your demo steps to use the value of
6464

6565
## Define custom variables
6666

67-
You can define variables in a `variables.json` file in the `.demo` folder. Once you created the `variables.json` file and added variables/constants to it, you can use these variables in your demo steps by using curly braces `{variable_name}`.
67+
You can define variables in a `variables.json` file in the `.demo` folder. Once you created the `variables.json` file and added variables/constants to it, you can use these variables in your demo moves by using curly braces `{variable_name}`.
6868

6969
### Example variables file
7070

@@ -74,7 +74,7 @@ You can define variables in a `variables.json` file in the `.demo` folder. Once
7474
lang="json"
7575
title={`.demo/variables.json`} />
7676

77-
### Example usage in demo steps
77+
### Example usage in moves
7878

7979
<Code code={`
8080
{
@@ -83,4 +83,4 @@ You can define variables in a `variables.json` file in the `.demo` folder. Once
8383
"args": "{SLIDES_URL}"
8484
}`}
8585
lang="json"
86-
title={`.demo/demo.json`} />
86+
title={`.demo/demo.json`} />

0 commit comments

Comments
 (0)