From 468c5bfe4a3dee758de856831ea22a7e1b0a4a32 Mon Sep 17 00:00:00 2001 From: Kristofers Solo Date: Mon, 11 Nov 2024 17:28:39 +0200 Subject: [PATCH] refactor(name): change project name --- .github/workflows/release.yaml | 14 +++++++------- Cargo.lock | 26 +++++++++++++------------- Cargo.toml | 4 ++-- src/audio.rs | 4 ++-- src/lib.rs | 2 +- src/main.rs | 2 +- 6 files changed, 26 insertions(+), 26 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5d71692..a45816a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,14 +15,14 @@ on: # Configure the release workflow by editing these values. env: # The base filename of the binary produced by `cargo build`. - cargo_build_binary_name: the-labyrinth-of-echoes + cargo_build_binary_name: maze-ascension # The path to the assets directory. assets_path: assets # Whether to upload the packages produced by this workflow to a GitHub release. upload_to_github: true # The itch.io project to upload to in the format `user-name/project-name`. # There will be no upload to itch.io if this is commented out. - upload_to_itch: kristoferssolo/the-labyrinth-of-echoes + upload_to_itch: kristoferssolo/maze-ascension ############ # ADVANCED # ############ @@ -30,26 +30,26 @@ env: # The ID of the app produced by this workflow. # Applies to macOS releases. # Must contain only A-Z, a-z, 0-9, hyphen, and period: https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundleidentifier - app_id: kristoferssolo.the-labyrinth-of-echoes + app_id: kristoferssolo.maze-ascension. # The base filename of the binary in the package produced by this workflow. # Applies to Windows, macOS, and Linux releases. # Defaults to `cargo_build_binary_name` if commented out. - #app_binary_name: the-labyrinth-of-echoes + #app_binary_name: maze-ascension # The name of the `.zip` or `.dmg` file produced by this workflow. # Defaults to `app_binary_name` if commented out. - #app_package_name: the-labyrinth-of-echoes + #app_package_name: maze-ascension # The display name of the app produced by this workflow. # Applies to macOS releases. # Defaults to `app_package_name` if commented out. - #app_display_name: The Labyrinth Of Echoes + #app_display_name: Maze Ascension: The Labyrinth Of Echoes # The short display name of the app produced by this workflow. # Applies to macOS releases. # Must be 15 or fewer characters: https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundlename # Defaults to `app_display_name` if commented out. - #app_short_name: The Labyrint… + #app_short_name: Maze Ascension # Before enabling LFS, please take a look at GitHub's documentation for costs and quota limits: # https://docs.github.com/en/repositories/working-with-files/managing-large-files/about-storage-and-bandwidth-usage diff --git a/Cargo.lock b/Cargo.lock index b5c5dcc..bb87a3b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2733,6 +2733,19 @@ dependencies = [ "regex-automata 0.1.10", ] +[[package]] +name = "maze-ascension" +version = "0.0.4" +dependencies = [ + "bevy", + "bevy-inspector-egui", + "bevy_prototype_lyon", + "hexx", + "log", + "rand", + "tracing", +] + [[package]] name = "memchr" version = "2.7.4" @@ -3916,19 +3929,6 @@ dependencies = [ "winapi-util", ] -[[package]] -name = "the-labyrinth-of-echoes" -version = "0.0.4" -dependencies = [ - "bevy", - "bevy-inspector-egui", - "bevy_prototype_lyon", - "hexx", - "log", - "rand", - "tracing", -] - [[package]] name = "thiserror" version = "1.0.63" diff --git a/Cargo.toml b/Cargo.toml index 6d70049..0878cca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] -name = "the-labyrinth-of-echoes" +name = "maze-ascension" authors = ["Kristofers Solo "] -version = "0.0.4" +version = "0.0.5" edition = "2021" [dependencies] diff --git a/src/audio.rs b/src/audio.rs index 5a5a009..d9b6c00 100644 --- a/src/audio.rs +++ b/src/audio.rs @@ -7,7 +7,7 @@ use bevy::prelude::*; /// /// ``` /// use bevy::prelude::*; -/// use the_labyrinth_of_echoes::audio::Music; +/// use maze_ascension::audio::Music; /// /// fn set_music_volume(sink_query: Query<&AudioSink, With>) { /// for sink in &sink_query { @@ -25,7 +25,7 @@ pub struct Music; /// /// ``` /// use bevy::prelude::*; -/// use the_labyrinth_of_echoes::audio::SoundEffect; +/// use maze_ascension::audio::SoundEffect; /// /// fn set_sound_effect_volume(sink_query: Query<&AudioSink, With>) { /// for sink in &sink_query { diff --git a/src/lib.rs b/src/lib.rs index be714f8..39223ea 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -40,7 +40,7 @@ impl Plugin for AppPlugin { }) .set(WindowPlugin { primary_window: Window { - title: "The Labyrinth of Echoes".to_string(), + title: "Maze Ascension: The Labyrinth of Echoes".to_string(), canvas: Some("#bevy".to_string()), fit_canvas_to_parent: true, prevent_default_event_handling: true, diff --git a/src/main.rs b/src/main.rs index 086922a..784eff3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -2,7 +2,7 @@ #![cfg_attr(not(feature = "dev"), windows_subsystem = "windows")] use bevy::prelude::*; -use the_labyrinth_of_echoes::AppPlugin; +use maze_ascension::AppPlugin; fn main() -> AppExit { App::new().add_plugins(AppPlugin).run()