2025/11/30 Update

Updated for NWN:EE 37-17
Updated NWNxEE libraries.
Updated nim tooling
Updated PEPs
Associated new GUI module event script.
Full compile.
This commit is contained in:
Jaysyn904
2025-12-01 00:00:34 -05:00
parent 4d7b173526
commit d0a4ee6f1f
540 changed files with 62740 additions and 60703 deletions

View File

@@ -184,7 +184,7 @@ int NWNX_Redis_BRPOPLPUSH(
* Time complexity: O(log(N)) with N being the number of elements in the sorted set.
* Annotated return value: array
*/
int NWNX_Redis_BZPOPPRCMin(
int NWNX_Redis_BZPOPMIN(
string key,
// Redis type: integer
int timeout
@@ -2615,7 +2615,7 @@ int NWNX_Redis_ZPOPMAX(
* being the number of elements popped.
* Annotated return value: array
*/
int NWNX_Redis_ZPOPPRCMin(
int NWNX_Redis_ZPOPMIN(
string key,
// Redis type: integer
int count = 0
@@ -3077,7 +3077,7 @@ int NWNX_Redis_XREVRANGE(
/**
* XLEN
*
* Return the number of entires in a stream
* Return the number of entries in a stream
*
* Time complexity: O(1)
* Annotated return value: integer
@@ -3092,7 +3092,7 @@ int NWNX_Redis_XLEN(
* Return never seen elements in multiple streams, with IDs greater than the ones reported by the caller for each stream. Can block.
*
* Time complexity: For each stream mentioned: O(N) with N being the number of elements being
* returned, it menas that XREAD-ing with a fixed COUNT is O(1). Note that when
* returned, it means that XREAD-ing with a fixed COUNT is O(1). Note that when
* the BLOCK option is used, XADD will pay O(M) time in order to serve the M
* clients blocked on the stream getting new data.
@@ -3382,7 +3382,7 @@ int NWNX_Redis_BRPOPLPUSH(
return NWNXPopInt();
}
int NWNX_Redis_BZPOPPRCMin(
int NWNX_Redis_BZPOPMIN(
string key,
// Redis type: integer
int timeout
@@ -5342,7 +5342,7 @@ int NWNX_Redis_ZPOPMAX(
return NWNXPopInt();
}
int NWNX_Redis_ZPOPPRCMin(
int NWNX_Redis_ZPOPMIN(
string key,
// Redis type: integer
int count = 0