aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--src/categories.rs9
3 files changed, 8 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 2a79aca..9f7147f 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -905,7 +905,7 @@ dependencies = [
[[package]]
name = "evtclib"
version = "0.7.3"
-source = "git+https://gitlab.com/dunj3/evtclib?rev=b80279d4fb8a8a106ceb3290886c4a98b20aa42c#b80279d4fb8a8a106ceb3290886c4a98b20aa42c"
+source = "git+https://gitlab.com/dunj3/evtclib?rev=e9b9301143ae35eccc2f1c1d115e70b47cbec64f#e9b9301143ae35eccc2f1c1d115e70b47cbec64f"
dependencies = [
"byteorder",
"getset",
diff --git a/Cargo.toml b/Cargo.toml
index 2eab6c2..74e69b3 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -16,7 +16,7 @@ clap = { version = "3.1.8", features = ["derive"] }
log = "0.4.16"
pretty_env_logger = "0.4.0"
anyhow = "1.0.56"
-evtclib = { git = "https://gitlab.com/dunj3/evtclib", rev = "b80279d4fb8a8a106ceb3290886c4a98b20aa42c" }
+evtclib = { git = "https://gitlab.com/dunj3/evtclib", rev = "e9b9301143ae35eccc2f1c1d115e70b47cbec64f" }
reqwest = { version = "0.11.10", features = ["json", "blocking", "multipart"] }
url = { version = "2.2.2", features = ["serde"] }
serde = { version = "1.0.136", features = ["derive"] }
diff --git a/src/categories.rs b/src/categories.rs
index 1713d87..a753b62 100644
--- a/src/categories.rs
+++ b/src/categories.rs
@@ -19,6 +19,7 @@ pub enum Category {
Wing6,
Wing7,
Strike,
+ SilentSurf,
SunquaPeak,
ShatteredObservatory,
Nightmare,
@@ -59,9 +60,10 @@ category_strings! {
(Category::Wing5, "Wing 5 (Hall of Chains)"),
(Category::Wing6, "Wing 6 (Mythwright Gambit)"),
(Category::Wing7, "Wing 7 (Key of Ahdashim)"),
- (Category::SunquaPeak, "100 CM (Sunqua Peak)"),
- (Category::ShatteredObservatory, "99 CM (Shattered Observatory)"),
- (Category::Nightmare, "98 CM (Nightmare)"),
+ (Category::SilentSurf, "99 CM (Silent Surf)"),
+ (Category::SunquaPeak, "98 CM (Sunqua Peak)"),
+ (Category::ShatteredObservatory, "97 CM (Shattered Observatory)"),
+ (Category::Nightmare, "96 CM (Nightmare)"),
(Category::Strike, "Strike Mission"),
(Category::SpecialForcesTrainingArea, "Special Forces Training Area"),
(Category::Unknown, "Unknown"),
@@ -105,6 +107,7 @@ impl Categorizable for Log {
| Encounter::CardinalSabir
| Encounter::QadimThePeerless => Category::Wing7,
+ Encounter::Kanaxai => Category::SilentSurf,
Encounter::Ai => Category::SunquaPeak,
Encounter::Skorvald | Encounter::Artsariiv | Encounter::Arkk => {
Category::ShatteredObservatory