Skip to content

Commit d58009f

Browse files
authored
Merge pull request #30 from resonix-dev/development
chore: update version to 0.2.8 and change default config name to uppercase
2 parents 8c93237 + 1987016 commit d58009f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "resonix-node"
3-
version = "0.2.7"
3+
version = "0.2.8"
44
edition = "2021"
55
description = "High-performance audio node. HTTP/WebSocket server that resolves and streams audio using Symphonia and yt-dlp."
66
license = "BSD-3-Clause"

src/config/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,10 +186,10 @@ pub fn load_config() -> EffectiveConfig {
186186
let config_exists = config_paths.iter().any(|path| std::path::Path::new(path).exists());
187187

188188
if !config_exists {
189-
if let Err(e) = std::fs::write("resonix.toml", DEFAULT_CONFIG_TEMPLATE) {
189+
if let Err(e) = std::fs::write("Resonix.toml", DEFAULT_CONFIG_TEMPLATE) {
190190
tracing::warn!(?e, "Failed to create default config file");
191191
} else {
192-
tracing::info!("Created default config file at resonix.toml");
192+
tracing::info!("Created default config file at Resonix.toml");
193193
}
194194
}
195195

0 commit comments

Comments
 (0)