aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2025-06-26Add get_bit() method for Ints and BytesBruce Hill
2025-06-25Clean up #include parsing so it works correctly with commentsBruce Hill
2025-06-25Add fix for `.include` or `#included` files in assembly failing to triggerBruce Hill
recompilation
2025-06-25Trigger recompilation when downstream #includes for C files are updated.Bruce Hill
2025-06-24Correctly detect changes to `use`d C/header files and triggerBruce Hill
recompilation
2025-06-24Add Path.has_extension() and update manpages/api docsBruce Hill
2025-06-24Minor performance improvement for hash collisions in tablesBruce Hill
2025-06-24Sanity checkBruce Hill
2025-06-24Revert "Do text deserialization in chunks to avoid possible memory issues"Bruce Hill
(Breaks with unicode text) This reverts commit 389132400b6d3c1f7c767aaf3546d19e93909eb3.
2025-06-22Do text deserialization in chunks to avoid possible memory issuesBruce Hill
2025-06-05Update changelogBruce Hill
2025-06-05Add strikethroughBruce Hill
2025-06-04Fix spacing on non-color doctest outputBruce Hill
2025-05-25Force recompilation when modules.ini changesBruce Hill
2025-05-25Optimize codegen for enums: no longer bother with a struct wrapper, butBruce Hill
just use a C enum type instead. This will make it easier to use externally defined enums in the future.
2025-05-25Add changesBruce Hill
2025-05-25Bugfix for mutation while iteratingBruce Hill
2025-05-25Bugfix for converting negative integers to textBruce Hill
2025-05-25Improved codegen for 'when' statementsBruce Hill
2025-05-25Code cleanupBruce Hill
2025-05-25Add extra check to make sure extend is extending a type and notBruce Hill
something else
2025-05-25Add a check to ensure that Extend is extending a recognized type.Bruce Hill
2025-05-21Added Set infix operations, as well as Table.with_fallback() and fixedBruce Hill
some bugs with update assignment.
2025-05-20Add docsBruce Hill
2025-05-20Add per-file modules.ini overrideBruce Hill
2025-05-20Add more advanced configuration options to modules.ini and supportBruce Hill
automatically downloading and installing from it.
2025-05-19Add --prefix flagBruce Hill
2025-05-17Update changelogBruce Hill
2025-05-17Add --version flag for executables and more documentation.Bruce Hill
2025-05-17Add `modules.ini` file for import aliases, as well as default aliasesBruce Hill
for the built-in modules.
2025-05-17Add Path.sibling()Bruce Hill
2025-05-11Add new system for tracking versions.Bruce Hill
2025-05-09Add pattern testBruce Hill
2025-05-09Bugfix for lang infosBruce Hill
2025-05-09Bugfix for installing libraries through `.` or `..`Bruce Hill
2025-05-06Bugfix for serialization of sets and tables with fallbacksBruce Hill
2025-05-06Tweak how pipefail worksBruce Hill
2025-05-06Bugfix for commandsBruce Hill
2025-05-06Check pipe() return valueBruce Hill
2025-05-06Add -ldl flagBruce Hill
2025-05-06Discard resultBruce Hill
2025-05-06Check getrandom return valueBruce Hill
2025-05-06Check return valueBruce Hill
2025-05-06Suppress missing initializer warningBruce Hill
2025-05-06Check return valueBruce Hill
2025-05-06Check return valueBruce Hill
2025-05-06Check return valuesBruce Hill
2025-05-06Error checking for path componentsBruce Hill
2025-05-06Deprecate TOMO_PREFIX/share/tomo/lib and TOMO_PREFIX/share/tomo/modules.Bruce Hill
Instead just add lib's directory to rpath
2025-05-06Bugfix for truncation of BytesBruce Hill