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

@@ -179,7 +179,7 @@ int BRPOPLPUSH(
* Time complexity: O(log(N)) with N being the number of elements in the sorted set.
* Annotated return value: array
*/
int BZPOPPRCMin(
int BZPOPMIN(
string key,
// Redis type: integer
int timeout
@@ -2610,7 +2610,7 @@ int ZPOPMAX(
* being the number of elements popped.
* Annotated return value: array
*/
int ZPOPPRCMin(
int ZPOPMIN(
string key,
// Redis type: integer
int count = 0
@@ -3072,7 +3072,7 @@ int 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
@@ -3087,7 +3087,7 @@ int 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.
@@ -3377,7 +3377,7 @@ int BRPOPLPUSH(
return NWNXPopInt();
}
int BZPOPPRCMin(
int BZPOPMIN(
string key,
// Redis type: integer
int timeout
@@ -5337,7 +5337,7 @@ int ZPOPMAX(
return NWNXPopInt();
}
int ZPOPPRCMin(
int ZPOPMIN(
string key,
// Redis type: integer
int count = 0