| Commit message (Collapse) | Author | Files | Lines | ||
|---|---|---|---|---|---|
| 2025-03-27 | doc: Don't autogenerate the README | 1 | -129/+0 | ||
| 2025-02-24 | Update README.md.template | 1 | -3/+3 | ||
| 2024-11-25 | Patch up README and fix comments in example files. (#143) | 1 | -15/+13 | ||
| The readme was also reflowed to 100 cols. I probably should have put that in a separate commit but oh well. The comments were not subjected to reflowing (yet). | |||||
| 2024-10-24 | docs: Add subcommand example | 1 | -1/+10 | ||
| 2024-10-24 | feat: Support multiple positionals of different types | 1 | -3/+3 | ||
| 2024-09-21 | Move updated README to template | 1 | -7/+12 | ||
| 2024-06-09 | Add installation instructions to README | 1 | -0/+15 | ||
| 2024-01-09 | Update to latest version of zig | 1 | -0/+6 | ||
| 2023-04-02 | Count occurrences of flags (was "Add .count type for flags") (#96) | 1 | -0/+1 | ||
| Breaking change: parseEx now counts the number of occurrences of flag parameters (those with takes_value == .none) and returns the count as a u8. Users of the library will need to change if (arg_result.my_flag) to if (arg_result.my_flag != 0) | |||||
| 2022-07-28 | Update README template | 1 | -0/+5 | ||
| 2022-03-30 | New `help` api that provides options as to how paramters are printed. | 1 | -3/+7 | ||
| fixes \#28 | |||||
| 2022-03-23 | Fix usage output in README | 1 | -1/+1 | ||
| 2022-03-23 | Add parseParams and friends | 1 | -2/+2 | ||
| 2022-03-09 | Allow for clap to parse argument values into types | 1 | -34/+17 | ||
| 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 | -2/+2 | ||
| This reverts commit cfaac64c404fb1c2e892880410aa3b7dd881ea58. | |||||
| 2022-02-25 | Change clap into generating a struct | 1 | -2/+2 | ||
| 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-02-22 | Fix minor typos in README.md | 1 | -1/+4 | ||
| 2021-12-21 | Master branch now follows zig master | 1 | -4/+0 | ||
| It makes more sense to have the master branch follow zig master, and then create versioned branches to backport bug fixes to if nessesary | |||||
| 2021-11-29 | Improve help and usage examples | 1 | -0/+2 | ||
| Instead of just calling these function, have the examples be small programs that demonstrates how you would actually use them together with argument parsing. fixes #57 | |||||
| 2021-05-26 | Update to latest zig in preperation for 0.8.0 | 1 | -5/+5 | ||
| 2020-11-10 | Deprecate ComptimeClap in favor of parseExv0.3.0 | 1 | -9/+2 | ||
| 2020-09-06 | adjust examples, README template | 1 | -1/+3 | ||
| 2020-08-28 | adjust examples, README template | 1 | -1/+3 | ||
| 2020-03-05 | Better readme for usage | 1 | -11/+2 | ||
| 2020-03-05 | Add clap.usage | 1 | -0/+23 | ||
| 2019-11-27 | Add clap.parse as the simplest way of using the lib | 1 | -20/+30 | ||
| 2019-08-17 | correct comptime-clap-error.zig example | 1 | -3/+3 | ||
| 2019-08-17 | more features in README.md | 1 | -0/+2 | ||
| 2019-08-17 | adds parseParam | 1 | -2/+2 | ||
| a less verbose way of getting a Param(Help). | |||||
| 2019-06-21 | Embed examples in README during build | 1 | -0/+77 | ||
| fixes #11 | |||||