Skip to content

Commit 8ecbfa3

Browse files
committed
Update Version Info
1 parent 0a49606 commit 8ecbfa3

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "modder"
3-
version = "0.1.0"
3+
version = "1.0.0"
44
edition = "2024"
55

66
[dependencies]

tui/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tui"
3-
version = "0.1.0"
3+
version = "0.1.5"
44
edition = "2024"
55
description = "TUI Wrapper for Modder-rs"
66
authors = ["JayanAXHF <[email protected]>"]

tui/src/cli.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use std::path::PathBuf;
22

33
use clap::Parser;
44

5-
use crate::config::{get_config_dir, get_data_dir};
5+
use crate::config::get_data_dir;
66

77
#[derive(Parser, Debug)]
88
#[command(author, version = version(), about)]
@@ -24,7 +24,6 @@ pub fn version() -> String {
2424
let author = clap::crate_authors!();
2525

2626
// let current_exe_path = PathBuf::from(clap::crate_name!()).display().to_string();
27-
let config_dir_path = get_config_dir().display().to_string();
2827
let data_dir_path = get_data_dir().display().to_string();
2928

3029
format!(
@@ -33,7 +32,6 @@ pub fn version() -> String {
3332
3433
Authors: {author}
3534
36-
Config directory: {config_dir_path}
3735
Data directory: {data_dir_path}"
3836
)
3937
}

0 commit comments

Comments
 (0)