Skip to content

Commit

Permalink
Merge branch 'devel'
Browse files Browse the repository at this point in the history
  • Loading branch information
davidromani committed Oct 20, 2024
2 parents 32c980a + efcc1ab commit e830b5d
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rusty-lander"
version = "0.8.1"
version = "0.8.2"
edition = "2021"
license = "MIT"
authors = ["David Romaní <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Rusty Lander v0.8.1
Rusty Lander v0.8.2
===================

A Jupiter Lander video game remake made with Rust & Bevy ECS game engine.
Expand Down
15 changes: 15 additions & 0 deletions Trunk.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[build]
# Point to our `index.html`.
target = "web/index.html"
# Set the output directory for the web build.
dist = "target/trunk"
# This is needed in order to host the game on itch.io.
public_url = "./"

[serve]
# Required in order to receive 404s for missing assets, which is what Bevy expects.
no_spa = true
# Open a browser tab once the initial build is complete.
open = true
# Use IPv4 first - prevents errors on Windows
addresses = ["127.0.0.1", "::1"]

0 comments on commit e830b5d

Please sign in to comment.