Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New builder #44

Merged
merged 15 commits into from
Dec 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,5 @@ jobs:
publish_dir: ./docs/book
# Don't store history of gh-pages branch
# This ensures that the repository size doesn't grow too much
publish_branch: main
force_orphan: true
243 changes: 242 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_talks"
version = "0.3.1"
version = "0.4.0-dev"
edition = "2021"
description = "A Bevy plugin to write dialogues for your characters to say and do things, together with player choices."
repository = "https://github.com/giusdp/bevy_talks"
Expand All @@ -20,9 +20,11 @@ thiserror = "1.0"
serde = { version = "1" }
serde_ron = { version = "0.8", package = "ron" }
petgraph = "0.6"
aery = "0.5.2"

[dev-dependencies]
bevy = "0.12"
rstest = "0.18.2"

[[example]]
name = "simple"
Expand Down
12 changes: 11 additions & 1 deletion docs/book.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,14 @@ authors = ["Giuseppe De Palma"]
language = "en"
multilingual = false
src = "src"
title = "Docs for bevy_talks plugin"
title = "Bevy Talks"

[preprocessor]

[preprocessor.mermaid]
command = "mdbook-mermaid"

[output]

[output.html]
additional-js = ["mermaid.min.js", "mermaid-init.js"]
1 change: 1 addition & 0 deletions docs/mermaid-init.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
mermaid.initialize({startOnLoad:true});
Loading