gingerBill
|
74458ab096
|
Merge pull request #1989 from Kelimion/cmark
Add CMark bindings
dev-2022-09
|
2022-09-01 23:02:30 +01:00 |
|
Jeroen van Rijn
|
c39b1a31db
|
vendor:cmark -> vendor:commonmark
|
2022-09-01 23:44:38 +02:00 |
|
Jeroen van Rijn
|
635c7fa153
|
Merge branch 'master' into cmark
|
2022-09-01 23:42:15 +02:00 |
|
Jeroen van Rijn
|
b7ac0a9e8d
|
Merge pull request #2006 from thePHTest/sort_with_indices
fix sort_by_with_indices for zero and one length slices
|
2022-09-01 22:21:44 +02:00 |
|
Phil
|
3f3ae4b2b6
|
fix sort_by_with_indices for zero and one length slices:
|
2022-09-01 13:14:10 -07:00 |
|
Jeroen van Rijn
|
c2423dc07f
|
Merge pull request #2005 from thePHTest/sort_with_indices
have sort_with_indices allocate. Add a couple convenience procs for using the indices result to sort other slices.
|
2022-09-01 21:42:16 +02:00 |
|
Phil
|
1296630160
|
cleanup tests
|
2022-09-01 12:34:08 -07:00 |
|
Phil
|
63eec25044
|
add sort_by_indices overload and test
|
2022-09-01 12:32:33 -07:00 |
|
Phil
|
7a9b0731cf
|
add tests for sort_by_indices
|
2022-09-01 12:13:15 -07:00 |
|
Phil
|
d45661c405
|
cleanup slice sorting with indices changes
|
2022-09-01 11:51:45 -07:00 |
|
Phil
|
002bec256a
|
have sort_with_indices allocate. Add a couple convenience procs for using the indices result to sort other slices.
|
2022-09-01 11:46:59 -07:00 |
|
Jeroen van Rijn
|
000861cba8
|
Merge pull request #2003 from Kelimion/tests
Add tests for `slice.sort_with_indices`
|
2022-09-01 18:19:47 +02:00 |
|
Jeroen van Rijn
|
36473b2774
|
Add test for core:slice.
|
2022-09-01 18:04:48 +02:00 |
|
gingerBill
|
4188f50105
|
Merge branch 'master' of https://github.com/odin-lang/Odin
|
2022-09-01 16:33:50 +01:00 |
|
gingerBill
|
3e3b9ae2df
|
Fix #1994 Returning to err: Maybe(Error) raises compiler assert
|
2022-09-01 16:33:44 +01:00 |
|
gingerBill
|
e89f0de232
|
Merge pull request #1997 from thePHTest/sort_with_indices
add sort_with_indices family of procs
|
2022-09-01 16:27:00 +01:00 |
|
gingerBill
|
4858e16a11
|
Merge pull request #1976 from matias-eduardo/patch-2
Add Extended Window Styles (WS_EX)
|
2022-09-01 16:26:51 +01:00 |
|
gingerBill
|
902a6db0e1
|
Fix #2000 - allow #soa array iteration by pointer
|
2022-09-01 16:15:09 +01:00 |
|
gingerBill
|
19ae6122c7
|
Fix #2002 (allow array *= matrix)
|
2022-09-01 16:11:03 +01:00 |
|
gingerBill
|
b82b91ea08
|
Fix #1974 by erring on untyped parameters to intrinsics.objc_send
|
2022-09-01 15:15:51 +01:00 |
|
gingerBill
|
636f0d7063
|
Merge branch 'master' of https://github.com/odin-lang/Odin
|
2022-09-01 15:11:58 +01:00 |
|
gingerBill
|
ed73441a4c
|
Fix code generation related to Objective-C related x->y() calls
|
2022-09-01 15:11:53 +01:00 |
|
Jeroen van Rijn
|
4c2be6cd49
|
Merge pull request #2001 from Lperlind/staging/add-window-bindings
Kernel32: Add more window bindings and improve consistency
|
2022-09-01 15:57:58 +02:00 |
|
Lucas Perlind
|
f3f51bd643
|
Kernel32: Add more window bindings and improve consistency
|
2022-09-01 22:57:27 +10:00 |
|
Jeroen van Rijn
|
4c5672119a
|
Merge pull request #1998 from thePHTest/ease_fix
fix ease.odin compile error from missing comma
|
2022-09-01 00:14:22 +02:00 |
|
Phil
|
8482f943ea
|
fix ease.odin compile error from missing comma
|
2022-08-31 14:14:06 -07:00 |
|
Phil
|
15aaf7dfa0
|
add sort_with_indices family of procs
|
2022-08-31 14:06:21 -07:00 |
|
Jeroen van Rijn
|
768abf83f6
|
Merge pull request #1993 from SyndaKitty/master
Fix for SDL `GetPreferredLocales`
|
2022-08-31 14:09:35 +02:00 |
|
gingerBill
|
ca76d53452
|
Fix more typos
|
2022-08-31 11:07:31 +01:00 |
|
gingerBill
|
b0904d6598
|
Merge branch 'master' of https://github.com/odin-lang/Odin
|
2022-08-31 11:02:52 +01:00 |
|
gingerBill
|
b0a09f7b9e
|
Fix typo
|
2022-08-31 11:02:36 +01:00 |
|
SyndaKai
|
eb4891bcc8
|
Fix for SDL GetPreferredLocales
|
2022-08-31 04:28:46 -04:00 |
|
Jeroen van Rijn
|
803fd8f037
|
Wrap CMark allocator as Odin allocator
```odin
// Smaller allocation to larger allocation resize
{
// Allocated on CMark's allocator
foo := make([dynamic]int, 13)
for i in 0..<13 {
foo[i] = i
}
fmt.println("Before resize:", foo)
resize(&foo, 42)
fmt.println("After resize:", foo)
delete(foo)
}
```
|
2022-08-30 16:35:18 +02:00 |
|
Jeroen van Rijn
|
67bdb5b1a3
|
[cmark] Add static library for Linux
Built on Ubuntu 20.04.3 LTS.
Remove Odin allocator wrapper.
|
2022-08-30 16:02:40 +02:00 |
|
Jeroen van Rijn
|
acc635b535
|
[cmark] Move wrapped allocator next to get_default_allocator
|
2022-08-30 14:56:10 +02:00 |
|
Jeroen van Rijn
|
4e8ce87792
|
[cmark] Allow wrapping context.allocator
|
2022-08-30 14:53:48 +02:00 |
|
Jeroen van Rijn
|
2c8daa25dc
|
[cmark] Add wrappers.
|
2022-08-30 13:55:53 +02:00 |
|
Jeroen van Rijn
|
054ee0a8b5
|
[cmark] Change to static library
|
2022-08-30 13:32:07 +02:00 |
|
Jeroen van Rijn
|
d0cadaf1a6
|
Add CMark bindings
|
2022-08-30 00:54:12 +02:00 |
|
Jeroen van Rijn
|
317db2758a
|
Revert "Fix #1985"
This reverts commit 25102d4792.
|
2022-08-29 14:50:18 +02:00 |
|
Jeroen van Rijn
|
25102d4792
|
Fix #1985
|
2022-08-29 14:47:00 +02:00 |
|
gingerBill
|
d39f1c461e
|
Merge pull request #1988 from colrdavidson/queue_peek
Add peek_front and peek_back
|
2022-08-29 12:02:17 +01:00 |
|
Colin Davidson
|
7a6fc3a93b
|
Add bounds check for peeks
|
2022-08-29 02:03:12 -07:00 |
|
Colin Davidson
|
83c002c197
|
add peeks
|
2022-08-29 01:53:40 -07:00 |
|
gingerBill
|
fc47b5dee0
|
Merge pull request #1987 from colrdavidson/more_queue
Add more queue helpers
|
2022-08-29 09:38:53 +01:00 |
|
Colin Davidson
|
6c2e0b09ba
|
Add more queue helpers
|
2022-08-29 00:43:35 -07:00 |
|
Jeroen van Rijn
|
3d4698debe
|
[TGA] Add B&W and RLE color-mapped.
|
2022-08-29 00:29:50 +02:00 |
|
Jeroen van Rijn
|
4a25cfb27c
|
Merge pull request #1984 from Kelimion/tga
TGA improvements
|
2022-08-28 21:58:20 +02:00 |
|
Jeroen van Rijn
|
294bd6a446
|
[TGA] Add B5G5R5 15- and 16-bit support.
|
2022-08-28 21:48:51 +02:00 |
|
Jeroen van Rijn
|
d0109db23b
|
[TGA] Add support for Top-Right and Bottom-Right origins.
|
2022-08-28 19:41:42 +02:00 |
|