color picker and palette editor
git clone https://git.lucas.co/cce-color-editor.git
rename: cce-colors -> cce-color-editor
Crate/binary name, app_id, window title ("Color Editor"), and Makefile
install path. Codeberg repo renamed from clear-colors.git to
cce-color-editor.git.
Co-Authored-By: Claude Fable 5 <[email protected]>
Cargo.toml | 2 +-
Makefile | 2 +-
src/main.rs | 4 ++--
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml
index 6ecdd58..930d58c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,5 +1,5 @@
[package]
-name = "cce-colors"
+name = "cce-color-editor"
version = "0.1.0"
edition = "2021"
diff --git a/Makefile b/Makefile
index 7834c8e..568ec76 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ build:
install: build
mkdir -p ~/.local/bin
- install -m 755 ../target/release/cce-colors ~/.local/bin/cce-colors
+ install -m 755 ../target/release/cce-color-editor ~/.local/bin/cce-color-editor
run:
cargo run
diff --git a/src/main.rs b/src/main.rs
index 9721a90..6c1e3f2 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -707,8 +707,8 @@ impl Application for ColorApp {
if self.with_alpha { 360 } else { 324 }
};
WindowSettings {
- title: "Color Interface".to_string(),
- app_id: "cce-colors".to_string(),
+ title: "Color Editor".to_string(),
+ app_id: "cce-color-editor".to_string(),
width: 380,
height: win_h,
fullscreen: false,