FreezyLemon

Results 90 comments of FreezyLemon

The only date format I can find is YYYY-MM-DD: https://github.com/erengy/taiga/blob/2b7a7dc1bc368b4b428821472fae46878ef51ecb/src/base/time.cpp#L93-L95 Can you elaborate where exactly you see YY/MM/DD? There could maybe be different 'to_string' functions based on whether it's for...

Ah, that makes sense. If we want to adapt the Date formatting to the system, I think the easiest out-of-the-box way is via std::locale. Looking at the classes `Date` and...

Maybe take a look at #129. There doesn't seem to be a decision about protocol/interface yet, and I think (apart from multi-threading) this is the biggest blocker for external addons.

Hey, you're welcome. I sadly don't know much more than you do, and I am not aware of any sort of specific roadmap. The [milestones](https://github.com/erengy/taiga/milestones) lay a rough outline in...

I'd like to go for this one. The one topic I'm not very sure about is compatibility. My idea would be simple: Change from ```xml 1.3.1 ... ``` to ```xml...

Ok, after reading through the compat code it seems pretty clear. anime.xml and history.xml do not have downwards-compatibility code since 1.4.0-beta1 (while 1.3.1 still has some code for XML files...

I'd like to implement this - the idea seems simple enough. 1. Create a class inheriting from win::Thread that runs the scan in its `ThreadProc` 2. Replace the `ScanAvailableEpisodes` calls...

Hi @erengy, you're right. I've been reading the code for a bit and implementing this idea in a truly thread-safe way seems like it would need a lot of work...

I'll add that scan performance seems to be worse on any kind of network share. For example on a SATA HDD my library takes around 1 second to scan (talking...

Rust has changed the default pipe buffer size from 4kb to 64kb: rust-lang/rust/pull/95782. Maybe try compiling with a cargo/rustc version >=1.62.0 and try again. The actual problem isn't solved (some...