aboutsummaryrefslogtreecommitdiff
path: root/environment.c
AgeCommit message (Collapse)Author
2024-10-28Merge branch 'main' into internal-textsinternal-textsBruce Hill
2024-10-27Finish deprecating stack refs with &Bruce Hill
2024-10-27Update DateTime API to have separate methods for getting each componentBruce Hill
instead of get(...)
2024-10-10Convert types.{c,h}Bruce Hill
2024-10-10Fix issue with non-ID chars in filenamesBruce Hill
2024-10-09Change function syntax from `func(args)->ret` to `func(args -> ret)`Bruce Hill
2024-10-09Tidy up some function annotations to use func(x,y:Foo) syntax instead ofBruce Hill
func(x:Foo,y:Foo)
2024-09-30Rename TypeInfo -> TypeInfo_t and fix up some typeinfo codeBruce Hill
2024-09-30Parameterize with timezonesBruce Hill
2024-09-29Fix some timezone issuesBruce Hill
2024-09-29Add DateTimeBruce Hill
2024-09-27Support iterating over thunks that always return non-null values (usefulBruce Hill
for infinite loops)
2024-09-24Add '$' prefix on all user codeBruce Hill
2024-09-24Rename `from_unsafe_text` to `without_escaping`Bruce Hill
2024-09-23Support creating parent directories as needed (mkdir -p) and also set aBruce Hill
better default permission for new dirs
2024-09-23Add shell escaping for arrays of textBruce Hill
2024-09-18Remove dead codeBruce Hill
2024-09-17Perform topological ordering when compiling typedefs so users don't needBruce Hill
to think about ordering their definitions.
2024-09-16Update Shell API to have byte-based mode and by_line() just like filesBruce Hill
2024-09-16Have Text:matches() return an optional array of matchesBruce Hill
2024-09-16Add some basic pattern matching/suffix code for pathsBruce Hill
2024-09-15Add optional:or_exit(...)Bruce Hill
2024-09-15Update path reading APIs to use optional values instead of erroringBruce Hill
2024-09-15Add a Byte datatypeBruce Hill
2024-09-14Fix Path:by_line() iteratorBruce Hill
2024-09-13Rename builtins/ -> stdlib/Bruce Hill
2024-09-13Rename builtins to use plurals when appropriateBruce Hill
2024-09-13Code cleanupBruce Hill
2024-09-13Move cord helper functions into their own fileBruce Hill
2024-09-12Fix up CString:as_text()Bruce Hill
2024-09-12Add sleep()Bruce Hill
2024-09-12Make sure global types don't get library's prefixBruce Hill
2024-09-12Automatically interpolate ints for pattern/shell/pathBruce Hill
2024-09-11Use optionals for iteratorsBruce Hill
2024-09-11Change *:from_text() methods to return optional values and set up CLIBruce Hill
parsing to use that approach
2024-09-11Add optional typesBruce Hill
2024-09-09Add (/path):by_line()Bruce Hill
2024-09-09Improve toolBruce Hill
2024-09-09Fix up some stuff with path escapingBruce Hill
2024-09-09Add Path.from_unsafe_text() etcBruce Hill
2024-09-09Fix up ini exampleBruce Hill
2024-09-09Restore path interpolationBruce Hill
2024-09-09Add Text.starts_with() and Text.ends_with()Bruce Hill
2024-09-09Fix some logic for extensions and base namesBruce Hill
2024-09-09Add Path.base_name(), Path.parent(), Path.extension()Bruce Hill
2024-09-09Add mktemp functionalityBruce Hill
2024-09-09For parsing paths, use nested parens: (./foo), also add some methodsBruce Hill
2024-09-09More methodsBruce Hill
2024-09-09More path stuff including some methodsBruce Hill
2024-09-09Initial working versionBruce Hill