kitgit

tirbofish/dropbear · commit

0a6e235c6dab377f7c38a1dc2be730177e72b486

fix: linux support works better now (since i moved to linux and got rid of windows). feature: got a brand new logo for dropbear. i sketched it up quickly, but it works... jarvis, run github actions (for my linux people) Unverified

Thribhu K <4tkbytes@pm.me> · 2026-01-14 13:57

view full diff

diff --git a/Cargo.toml b/Cargo.toml
index d59eeca..c257e24 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -21,7 +21,6 @@ members = [
 [workspace.dependencies]
 anyhow = { version = "1.0", features = ["backtrace"] }
 app_dirs2 = "2.5"
-arboard = "3.6"
 bytemuck = { version = "1.24", features = ["derive"] }
 chrono = "0.4"
 clap = { version = "4.5", features = ["derive"] }
diff --git a/README.md b/README.md
index b5c3cfc..24a1d4e 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,9 @@
-# dropbear
+<div style="text-align: center;">
+  <img src="resources/eucalyptus-editor.png" alt="dropbear engine logo, specifically a koala falling off a eucalyptus tree, looking like a 'dropbear'. looks nice, right?">
+  <div style="position: relative; top: -50px; ">
+    <h1>dropbear</h1>
+  </div>
+</div>
 
 dropbear is a game engine used to create games, made in Rust and scripted with the Kotlin Language.
 
diff --git a/dropbear-engine/Cargo.toml b/dropbear-engine/Cargo.toml
index 2c060fa..887b142 100644
--- a/dropbear-engine/Cargo.toml
+++ b/dropbear-engine/Cargo.toml
@@ -46,7 +46,6 @@ postcard.workspace = true
 
 [target.'cfg(not(target_os = "android"))'.dependencies]
 rfd.workspace = true
-arboard.workspace = true
 
 [dependencies.image]
 version = "0.25"
diff --git a/dropbear-engine/src/lib.rs b/dropbear-engine/src/lib.rs
index f9f6107..8a85c3e 100644
--- a/dropbear-engine/src/lib.rs
+++ b/dropbear-engine/src/lib.rs
@@ -20,6 +20,8 @@ pub mod utils;
 pub static WGPU_BACKEND: OnceLock<String> = OnceLock::new();
 pub const PHYSICS_STEP_RATE: u32 = 120;
 const MAX_PHYSICS_STEPS_PER_FRAME: usize = 4;
+/// Note: image size is 256x256
+pub const LOGO_AS_BYTES: &[u8] = include_bytes!("../../resources/eucalyptus-editor.png");
 

Large diffs are not rendered by default. Showing the first 50 of 387 lines. Show full diff