| Commit message (Collapse) | Author | Files | Lines | ||
|---|---|---|---|---|---|
| 2024-10-22 | refactor: Always access using full namespace | 1 | -11/+4 | ||
| This is my new preferred style of programming Zig :) | |||||
| 2022-01-31 | Refactor the ArgIterator interface | 1 | -311/+5 | ||
| They now follow the interface provided by the standard library. This now means that we no longer needs `args.OsIterator` as that the one from `std` can now be used directly. Also remove `args.ShellIterator` as a simular iterator exists in `std` called `ArgIteratorGeneral`. | |||||
| 2021-12-29 | Update usage of process.ArgIterator to be inline with newest zig | 1 | -1/+1 | ||
| Also add windows CI, as this compiler error was only triggered on windows builds | |||||
| 2021-12-06 | zig master updates: allocator changes (#60) | 1 | -5/+5 | ||
| 2021-10-11 | Fix regression in last commit | 1 | -1/+0 | ||
| The importing of builtin was already fixed, so the latest commit applied this fix again, which caused problems | |||||
| 2021-10-11 | zig master updates | 1 | -0/+1 | ||
| 2021-10-09 | Fix uses of builtin | 1 | -1/+1 | ||
| 2021-06-24 | Fix all new compiler errors from zig master | 1 | -0/+1 | ||
| 2021-06-24 | Fix all new compiler errors from zig master | 1 | -0/+1 | ||
| 2021-06-24 | Stay under 100 chars per line in all the code | 1 | -1/+6 | ||
| 2021-05-26 | Update to latest zig in preperation for 0.8.0 | 1 | -43/+43 | ||
| 2020-11-21 | Fix spelling error | 1 | -1/+1 | ||
| 2020-11-21 | Implement ShellIterator | 1 | -0/+262 | ||
| fixes #30 | |||||
| 2020-11-03 | Improve Diagnostic error message reporting | 1 | -1/+1 | ||
| 2020-11-03 | Improve Diagnostic error message reporting | 1 | -1/+1 | ||
| 2020-11-01 | use null sentinel in OsIterator (#27) | 1 | -2/+2 | ||
| 2020-03-01 | update for latest zig | 1 | -2/+2 | ||
| 2019-12-01 | update for latest zig | 1 | -1/+1 | ||
| 2019-11-09 | Breaking: OsIterator will now get the exe on init | 1 | -2/+10 | ||
| 2019-10-06 | fmt, mv src/ clap/ and run fmt on build | 1 | -0/+0 | ||
| 2019-06-12 | updated to newest version of zig | 1 | -10/+3 | ||
| 2019-05-28 | updated to newest version of zig | 1 | -4/+4 | ||
| 2019-01-17 | Refactored the arg iterators to new be static interface implementations | 1 | -29/+17 | ||
| * This makes arg iterators easier to understand and implement * It should also be faster than using the fieldToParent builtin | |||||
| 2018-11-14 | Restructured and make StreamingClap simpler | 1 | -0/+90 | ||
| * Also added a ComptimeClap | |||||