Skip to content

Commit

Permalink
README change
Browse files Browse the repository at this point in the history
  • Loading branch information
TCA166 committed May 18, 2024
1 parent b9f2a20 commit 8bec506
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ target*
*.lock
*.log
*'s history
*.svg
*.svg
*.zip
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

A program designed for creating an encyclopedia containing your ck3 history
It goes through the lineage of every player in the save file (meaning multiplayer save files also work) and extracts data about every character it encounters and their associates
You can preview how you can expect the result to look like in your browser [here](https://tca166.github.io/CK3-history-extractor/TCA166's%20history/index.html)

## Usage

Expand Down Expand Up @@ -67,6 +68,7 @@ And here are the arguments that the utility accepts as of right now:
You can find output examples in the [examples](examples/) directory.
Just unzip the files contained within and witness the glory of my dynasty!
Additionally I simply deployed the result to GitHub pages meaning you can preview the result [here](https://tca166.github.io/CK3-history-extractor/TCA166's%20history/index.html).
## Other similar tools
Expand Down
6 changes: 5 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ fn main() {
//User IO
let mut filename = String::new();
let args: Vec<String> = env::args().collect();
let mut compressed = false;
#[cfg(internal)]
let mut use_internal = false;
#[cfg(not(internal))]
Expand Down Expand Up @@ -116,7 +117,10 @@ fn main() {
"--localization" => {
localization_path = Some(iter.next().expect("Localization argument requires a value").clone());
println!("Using localization from {}", localization_path.as_ref().unwrap());
}
}
"--zip" => {
compressed = true;
}
_ => {
println!("Unknown argument: {}", arg);
}
Expand Down

0 comments on commit 8bec506

Please sign in to comment.