| Commit message (Collapse) | Author | Files | Lines | ||
|---|---|---|---|---|---|
| 2023-12-13 | Remove the default allocator from `ParseOptions`no-default-allocator | 1 | -2/+20 | ||
| fixes #111 | |||||
| 2023-04-02 | Count occurrences of flags (was "Add .count type for flags") (#96) | 1 | -4/+5 | ||
| 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) | |||||
| 2023-01-12 | Fix misspelled things | 1 | -2/+2 | ||
| 2022-07-25 | Add clap.parsers.enumeration for parsing enums | 1 | -0/+5 | ||
| closes #78 | |||||
| 2022-07-22 | Specify which version of Zig zig-clap targets | 1 | -0/+5 | ||
| related #77 | |||||
| 2022-03-30 | Update help and usage examples | 1 | -6/+6 | ||
| 2022-03-30 | New `help` api that provides options as to how paramters are printed. | 1 | -4/+8 | ||
| fixes \#28 | |||||
| 2022-03-23 | Fix usage output in README | 1 | -1/+1 | ||
| 2022-03-23 | Add parseParams and friends | 1 | -25/+29 | ||
| 2022-03-09 | Allow for clap to parse argument values into types | 1 | -61/+76 | ||
| 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 | -24/+24 | ||
| This reverts commit cfaac64c404fb1c2e892880410aa3b7dd881ea58. | |||||
| 2022-02-25 | Change clap into generating a struct | 1 | -24/+24 | ||
| 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 | ||
| 2022-01-31 | Refactor the ArgIterator interface | 1 | -4/+6 | ||
| 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-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 | -15/+23 | ||
| 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-10-09 | Fix uses of builtin | 1 | -7/+7 | ||
| 2021-07-06 | Update example of `usage` (#45) | 1 | -3/+3 | ||
| 2021-05-26 | Update to latest zig in preperation for 0.8.0 | 1 | -8/+8 | ||
| 2021-05-08 | Modernize codebase | 1 | -22/+16 | ||
| * 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 | -14/+12 | ||
| 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 | -4/+4 | ||
| 2020-11-10 | Deprecate ComptimeClap in favor of parseExv0.3.0 | 1 | -54/+2 | ||
| 2020-11-10 | Better parseParam | 1 | -6/+2 | ||
| 2020-11-10 | Better parseParam | 1 | -6/+2 | ||
| 2020-11-02 | Report error context in Diagnostic (#26) | 1 | -6/+32 | ||
| 2020-11-02 | Report error context in Diagnostic (#26) | 1 | -6/+32 | ||
| 2020-09-06 | adjust examples, README template | 1 | -9/+17 | ||
| 2020-08-28 | adjust examples, README template | 1 | -15/+23 | ||
| 2020-08-15 | Fix expected type error on 32 bit systems | 1 | -6/+6 | ||
| fixes #23 | |||||
| 2020-04-11 | rebuild readme | 1 | -5/+4 | ||
| 2020-03-05 | Better readme for usage | 1 | -11/+2 | ||
| 2020-03-05 | Add clap.usage | 1 | -0/+43 | ||
| 2019-12-09 | update for latest zig (varargs is no more) | 1 | -9/+9 | ||
| 2019-12-01 | update for latest zig | 1 | -6/+6 | ||
| 2019-11-27 | Add clap.parse as the simplest way of using the lib | 1 | -64/+96 | ||
| 2019-11-09 | Breaking: OsIterator will now get the exe on init | 1 | -10/+4 | ||
| 2019-08-17 | correct comptime-clap-error.zig example | 1 | -7/+5 | ||
| 2019-08-17 | rebuild readme | 1 | -0/+2 | ||
| 2019-08-17 | make help message look more like other tools | 1 | -3/+3 | ||
| 2019-08-17 | adds parseParam | 1 | -25/+12 | ||
| a less verbose way of getting a Param(Help). | |||||
| 2019-08-06 | build with latest version of zig | 1 | -17/+7 | ||
| 2019-06-21 | Embed examples in README during build | 1 | -74/+163 | ||
| fixes #11 | |||||
| 2019-01-21 | Removed duplicate in readme | 1 | -4/+0 | ||
| 2019-01-17 | Updated readme | 1 | -12/+10 | ||
| 2018-12-16 | Update README.mdv0.1.0 | 1 | -2/+2 | ||
| 2018-12-04 | Update README.md | 1 | -5/+5 | ||
| 2018-11-16 | Update README.md | 1 | -3/+3 | ||
| 2018-11-15 | Changed Names.prefix to Names.both | 1 | -7/+7 | ||
| 2018-11-15 | Renamed helpEx to helpFull and added a new helpEx that wraps helpFull | 1 | -38/+4 | ||