Skip to content

Commit e52b727

Browse files
committed
0.14.2 - Fix Settings
1 parent 138b86f commit e52b727

File tree

4 files changed

+21
-17
lines changed

4 files changed

+21
-17
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "vrc-log"
3-
version = "0.14.1"
3+
version = "0.14.2"
4+
edition = "2024"
5+
license = "MIT"
6+
readme = "README.md"
47
authors = ["Shayne Hartford <shaybox@shaybox.com>"]
5-
edition = "2021"
8+
categories = ["config", "database", "filesystem", "games", "parsing"]
69
description = "VRChat Local Avatar ID Logger"
7-
readme = "README.md"
810
homepage = "https://git.shaybox.com/vrc-log/releases/latest"
9-
repository = "https://github.com/ShayBox/VRC-LOG"
10-
license = "MIT"
1111
keywords = ["vrchat", "local", "cache", "avatar", "logger"]
12-
categories = ["config", "database", "filesystem", "games", "parsing"]
12+
repository = "https://github.com/ShayBox/VRC-LOG"
1313

1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

src/main.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ use vrc_log::{
1818
vrchat::{VRCHAT_AMP_PATH, VRCHAT_LOW_PATH},
1919
CARGO_PKG_HOMEPAGE,
2020
};
21+
2122
/* Watchers will stop working if they get dropped. */
2223
static WATCHERS: OnceLock<Vec<PollWatcher>> = OnceLock::new();
2324

@@ -54,6 +55,7 @@ async fn main() -> Result<()> {
5455
}
5556
error => {
5657
error!("There was an error loading the settings: {error}");
58+
error!("Most likely an update. Please follow the setup wizard");
5759
Settings::try_wizard().expect("Failed to setup wizard")
5860
}
5961
});

src/provider/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ pub enum ProviderKind {
2727
AVTRDB,
2828
#[cfg(feature = "nsvr")]
2929
#[strum(to_string = "NSVR - NekoSune Community")]
30+
#[serde(alias = "VRCDS")]
3031
NSVR,
3132
#[cfg(feature = "paw")]
3233
#[strum(to_string = "PAW - Puppy's Avatar World")]

0 commit comments

Comments
 (0)