summaryrefslogtreecommitdiff
path: root/src/Scripts.zig (unfollow)
Commit message (Collapse)AuthorFilesLines
2025-09-14Update codebase to Zig 0.15.1.Gravatar Michael Chaten1-4/+1
Removes compression support
2025-04-30Unicode 16.0Gravatar Sam Atman1-1/+7
Went smoothly, needed to add some scripts and adjust the magic numbers, but other than that, all set.
2025-04-30Allocation Failure TestsGravatar Sam Atman1-0/+9
These turned up an excessive amount of allocations in CanonData and CompatData, which have been reduced to two through the somewhat squirrely use of 'magic numbers'. There are now allocation tests for every allocated structure in the library, and they run to completion in a reasonable amount of time. So, that's nice.
2025-04-30Setup variants for all allocating modulesGravatar Sam Atman1-26/+40
This harmonizes the allocating modules in a couple of ways. All can now be constructed by pointer, and all treat various miscellaneous read failures as `unreachable`, which indeed they should be. The README has been updated to inform users of this option.
2025-04-30Rest of the RenamingsGravatar Sam Atman1-0/+0
These get different names, but don't otherwise change.
2025-04-29All the std.mem.Allocators that were stored just for init and deinitGravatar lch3611-7/+6
methods were removed, mem.Allocators were added to deinit as arguments.
2024-03-31Updated READMEGravatar Jose Colon Rodriguez1-4/+3
2024-03-28PropsData and errdefers for init fnsGravatar Jose Colon Rodriguez1-0/+3
2024-03-27ScriptsData and made all Datas constGravatar Jose Colon Rodriguez1-0/+226