Fix invalid command

This commit is contained in:
JeremyStar™ 2024-01-15 01:09:39 +01:00
parent 95e9aa4453
commit 52cd448ff0
7 changed files with 8 additions and 8 deletions

View file

@ -64,4 +64,4 @@ If you however like something like this:
- not coding
- working in a business
... then you probably shouldn't use Presencode. Use [some of the alternatives listed above](#comparing-to-normal-office-programs)
... then you probably shouldn't use Presencode. Use [some of the alternatives listed above](#comparing-to-normal-office-programs)

View file

@ -18,4 +18,4 @@ You need the following tools installed on your machine:
- a web browser (to read the documentation)
## Continuing
If you think you've met all of these requirements, [continue on with the guide](/getting-started/setting-up-presencode).
If you think you've met all of these requirements, [continue on with the guide](/getting-started/setting-up-presencode).

View file

@ -13,7 +13,7 @@ mkdir YOUR_PRESENTATION_NAME_HERE
cd YOUR_PRESENTATION_NAME_HERE
git clone "https://git.staropensource.de/JeremyStarTM/Presencode.git" .
# Don't run this command if you want to live on the edge:
git checkout "$(git tags | grep '^v[0-9.]*$' | sort -V | tail -n 1)"
git checkout "$(git tag | grep '^v[0-9.]*$' | sort -V | tail -n 1)"
```
Don't forget to replace `YOUR_PRESENTATION_NAME_HERE` with the name of your presentation!
@ -26,4 +26,4 @@ If everything went successful, you should see this screen after waiting a few se
You can now close the running Presencode instance (but not the Godot editor!).
## Continuing
After cloning Presencode and verifying that it is working, you can [continue with the guide](/getting-started/example-presentation).
After cloning Presencode and verifying that it is working, you can [continue with the guide](/getting-started/example-presentation).

View file

@ -69,4 +69,4 @@ There you can see that on slide `0` for example we:
Now edit
## Writing a presentation from scratch
## Writing a presentation from scratch

View file

@ -57,4 +57,4 @@ You can use these commands inside the debugging console:
<td>Execute arbitrary GDScript expressions</td>
<td>&lt;gdscript expression&gt;</td>
</tr>
</table>
</table>

View file

@ -77,4 +77,4 @@ The Presencode Manifest Specification specifies how presentation manifests shoul
"ratio": "16:9",
"entrypoint": "entrypoint.gd"
}
```
```

View file

@ -22,4 +22,4 @@ The Presentation Reader located at `src/preader.gd` in Presencode's source c
It's also responsible for reading the presentation manifest and entrypoint files.
## Loader
The Loader (as the name suggests) initializes Presencode and launches a presentation. It's located at `src/loader.gd` and `Loader.tscn` in Presencode's source code.
The Loader scene (renamed to `Presencode` during execution) also holds the presentation viewport.
The Loader scene (renamed to `Presencode` during execution) also holds the presentation viewport.