| Commit message (Collapse) | Author | Files | Lines | ||
|---|---|---|---|---|---|
| 2024-10-22 | refactor: Always access using full namespace | 1 | -52/+43 | ||
| This is my new preferred style of programming Zig :) | |||||
| 2024-07-18 | feat: Allow for the assignment separator to be configured | 1 | -116/+159 | ||
| 2022-03-09 | Allow for clap to parse argument values into types | 1 | -13/+21 | ||
| This changes - `.flag`, `.option`, `.options` and `.positionals` are now just fields you access on the result of `parse` and `parseEx`. - `clap.ComptimeClap` has been removed. - `clap.StreamingClap` is now called `clap.streaming.Clap` - `parse` and `parseEx` now takes a `value_parsers` argument that provides the parsers to parse values. - Remove `helpEx`, `helpFull`, `usageEx` and `usageFull`. They now just expect `Id` to have methods for getting the description and value texts. | |||||
| 2022-02-25 | Revert "Change clap into generating a struct" | 1 | -6/+6 | ||
| This reverts commit cfaac64c404fb1c2e892880410aa3b7dd881ea58. | |||||
| 2022-02-25 | Change clap into generating a struct | 1 | -6/+6 | ||
| This changes - `.flag`, `.option`, `.options` and `.positionals` are now just fields you access. - Move the current `clap.parse` and friends into `clap.untyped.parse` - This is in preperation for `clap.typed.parse` | |||||
| 2022-01-31 | Refactor the ArgIterator interface | 1 | -5/+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-11-29 | Fix chaining typo | 1 | -3/+3 | ||
| fixes #58 | |||||
| 2021-06-24 | Stay under 100 chars per line in all the code | 1 | -5/+17 | ||
| 2021-05-26 | Update to latest zig in preperation for 0.8.0 | 1 | -33/+33 | ||
| 2021-05-08 | Modernize codebase | 1 | -107/+77 | ||
| * Better naming for variables * Follow naming style of enums * Use `writer()` instead of `outStream()` * Change many initializers to be a one liner * Don't explicitly initialize fields to their default value | |||||
| 2021-04-28 | Refactor Diagnostic (and others) into a ParseOption struct | 1 | -19/+21 | ||
| This allows for default arguments, which we can also extend without breaking peoples code in the future. This is a breaking change right now though. | |||||
| 2021-01-10 | zig master updates | 1 | -1/+1 | ||
| 2020-11-21 | Support all arguments after -- being positionals | 1 | -78/+106 | ||
| 2020-11-10 | Better parseParam | 1 | -9/+1 | ||
| 2020-11-10 | Better parseParam | 1 | -9/+1 | ||
| 2020-11-03 | Improve Diagnostic error message reporting | 1 | -14/+78 | ||
| 2020-11-03 | Improve Diagnostic error message reporting | 1 | -14/+78 | ||
| 2020-11-02 | Replace `var` with `anytype` | 1 | -1/+1 | ||
| 2020-11-02 | Report error context in Diagnostic (#26) | 1 | -39/+45 | ||
| 2020-11-02 | Report error context in Diagnostic (#26) | 1 | -39/+45 | ||
| 2020-09-06 | parse and validate multiple option | 1 | -10/+24 | ||
| 2020-08-28 | parse and validate multiple option | 1 | -10/+24 | ||
| 2019-12-10 | update for latest zig (typeOf was renamed) | 1 | -1/+1 | ||
| 2019-12-01 | update for latest zig | 1 | -13/+13 | ||
| 2019-10-06 | fmt, mv src/ clap/ and run fmt on build | 1 | -1/+1 | ||
| 2019-09-05 | use emun literals | 1 | -5/+4 | ||
| 2019-09-05 | always interpret '-' and '--' as positionals | 1 | -19/+11 | ||
| 2019-06-21 | Embed examples in README during build | 1 | -16/+14 | ||
| fixes #11 | |||||
| 2019-06-12 | updated to newest version of zig | 1 | -97/+120 | ||
| 2019-02-10 | Updated to newest testing API | 1 | -6/+6 | ||
| 2019-01-17 | Refactored the arg iterators to new be static interface implementations | 1 | -5/+5 | ||
| * This makes arg iterators easier to understand and implement * It should also be faster than using the fieldToParent builtin | |||||
| 2018-11-14 | Zig fmt | 1 | -2/+0 | ||
| 2018-11-14 | Added pub flag/option/positional init funcs to Param | 1 | -11/+11 | ||
| 2018-11-14 | Restructured and make StreamingClap simpler | 1 | -0/+338 | ||
| * Also added a ComptimeClap | |||||