From fe1ea59eb0ed9392da990c1c50229e87c0d58c5c Mon Sep 17 00:00:00 2001 From: Elias Stepanik Date: Mon, 9 Jun 2025 22:11:54 +0200 Subject: [PATCH] Rename to voxel-simulation --- .gitignore | 2 +- CONTRIBUTING.md | 10 +++++----- README.md | 2 +- client/Cargo.toml | 6 +++--- client/src/main.rs | 2 +- publish_server.bat | 7 ------- publish_server.sh | 5 ----- start_server.sh | 2 -- 8 files changed, 11 insertions(+), 25 deletions(-) delete mode 100644 publish_server.bat delete mode 100644 publish_server.sh delete mode 100644 start_server.sh diff --git a/.gitignore b/.gitignore index 674c024..0b85ce8 100644 --- a/.gitignore +++ b/.gitignore @@ -35,5 +35,5 @@ server/.spacetime .idea/vcs.xml .idea/modules.xml .idea/.gitignore -.idea/horror-game.iml +.idea/voxel-simulation.iml .idea/workspace.xml \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2f16e98..a427655 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ # Contribution guidelines -First off, thank you for considering contributing to horror-game. +First off, thank you for considering contributing to voxel-simulation. If your contribution is not straightforward, please first discuss the change you wish to make by creating a new issue before making the change. @@ -8,7 +8,7 @@ wish to make by creating a new issue before making the change. ## Reporting issues Before reporting an issue on the -[issue tracker](https://github.com/eliasstepanik/horror-game/issues), +[issue tracker](https://github.com/eliasstepanik/voxel-simulation/issues), please check that it has not already been reported by searching for some related keywords. @@ -19,7 +19,7 @@ Try to do one pull request per change. ### Updating the changelog Update the changes you have made in -[CHANGELOG](https://github.com/eliasstepanik/horror-game/blob/main/CHANGELOG.md) +[CHANGELOG](https://github.com/eliasstepanik/voxel-simulation/blob/main/CHANGELOG.md) file under the **Unreleased** section. Add the changes of your pull request to one of the following subsections, @@ -42,8 +42,8 @@ If the required subsection does not exist yet under **Unreleased**, create it! This is no different than other Rust projects. ```shell -git clone https://github.com/eliasstepanik/horror-game -cd horror-game +git clone https://github.com/eliasstepanik/voxel-simulation +cd voxel-simulation cargo test ``` diff --git a/README.md b/README.md index 0041882..a4427c3 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# horror-game +# voxel-simulation diff --git a/client/Cargo.toml b/client/Cargo.toml index 0de68ce..a29dc88 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,9 +1,9 @@ [package] -name = "horror-game" +name = "voxel-simulation" version = "0.1.0" edition = "2024" -description = "Horror-Game" -repository = "https://github.com/eliasstepanik/horror-game" +description = "voxel-simulation" +repository = "https://github.com/eliasstepanik/voxel-simulation" license = "MIT OR Apache-2.0" build = "build.rs" diff --git a/client/src/main.rs b/client/src/main.rs index ba52ed6..8b1b77c 100644 --- a/client/src/main.rs +++ b/client/src/main.rs @@ -18,7 +18,7 @@ use toml; use crate::config::Config; use crate::plugins::big_space::big_space_plugin::BigSpaceIntegrationPlugin; -const TITLE: &str = "horror-game"; +const TITLE: &str = "voxel-simulation"; const RESOLUTION: (f32, f32) = (1920f32, 1080f32); const RESIZABLE: bool = true; const DECORATIONS: bool = true; diff --git a/publish_server.bat b/publish_server.bat deleted file mode 100644 index 9185026..0000000 --- a/publish_server.bat +++ /dev/null @@ -1,7 +0,0 @@ - -@echo off -REM Script to publish the horror-game project using spacetime - -spacetime publish -c --project-path server horror-game-test -y -rm client\src\module_bindings\* -spacetime generate --lang rust --out-dir client/src/module_bindings --project-path server \ No newline at end of file diff --git a/publish_server.sh b/publish_server.sh deleted file mode 100644 index 3214618..0000000 --- a/publish_server.sh +++ /dev/null @@ -1,5 +0,0 @@ - - -spacetime publish -c --project-path server network-game -y -rm client\src\module_bindings\* -spacetime generate --lang rust --out-dir client/src/module_bindings --project-path server \ No newline at end of file diff --git a/start_server.sh b/start_server.sh deleted file mode 100644 index ed6ec0d..0000000 --- a/start_server.sh +++ /dev/null @@ -1,2 +0,0 @@ - -spacetime start