mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-22 07:15:47 +00:00
086c7e43b4
* feat(psylab): rename probe UI, add Tuning tab and log copy/export PsyLab (Ctrl+Shift+D): cover backfill threads move to Tuning; logs gain selectable text, toolbar copy/export, and a selection-only context menu. * fix(logging): redact secrets and mask remote hosts in runtime logs Sanitize lines at append time (buffer, CLI tail, export) and in PsyLab: Subsonic/auth query params, bearer tokens, password fields, URL userinfo; remote hostnames partially starred, LAN/localhost left readable. * fix(logging): UTF-8-safe log sanitization — unbreak playback on em dash Byte-indexed URL scanning panicked on multi-byte chars (e.g. "—" in stream logs), killing tokio workers and aborting playback. Iterate by char boundary; add infallible wrapper on the append hot path. * docs(changelog): PsyLab UI and safe log sanitization (PR #1027)
15 lines
471 B
Rust
15 lines
471 B
Rust
//! `psysonic-core` — workspace-internal shared primitives.
|
|
//!
|
|
//! Hosts the runtime logging facade (with `app_eprintln!` / `app_deprintln!`
|
|
//! macros) and the cross-crate port traits used to break dependency cycles
|
|
//! between `psysonic-audio`, `psysonic-analysis`, and other domain crates.
|
|
|
|
pub mod cover_cache_layout;
|
|
pub mod log_sanitize;
|
|
pub mod media_layout;
|
|
pub mod logging;
|
|
pub mod ports;
|
|
pub mod track_analysis;
|
|
pub mod track_enrichment;
|
|
pub mod user_agent;
|