| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add `#must_tail` to odin/parser | gingerBill | 2026-01-15 | 2 | -5/+21 |
| | | |||||
| * | Merge pull request #6125 from Wassimulator/patch-2 | gingerBill | 2026-01-14 | 1 | -1/+32 |
| |\ | | | | | Add init and fini callback procs to thread pools | ||||
| | * | use ^Thread instead of index in init and fini | Wassim Alhajomar | 2026-01-14 | 1 | -4/+4 |
| | | | |||||
| | * | cleanup | Wassim Alhajomar | 2026-01-12 | 1 | -1/+32 |
| | | | |||||
| * | | Remove old dead directory `core:sys/win32` | gingerBill | 2026-01-14 | 1 | -3/+0 |
| | | | |||||
| * | | Ensure creating a low priority thread does not assert with SCHED_OTHER policy | Nathan Wong | 2026-01-13 | 1 | -1/+5 |
| | | | |||||
| * | | Add NSWindow layout information method bindings to darwin/Foundation (#6040) | Jacob Evelyn | 2026-01-13 | 1 | -0/+20 |
| | | | | | | | | | | | | | | | This commit adds bindings for `NSWindow`'s ["Getting Layout Information"](https://developer.apple.com/documentation/appkit/nswindow?language=objc#Getting-Layout-Information) methods to the `core:sys/darwin/Foundation` package. Co-authored-by: Jacob Evelyn <j@cob.land> | ||||
| * | | Fix darwin/Foundation/NSScreen type property bindings (#6038) | Jacob Evelyn | 2026-01-13 | 1 | -3/+7 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit updates the `darwin/Foundation` package's `NSScreen` bindings to treat Objective-C "type properties" as class methods rather than instance methods. As a result, we can now access these properties like this: ```odin import NS "core:sys/darwin/Foundation" main :: proc() { NS.Screen.mainScreen() } ``` instead of this: ```odin import NS "core:sys/darwin/Foundation" main :: proc() { (^NS.Screen)(nil).mainScreen() } ``` This commit also adds a binding for `NSScreen`'s `screensHaveSeparateSpaces` type property, which was previously missing from the `darwin/Foundation` package. Co-authored-by: Jacob Evelyn <j@cob.land> | ||||
| * | | optimized slice filling in xoshiro/pcg_random_generator_proc (#6001) | Xotchkass | 2026-01-13 | 2 | -18/+26 |
| | | | |||||
| * | | Implement more Linux syscalls. (#6083) | Znarf | 2026-01-13 | 4 | -14/+186 |
| | | | |||||
| * | | remove unneeded manual definitions | Paul Page | 2026-01-12 | 1 | -14/+0 |
| | | | |||||
| * | | Update Orca bindings | Paul Page | 2026-01-12 | 1 | -96/+142 |
| |/ | |||||
| * | Merge pull request #6114 from dayllenger/master | gingerBill | 2026-01-09 | 1 | -1/+1 |
| |\ | | | | | Fix TGA header detection | ||||
| | * | Fix TGA header detection | Viktor | 2026-01-08 | 1 | -1/+1 |
| | | | |||||
| * | | Fix `EINVAL` binding to IPv6 on FreeBSD | konodin | 2026-01-08 | 1 | -1/+1 |
| |/ | |||||
| * | Move `WSAEVENT` to types.odindev-2026-01 | gingerBill | 2026-01-05 | 2 | -1/+2 |
| | | |||||
| * | Implement `LPWSAOVERLAPPED_COMPLETION_ROUTINE` correctly | gingerBill | 2026-01-05 | 1 | -2/+15 |
| | | |||||
| * | Merge pull request #6089 from Neirokan/ipv4_to_ipv6_fix | gingerBill | 2026-01-02 | 1 | -2/+2 |
| |\ | | | | | core/net: fix `map_to_ip6` offset | ||||
| | * | fix map_to_ip6 offset | Neirokan | 2026-01-01 | 1 | -2/+2 |
| | | | |||||
| * | | Minor fixes to formatting and types | gingerBill | 2026-01-02 | 2 | -7/+7 |
| | | | |||||
| * | | More formatting improvements | gingerBill | 2026-01-02 | 10 | -170/+198 |
| | | | |||||
| * | | Improve the formatting of user32.odin | gingerBill | 2026-01-02 | 1 | -319/+326 |
| | | | |||||
| * | | Improve formatting; fix types; add struct field tags | gingerBill | 2026-01-02 | 7 | -1310/+1319 |
| | | | |||||
| * | | Improve formatting and `#raw_union` logic in `core:sys/windows` | gingerBill | 2026-01-02 | 8 | -1083/+1080 |
| | | | |||||
| * | | Add boolean support for `raw_union_tag` | gingerBill | 2026-01-02 | 1 | -0/+29 |
| | | | |||||
| * | | Add `raw_union_tag` support to `MINIDUMP_CALLBACK_INPUT` | gingerBill | 2026-01-02 | 1 | -13/+44 |
| | | | |||||
| * | | Minor formatting improvements | gingerBill | 2026-01-02 | 2 | -83/+83 |
| | | | |||||
| * | | Add support to `raw_union_tag` for integers | gingerBill | 2026-01-02 | 1 | -0/+28 |
| | | | |||||
| * | | Change usage of `i32` to `c_int` where appropriate | gingerBill | 2026-01-02 | 8 | -64/+72 |
| | | | |||||
| * | | Fix typo | gingerBill | 2026-01-02 | 1 | -1/+1 |
| | | | |||||
| * | | Fix some return types in core:sys/windows | gingerBill | 2026-01-02 | 2 | -5/+5 |
| | | | |||||
| * | | Replace uses of `c.int` with `c_int` for consistency | gingerBill | 2026-01-02 | 3 | -14/+11 |
| | | | |||||
| * | | Fix `GetSystemMetricsForDpi` signature | gingerBill | 2026-01-02 | 1 | -3/+2 |
| | | | |||||
| * | | Merge pull request #5882 from IllusionMan1212/custom-json-marshalling | Jeroen van Rijn | 2026-01-01 | 2 | -3/+164 |
| |\ \ | | | | | | | encoding/json: custom json (un)marshalling | ||||
| | * | | Make custom JSON (un)marshalers more like core:fmt's | Jeroen van Rijn | 2025-12-10 | 2 | -61/+200 |
| | | | | |||||
| | * | | Merge branch 'master' into pr/5882 | Jeroen van Rijn | 2025-12-10 | 17 | -220/+451 |
| | |\ \ | |||||
| | * | | | encoding/json: error handling for custom (un)marshallers | Hisham Aburaqibah | 2025-12-02 | 2 | -4/+4 |
| | | | | | |||||
| | * | | | encoding/json: custom json (un)marshalling | IllusionMan1212 | 2025-12-02 | 2 | -44/+66 |
| | | | | | |||||
| * | | | | Add `@(rodata)` to global constants | gingerBill | 2026-01-01 | 1 | -4/+4 |
| | | | | | |||||
| * | | | | When using `fmt_write_padding`, remove the need to restore `fi.zero` since ↵ | gingerBill | 2026-01-01 | 1 | -6/+0 |
| | | | | | | | | | | | | | | | | | it is not used. | ||||
| * | | | | fix printing dozenal numbers `0z` from `0o` | gingerBill | 2026-01-01 | 1 | -2/+2 |
| | |_|/ |/| | | |||||
| * | | | Merge branch 'master' of https://github.com/odin-lang/Odin | gingerBill | 2025-12-31 | 6 | -10/+117 |
| |\ \ \ | |||||
| | * | | | [encoding/json] Allow Unmarshalling to `rune` | dozn | 2025-12-30 | 2 | -0/+10 |
| | | | | | | | | | | | | | | | | | Fixes https://github.com/odin-lang/Odin/issues/6061 | ||||
| | * | | | [encoding/json] Fix Escapes When Marshalling | dozn | 2025-12-30 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | Fixes https://github.com/odin-lang/Odin/issues/6060 and https://github.com/odin-lang/Odin/issues/6075 The boolean "true" was setting `html_safe` instead of `for_json`. Chalk one up for the "use enums instead of booleans" crowd. | ||||
| | * | | | Merge pull request #6081 from dozn/json5-and-sjson-comments | gingerBill | 2025-12-30 | 1 | -0/+26 |
| | |\ \ \ | | | | | | | | | | | Add JSON5/SJSON Comments When Marshalling | ||||
| | | * | | | Moved `first_iteration` up a couple lines so it makes sense readability-wise. | dozn | 2025-12-30 | 1 | -1/+1 |
| | | | | | | |||||
| | | * | | | Add JSON5/SJSON Comments When Marshalling | dozn | 2025-12-29 | 1 | -0/+26 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allows user-facing JSON5/SJSON to have comments explaining field usage. `json.Marshal_Options.pretty` must be enabled since we only use single-line comments (not to mention it wouldn't be terribly useful without `pretty` set anyways). We don't escape anything, so `\n` will display as "\n", but you're still able to enter in a proper newline character and it'll be displayed on multiple lines. | ||||
| | * | | | | Merge pull request #6069 from karl-zylinski/webgl-binding-fixes | gingerBill | 2025-12-30 | 2 | -6/+77 |
| | |\ \ \ \ | | | | | | | | | | | | | WebGL binding additions | ||||
| | | * | | | | Added 'set_document_title' to be able to rename the tab | Karl Zylinski | 2025-12-29 | 2 | -0/+7 |
| | | | | | | | |||||
| | | * | | | | Fix bugs in odin.js:GetActiveUniformBlockName | Karl Zylinski | 2025-12-29 | 1 | -7/+11 |
| | | | | | | | |||||