diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-02-27 18:27:13 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-02-27 18:27:13 +0800 |
| commit | a469c6684619c9677dfc1125886acc37f24c81d4 (patch) | |
| tree | 5a4ddbc0ddc5dfc9c7da3dbcb06f8db6c6b0b00c | |
| parent | 7404a0e1b324ded78f6d579b4da2dcbafe5f72ca (diff) | |
Add ASCII art and deprecation notice to legacy binaries
| -rw-r--r-- | LICENSE-APACHE (renamed from LICENSE-APACHE-2.0) | 0 | ||||
| -rw-r--r-- | src/bin/jv.rs | 23 | ||||
| -rw-r--r-- | src/bin/jvv.rs | 23 |
3 files changed, 46 insertions, 0 deletions
diff --git a/LICENSE-APACHE-2.0 b/LICENSE-APACHE index 75b70c0..75b70c0 100644 --- a/LICENSE-APACHE-2.0 +++ b/LICENSE-APACHE diff --git a/src/bin/jv.rs b/src/bin/jv.rs index d1f66a6..c3dc4ca 100644 --- a/src/bin/jv.rs +++ b/src/bin/jv.rs @@ -1,3 +1,26 @@ +// +// +// ████████ ████████ +// ██▒▒▒▒▒▒▒▒██ ██▒▒▒▒▒▒▒▒██ +// ██ ▒▒██ ██▒▒ ██ █████ ██ ██ ██████ █████ +// ██ ▒▒████████▒▒ ██ ▒▒▒██ ██ ██ ██████ ██████ +// ██ ▒▒▒▒▒▒▒▒ ██ ██ ██ ██ ███▒▒▒█ █▒▒▒▒█ +// ██ ██ ██ ██ ██ ███ ▒ ████ ▒ +// ██ ██ ██ ██ ██ ███ ▒████ +// ██ ████ ████ ██ ██ ▒██ ██▒ ███ ▒▒▒██ +// ██ ████ ████ ██ █ ██ ██ ██ ███ █ ██ ██ +// ██ ████ ████ ██ █ ██ ▒████▒ ▒██████ ██████ +// ██ ▒▒▒▒ ▒▒▒▒ ██ ▒████ ▒██▒ ██████ ▒████▒ +// ██ ██ ▒▒▒▒ ▒▒ ▒▒▒▒▒▒ ▒▒▒▒ +// ██ ██████████ ██ +// ██ ██ ██ +// ████████████████████████████████ +// ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ +// +// The current module `jv.rs` is the legacy implementation, with only necessary fixes to maintain usability. +// The new implementation is located in `jvn.rs`, please refer to it. +// + use cli_utils::input::input_with_editor; use colored::Colorize; use just_enough_vcs::{ diff --git a/src/bin/jvv.rs b/src/bin/jvv.rs index b602e9b..335e374 100644 --- a/src/bin/jvv.rs +++ b/src/bin/jvv.rs @@ -1,3 +1,26 @@ +// +// +// ████████ ████████ +// ██▒▒▒▒▒▒▒▒██ ██▒▒▒▒▒▒▒▒██ +// ██ ▒▒██ ██▒▒ ██ █████ ██ ██ ██████ █████ +// ██ ▒▒████████▒▒ ██ ▒▒▒██ ██ ██ ██████ ██████ +// ██ ▒▒▒▒▒▒▒▒ ██ ██ ██ ██ ███▒▒▒█ █▒▒▒▒█ +// ██ ██ ██ ██ ██ ███ ▒ ████ ▒ +// ██ ██ ██ ██ ██ ███ ▒████ +// ██ ████ ████ ██ ██ ▒██ ██▒ ███ ▒▒▒██ +// ██ ████ ████ ██ █ ██ ██ ██ ███ █ ██ ██ +// ██ ████ ████ ██ █ ██ ▒████▒ ▒██████ ██████ +// ██ ▒▒▒▒ ▒▒▒▒ ██ ▒████ ▒██▒ ██████ ▒████▒ +// ██ ██ ▒▒▒▒ ▒▒ ▒▒▒▒▒▒ ▒▒▒▒ +// ██ ██████████ ██ +// ██ ██ ██ +// ████████████████████████████████ +// ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ +// +// The current module `jvv.rs` is the legacy implementation, with only necessary fixes to maintain usability. +// The new implementation is located in `jvn.rs`, please refer to it. +// + use clap::{Parser, Subcommand}; use cli_utils::{ display::{md, size_str}, |
