Fix invalid command
This commit is contained in:
parent
95e9aa4453
commit
52cd448ff0
7 changed files with 8 additions and 8 deletions
|
@ -64,4 +64,4 @@ If you however like something like this:
|
||||||
- not coding
|
- not coding
|
||||||
- working in a business
|
- 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)
|
||||||
|
|
|
@ -18,4 +18,4 @@ You need the following tools installed on your machine:
|
||||||
- a web browser (to read the documentation)
|
- a web browser (to read the documentation)
|
||||||
|
|
||||||
## Continuing
|
## 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).
|
||||||
|
|
|
@ -13,7 +13,7 @@ mkdir YOUR_PRESENTATION_NAME_HERE
|
||||||
cd YOUR_PRESENTATION_NAME_HERE
|
cd YOUR_PRESENTATION_NAME_HERE
|
||||||
git clone "https://git.staropensource.de/JeremyStarTM/Presencode.git" .
|
git clone "https://git.staropensource.de/JeremyStarTM/Presencode.git" .
|
||||||
# Don't run this command if you want to live on the edge:
|
# 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!
|
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!).
|
You can now close the running Presencode instance (but not the Godot editor!).
|
||||||
|
|
||||||
## Continuing
|
## 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).
|
||||||
|
|
|
@ -69,4 +69,4 @@ There you can see that on slide `0` for example we:
|
||||||
Now edit
|
Now edit
|
||||||
|
|
||||||
|
|
||||||
## Writing a presentation from scratch
|
## Writing a presentation from scratch
|
||||||
|
|
|
@ -57,4 +57,4 @@ You can use these commands inside the debugging console:
|
||||||
<td>Execute arbitrary GDScript expressions</td>
|
<td>Execute arbitrary GDScript expressions</td>
|
||||||
<td><gdscript expression></td>
|
<td><gdscript expression></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -77,4 +77,4 @@ The Presencode Manifest Specification specifies how presentation manifests shoul
|
||||||
"ratio": "16:9",
|
"ratio": "16:9",
|
||||||
"entrypoint": "entrypoint.gd"
|
"entrypoint": "entrypoint.gd"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
|
@ -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.
|
It's also responsible for reading the presentation manifest and entrypoint files.
|
||||||
## Loader
|
## 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 (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.
|
||||||
|
|
Loading…
Add table
Reference in a new issue