chore: bump v0.1.0, housekeeping #8
4 changed files with 12 additions and 4 deletions
|
@ -12,9 +12,9 @@
|
||||||
- [X] commit with edit works
|
- [X] commit with edit works
|
||||||
- [X] Repo Flags Finished
|
- [X] Repo Flags Finished
|
||||||
- [X] Optional Fields
|
- [X] Optional Fields
|
||||||
- [ ] Subcommands
|
- [-] Subcommands
|
||||||
- [ ] Quiet flag
|
- [ ] Quiet flag
|
||||||
- [ ] Do something about coc flag
|
- [-] Do something about coc flag
|
||||||
- [ ] UX
|
- [ ] UX
|
||||||
- [ ] Change failure emotes
|
- [ ] Change failure emotes
|
||||||
- [ ] Flag for disabling emotes
|
- [ ] Flag for disabling emotes
|
||||||
|
|
|
@ -61,7 +61,7 @@ fn main() {
|
||||||
match &args {
|
match &args {
|
||||||
args if args.license => println!("{}", utils::strings::INTERACTIVE_LICENSE),
|
args if args.license => println!("{}", utils::strings::INTERACTIVE_LICENSE),
|
||||||
args if args.warranty => println!("{}", utils::strings::INTERACTIVE_WARRANTY),
|
args if args.warranty => println!("{}", utils::strings::INTERACTIVE_WARRANTY),
|
||||||
args if args.code_of_conduct => unimplemented!(),
|
args if args.code_of_conduct => println!("{}", utils::strings::INTERACTIVE_COC),
|
||||||
_ => (),
|
_ => (),
|
||||||
}
|
}
|
||||||
match &mut args.command {
|
match &mut args.command {
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
categories:
|
categories:
|
||||||
|
empty: {}
|
||||||
stuff:
|
stuff:
|
||||||
flags: []
|
flags: []
|
||||||
repos:
|
repos:
|
||||||
|
@ -43,7 +44,6 @@ categories:
|
||||||
flags:
|
flags:
|
||||||
- Clone
|
- Clone
|
||||||
- Push
|
- Push
|
||||||
empty: {}
|
|
||||||
links:
|
links:
|
||||||
- name: gg
|
- name: gg
|
||||||
rx: /home/ces/.config/gg
|
rx: /home/ces/.config/gg
|
||||||
|
|
|
@ -46,6 +46,14 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
";
|
";
|
||||||
|
|
||||||
|
pub const INTERACTIVE_COC: &str = "\
|
||||||
|
In the interest of fostering an open and welcoming environment, we as
|
||||||
|
contributors and maintainers pledge to making participation in our project and
|
||||||
|
our community a harassment-free experience for everyone, regardless of age, body
|
||||||
|
size, disability, ethnicity, gender identity and expression, level of
|
||||||
|
experience, nationality, personal appearance, race, religion, or sexual identity
|
||||||
|
and orientation. For more, see http://contributor-covenant.org/version/1/4";
|
||||||
|
|
||||||
/// Contains the message for quick commit subcommand
|
/// Contains the message for quick commit subcommand
|
||||||
pub const QUICK_COMMIT: &str = "git: quick commit";
|
pub const QUICK_COMMIT: &str = "git: quick commit";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue