Update for 6.3 and change to File Service Queue (#34)

* add request queue processing on clientside, switch to net7

* reuse httpclient

* dispose and renew httpclient on building connection

* add handling of QueueRequestDto to downloads

* group download by host and port

* refactor SendAsync to SendRequestAsync for readability

* add holding ctrl before clearing cache, add tooltip

* update pathing

* fixes to api usage in client

* fix rendermodel offsets

* fixes for downloads

Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
This commit is contained in:
rootdarkarchon
2023-01-11 14:41:13 +01:00
committed by GitHub
parent 964b29b87e
commit 099ac2b3a1
7 changed files with 130 additions and 38 deletions

View File

@@ -25,18 +25,18 @@ public unsafe struct RenderModel
[FieldOffset( 0x60 )]
public int BoneListCount;
[FieldOffset( 0x68 )]
[FieldOffset( 0x70 )]
private void* UnkDXBuffer1;
[FieldOffset( 0x70 )]
[FieldOffset( 0x78 )]
private void* UnkDXBuffer2;
[FieldOffset( 0x78 )]
[FieldOffset( 0x80 )]
private void* UnkDXBuffer3;
[FieldOffset( 0x90 )]
[FieldOffset( 0x98 )]
public void** Materials;
[FieldOffset( 0x98 )]
[FieldOffset( 0xA0 )]
public int MaterialCount;
}