aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * fix map_to_ip6 offsetNeirokan2026-01-011-2/+2
| |
* | Minor fixes to formatting and typesgingerBill2026-01-022-7/+7
| |
* | More formatting improvementsgingerBill2026-01-0210-170/+198
| |
* | Improve the formatting of user32.odingingerBill2026-01-021-319/+326
| |
* | Improve formatting; fix types; add struct field tagsgingerBill2026-01-027-1310/+1319
| |
* | Improve formatting and `#raw_union` logic in `core:sys/windows`gingerBill2026-01-028-1083/+1080
| |
* | Add boolean support for `raw_union_tag`gingerBill2026-01-021-0/+29
| |
* | Add `raw_union_tag` support to `MINIDUMP_CALLBACK_INPUT`gingerBill2026-01-021-13/+44
| |
* | Minor formatting improvementsgingerBill2026-01-022-83/+83
| |
* | Add support to `raw_union_tag` for integersgingerBill2026-01-021-0/+28
| |
* | Change usage of `i32` to `c_int` where appropriategingerBill2026-01-028-64/+72
| |
* | Fix typogingerBill2026-01-021-1/+1
| |
* | Fix some return types in core:sys/windowsgingerBill2026-01-022-5/+5
| |
* | Replace uses of `c.int` with `c_int` for consistencygingerBill2026-01-023-14/+11
| |
* | Fix `GetSystemMetricsForDpi` signaturegingerBill2026-01-021-3/+2
| |
* | Merge pull request #5882 from IllusionMan1212/custom-json-marshallingJeroen van Rijn2026-01-012-3/+164
|\ \ | | | | | | encoding/json: custom json (un)marshalling
| * | Make custom JSON (un)marshalers more like core:fmt'sJeroen van Rijn2025-12-102-61/+200
| | |
| * | Merge branch 'master' into pr/5882Jeroen van Rijn2025-12-1076-10126/+16792
| |\ \
| * | | encoding/json: error handling for custom (un)marshallersHisham Aburaqibah2025-12-022-4/+4
| | | |
| * | | encoding/json: custom json (un)marshallingIllusionMan12122025-12-022-44/+66
| | | |
* | | | Add `@(rodata)` to global constantsgingerBill2026-01-011-4/+4
| | | |
* | | | When using `fmt_write_padding`, remove the need to restore `fi.zero` since ↵gingerBill2026-01-011-6/+0
| | | | | | | | | | | | | | | | it is not used.
* | | | fix printing dozenal numbers `0z` from `0o`gingerBill2026-01-011-2/+2
| |_|/ |/| |
* | | Merge branch 'master' of https://github.com/odin-lang/OdingingerBill2025-12-3113-24/+354
|\ \ \
| * \ \ Merge pull request #6086 from ske2004/fix-literal-endiannessgingerBill2025-12-314-5/+112
| |\ \ \ | | | | | | | | | | Fix literal endianness (fix #6068)
| | * | | fix typoske2025-12-301-1/+1
| | | | |
| | * | | Fix literal endianness (fix #6068)ske2025-12-304-5/+112
| | | | |
| * | | | Merge pull request #6087 from dozn/json-unmarshal-runesLaytan2025-12-312-0/+10
| |\ \ \ \ | | | | | | | | | | | | [encoding/json] Allow Unmarshalling to rune
| | * \ \ \ Merge branch 'odin-lang:master' into json-unmarshal-runesdozn2025-12-300-0/+0
| | |\ \ \ \ | | |/ / / / | |/| | | |
| * | | | | Merge pull request #6085 from dozn/json-null-marshalLaytan2025-12-311-3/+3
| |\ \ \ \ \ | | |_|/ / / | |/| | | | [encoding/json] Fix Unicode Output When Marshalling
| | | * | | [encoding/json] Allow Unmarshalling to `rune`dozn2025-12-302-0/+10
| | |/ / / | | | | | | | | | | | | | | | Fixes https://github.com/odin-lang/Odin/issues/6061
| | * / / [encoding/json] Fix Escapes When Marshallingdozn2025-12-301-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-commentsgingerBill2025-12-301-0/+26
| |\ \ \ | | | | | | | | | | Add JSON5/SJSON Comments When Marshalling
| | * | | Moved `first_iteration` up a couple lines so it makes sense readability-wise.dozn2025-12-301-1/+1
| | | | |
| | * | | Add JSON5/SJSON Comments When Marshallingdozn2025-12-291-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-fixesgingerBill2025-12-304-8/+195
| |\ \ \ \ | | | | | | | | | | | | WebGL binding additions
| | * | | | Added 'set_document_title' to be able to rename the tabKarl Zylinski2025-12-292-0/+7
| | | | | |
| | * | | | Fix bugs in odin.js:GetActiveUniformBlockNameKarl Zylinski2025-12-291-7/+11
| | | | | |
| | * | | | Added CheckFramebufferStatus to WebGL bindingsKarl Zylinski2025-12-292-0/+4
| | | | | |
| | * | | | More webgl bindings and fixesKarl Zylinski2025-12-272-8/+36
| | | | | |
| | * | | | More allocator-aware webgl bindings and added more missing bindings.Karl Zylinski2025-12-263-1/+82
| | | | | |
| | * | | | WebGL: Add GetActiveAttrib bindingKarl Zylinski2025-12-262-1/+64
| | | | | |
| * | | | | Merge pull request #6056 from d-us-vb/patch-1gingerBill2025-12-301-1/+1
| |\ \ \ \ \ | | | | | | | | | | | | | | Update letter.odin
| | * | | | | Update letter.odinDusty Miller2025-12-221-1/+1
| | | | | | | | | | | | | | | | | | | | | Fix MAX_RUNE to include planes up to 16.
| * | | | | | Merge pull request #6079 from krnowak/krnowak/fix-proc-inlininggingerBill2025-12-301-7/+7
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Fix handling of #force_inline
| | * | | | | | Fix handling of #force_inlineKrzesimir Nowak2025-12-291-7/+7
| | | |_|/ / / | | |/| | | |
* | / | | | | Rename `xar.Xar` to `xar.Array`gingerBill2025-12-311-25/+25
|/ / / / / /
* | | | | | Add `globaldynamic` `thread_local` model (same as the current `default`)gingerBill2025-12-302-0/+4
| | | | | |
* | | | | | Merge branch 'master' of https://github.com/odin-lang/OdingingerBill2025-12-309-53/+108
|\ \ \ \ \ \
| * \ \ \ \ \ Merge pull request #6082 from harold-b/hb.fix-objc-auto-msgsend-class-methodsLaytan2025-12-301-8/+3
| |\ \ \ \ \ \ | | |/ / / / / | |/| | | | | Fix auto objc_msgSend incorrectly treating certain class methods as instance methods.