gingerBill
|
e8ca4a24fa
|
Add assert to freelist_push_with_index
|
2026-03-01 13:28:30 +00:00 |
|
gingerBill
|
7cc68da719
|
Merge pull request #6342 from fendevel/webgl-additions
webgl: Add bindings, fix `Tex*Image*D`
|
2026-03-01 13:15:56 +00:00 |
|
gingerBill
|
757bdf0e87
|
Remove TODO
|
2026-03-01 13:06:11 +00:00 |
|
gingerBill
|
05a951b338
|
Fix name lookup
|
2026-03-01 13:05:51 +00:00 |
|
gingerBill
|
c685c312c5
|
Make the tokenizer work with a custom hash map protected by a spinlock
|
2026-03-01 13:00:27 +00:00 |
|
Jeroen van Rijn
|
a0b9d710f7
|
Merge pull request #6336 from bplu4t2f/master
Fix MultiByteToWideChar usage in utf8_to_wstring_buf
|
2026-02-28 13:16:39 +01:00 |
|
bplu4t2f
|
1e0f5a691c
|
Fix overflow edge cases on 32-bit systems.
|
2026-02-28 11:39:12 +01:00 |
|
fendevel
|
eeb7e775f3
|
webgl: Add bindings, fix Tex*Image*D
|
2026-02-28 00:37:34 +00:00 |
|
miningape
|
4ec443df9b
|
fix: strings.substring not returning end of range
|
2026-02-28 00:44:26 +01:00 |
|
Laytan Laats
|
6a6460e824
|
fix another old os use in when statement
|
2026-02-27 22:11:11 +01:00 |
|
Laytan
|
90118d6508
|
Merge pull request #6337 from andzdroid/patch-2
nbio: fix op re-use
|
2026-02-27 21:18:31 +01:00 |
|
Laytan Laats
|
f61a216c9f
|
nbio: put clearing of list nodes in proper place and simplify test
|
2026-02-27 21:04:43 +01:00 |
|
bplu4t2f
|
9883e4ec29
|
Handle edge cases: Allocation error, extremely long input
|
2026-02-27 19:16:34 +01:00 |
|
Bruno
|
e65dcd64b8
|
add bindings to allow custom cursors
|
2026-02-27 09:54:26 -03:00 |
|
bplu4t2f
|
fa3441936c
|
Fix utf8_to_utf16_alloc edge case, and improve utf8_to_* documentation
|
2026-02-26 20:52:00 +01:00 |
|
bplu4t2f
|
e75d0694ba
|
win32 utf8_to_utf16_buf now null-terminates because _alloc did too. utf8_to_utf16_alloc no longer truncates trailing zero characters. utf8_to_wstring adjusted accordingly, including edge cases.
|
2026-02-26 18:14:34 +01:00 |
|
andzdroid
|
334a554de3
|
nbio: fix op re-use
|
2026-02-26 00:31:12 +00:00 |
|
bplu4t2f
|
730f417ecb
|
Fix MultiByteToWideChar usage in utf8_to_wstring_buf
|
2026-02-25 23:02:14 +01:00 |
|
Faker-09
|
61d53212dd
|
Handle map iterator reset for reuse + fix example (#6335)
* Reset the handle_map iterators for reuse
* Make the handle_map example more compilable
|
2026-02-25 21:41:00 +01:00 |
|
Laytan Laats
|
8bb8344ad6
|
xar: fix freelist_push_with_index using freelist_index_of which doesn't exist
|
2026-02-25 19:01:30 +01:00 |
|
Jeroen van Rijn
|
a7b2471a26
|
Update handle_map doc string
|
2026-02-25 17:33:33 +01:00 |
|
Shane Shrybman
|
2a56a943d2
|
core:bufio remove core:mem dependency
|
2026-02-25 09:17:48 -05:00 |
|
George Potoshin
|
5335bdbe34
|
[core:text/regex] Follow up to fix #6323 and add test case. As was said in the issue discussion I had suspicion that there may be a sibling bug in .Assert_Non_Word_Boundary implementation and I was able to confirm that with re.findall(rB", ") python code. Odin implementation outputed an empty string wherase python gave "'". That is the same bug related to incorrect logic on string ends. This commit makes implementation of those 2 instructions cleaner and adds a test case.
|
2026-02-25 14:33:09 +01:00 |
|
Jeroen van Rijn
|
e696073d7b
|
[core:text/regex] Fix #6323 and add test case
Thanks to @GPotoshin for the fix.
|
2026-02-25 10:49:27 +01:00 |
|
Jeroen van Rijn
|
545d17fd8d
|
Fix core:sys/regex debug output
|
2026-02-24 22:40:32 +01:00 |
|
Jeroen van Rijn
|
1e1e00c68e
|
[core:sys/info] One more thing
|
2026-02-24 14:48:09 +01:00 |
|
Jeroen van Rijn
|
2cc7fe6d16
|
[core:sys/info] Fix small doc render issue
|
2026-02-24 14:46:30 +01:00 |
|
Jeroen van Rijn
|
853afea0c7
|
[core:container/priority_queue] Make example visible on package overview
|
2026-02-24 13:18:56 +01:00 |
|
Jeroen van Rijn
|
4321efacc3
|
[core:container/priority_queue] Add example and tests
|
2026-02-24 13:05:26 +01:00 |
|
Jeroen van Rijn
|
af43e6851b
|
[core:sys/info] Remove , ok
|
2026-02-23 23:55:36 +01:00 |
|
Jeroen van Rijn
|
ea80eab75a
|
[core:sys/info] Remove @(init) where practical
|
2026-02-23 23:09:37 +01:00 |
|
gingerBill
|
4581f57953
|
Merge pull request #6320 from Faker-09/handle_map_duplicate_assignment
In handle_map.dynamic_add(), remove redundant assignment
|
2026-02-23 13:49:02 +00:00 |
|
Shane Shrybman
|
0ffd740583
|
core:bytes add loc := #caller_location
|
2026-02-22 10:18:04 -05:00 |
|
Jeroen van Rijn
|
1f18672110
|
Merge pull request #6312 from xandaron/add-win32-functions
added 2 user32 functions
|
2026-02-21 14:51:27 +01:00 |
|
Jeroen van Rijn
|
82b3917300
|
Update unicode.xml to 17
|
2026-02-21 14:02:41 +01:00 |
|
Alex Davis
|
9359cfa39e
|
added 2 user32 functions
|
2026-02-21 10:15:31 +00:00 |
|
Jeroen van Rijn
|
ac11491979
|
Update generated table
|
2026-02-21 01:55:07 +01:00 |
|
Jeroen van Rijn
|
98b65f2c2e
|
Update unicode generator + test
|
2026-02-21 01:54:17 +01:00 |
|
Jeroen van Rijn
|
11d2d37277
|
Better.
|
2026-02-20 19:31:50 +01:00 |
|
Jeroen van Rijn
|
3299981433
|
core:sys/info: Fix GPU enumeration loop
|
2026-02-20 19:25:17 +01:00 |
|
Jeroen van Rijn
|
b6f064100a
|
Merge pull request #6309 from Faker-09/xar_iter_reset
core:container/xar reset iterators for easy reuse
|
2026-02-20 19:12:33 +01:00 |
|
Shane Shrybman
|
94fa423cac
|
Reset the xar freelist iterators' index to 0 for easy reuse
|
2026-02-20 12:06:38 -05:00 |
|
Shane Shrybman
|
baaea5c1e6
|
Reset the xar iterator index to 0 for easy reuse
|
2026-02-20 11:28:50 -05:00 |
|
Yawning Angel
|
4ef6300eb3
|
core/crypto/ed25519: Add private_key_generate
|
2026-02-20 04:10:54 +09:00 |
|
Yawning Angel
|
7e7515d7d9
|
core/crypto/ecdsa: Add ECDSA support
|
2026-02-20 04:10:54 +09:00 |
|
Yawning Angel
|
49ab240c45
|
core/crypto/_weierstrass: Add Shamir-Strauss
|
2026-02-20 03:59:34 +09:00 |
|
Yawning Angel
|
ffa6fc2a67
|
core/crypto/_weierstrass: Add scalar field inversion
|
2026-02-20 03:59:34 +09:00 |
|
gingerBill
|
aea6274a10
|
Fix _mkdir_all for wasi
|
2026-02-19 14:54:34 +00:00 |
|
gingerBill
|
b643b0b1a9
|
Fix _copy_directory_all_native
|
2026-02-19 14:05:49 +00:00 |
|
gingerBill
|
cf3ac07a7e
|
Fix copy_directory_all
|
2026-02-19 14:00:38 +00:00 |
|