Truman Kilen

Results 85 comments of Truman Kilen

UE5 is already supported (pak format hasn't been changed since UE 4.26). As for C# bindings, I've seen some interest but don't have a use case for it myself. It...

Yeah certainly! I just haven't bothered to but can if there is interest.

It seems Spotify is returning different responses (the `image` field specifically) depending on the account/bearer token used. Using rspotify's test account bearer: ```json { "collaborative": false, "description": "just a test...

And this patch allows playlists to load for me in `ncspot`: ```patch diff --git a/rspotify-model/src/playlist.rs b/rspotify-model/src/playlist.rs index 07bb7b2..776f1e2 100644 --- a/rspotify-model/src/playlist.rs +++ b/rspotify-model/src/playlist.rs @@ -5,10 +5,18 @@ use serde::{Deserialize, Serialize};...

`#[serde(default)]` will fail if the key is present with a null value: ```rust use serde::Deserialize; fn deserialize_null_default, D: serde::Deserializer

I believe this should be closed now that #480 is merged?

Likely has an encryption or compression layer on top of the save but impossible to say without seeing the file contents.

Nice! Couple things: - Is it necessary to block interaction with the rest of the GUI when the details window is open? Changes to the profile don't invalidate any data...

An issue with the underlying GUI library (egui). Not sure if there is a good way of fixing without fixing it in egui.

> ```rust > struct ModGroup { > name: String, > mods: BTreeSet, > } > > struct Profile { > name: String, > mod_groups: BTreeSet, > } > ``` Close,...