Infernio
Infernio
Maybe we should consider generating at least that part of the docs then? See also #579.
This is the issue for eventually getting WB to natively run on Linux, without wine. The current status of this issue is that we're keeping it in the back of...
Was scratching my head why code like this broke on Linux: ```python dict_of_paths = {} # dict construction etc. here some_val = dict_of_paths[some_path] # blows on Linux ``` Then I...
We can't just use `lower()` either - normcase does more on Windows: https://docs.python.org/3/library/os.path.html#os.path.normcase Edit: we can't even put it into env and change the behavior by OS - at least...
The patch looks fine to me. Not sure if the games (via wine/proton) themselves obey XDG specifications, but at the moment you need to specify paths via CLI anyways, so...
Big obvious goal soon, I think.
Well the problem is that MelUnion is a record element, used for defining subrecords, while Mre* are actual record classes, used for defining record types. That means they're not based...
Warning: novel incoming 😛 Re: the `0L` - I pretty much just copied those from existing record definitions. They're mostly used as defaults for subrecord flag fields, probably won't matter...
Well, `TES4` has a whole bunch of other data that comes after the header, e.g. the `HEDR`, `OFST`, `DELE`, `CNAM`, `MAST` and `DATA` subrecords in Oblivion. `GRUP` has its header,...
> for instance the dumpExtra complicates stuff and adds an if check on every single loadData that should be avoided. Yeah, `dumpExtra` is really ugly. I dropped a whole bunch...