summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* chore: update to latest masterGravatar Rekai Musuka2023-02-221-2/+2
| | | | update to follow latest for loop syntax
* ci: Rename release to optimizeGravatar Jimmi Holst Christensen2023-02-061-2/+2
|
* use new syntax for optimizationsGravatar Mike Rivnak2023-02-061-2/+2
|
* Update to latest version of zigGravatar Jimmi Holst Christensen2023-02-051-12/+15
|
* Fix misspelled thingsGravatar Jimmi Holst Christensen2023-01-124-13/+13
|
* year++Gravatar Jimmi Holst Christensen2023-01-041-1/+1
|
* Update to latest Zig masterGravatar Jakub Konka2022-12-201-4/+4
| | | | Rename `builtin.Struct.field_type` to `builtin.Struct.type`.
* Fix cicdGravatar Jimmi Holst Christensen2022-12-091-1/+1
|
* Update to newest version of zigGravatar Jimmi Holst Christensen2022-12-092-3/+0
|
* Handle change to std.ArrayList(T).toOwnedSlice()Gravatar Rekai Musuka2022-12-011-3/+3
| | | | toOwnedSlice() now returns an error union
* Workaround stage2 bugGravatar Jimmi Holst Christensen2022-11-221-1/+3
|
* Don't iterate all configs in build scriptGravatar Jimmi Holst Christensen2022-11-152-22/+12
| | | | Instead, cicd will now have a job for every configuration
* Bump goto-bus-stop/setup-zig from 1.3.0 to 2.0.1Gravatar dependabot[bot]2022-11-081-2/+2
| | | | | | | | | | | | | | | Bumps [goto-bus-stop/setup-zig](https://github.com/goto-bus-stop/setup-zig) from 1.3.0 to 2.0.1. - [Release notes](https://github.com/goto-bus-stop/setup-zig/releases) - [Changelog](https://github.com/goto-bus-stop/setup-zig/blob/default/CHANGELOG.md) - [Commits](https://github.com/goto-bus-stop/setup-zig/compare/v1.3.0...v2.0.1) --- updated-dependencies: - dependency-name: goto-bus-stop/setup-zig dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
* 0.6.00.6.0Gravatar Jimmi Holst Christensen2022-11-011-1/+1
|
* Fix regression from last commitGravatar Jimmi Holst Christensen2022-10-031-11/+14
|
* Add function for getting the prefix of a param nameGravatar Jimmi Holst Christensen2022-10-031-15/+19
|
* use builtin.Type instead of deprecated builtin.TypeInfoGravatar Jakub Konka2022-09-181-1/+1
| | | | Syncs with latest zig master version 0.10.0-dev.4117+54854e2ab
* Fix zig-clap for new default compilerGravatar Jimmi Holst Christensen2022-08-252-46/+65
| | | | | Also enable test suit for both stage 1 and stage 2, to ensure we don't break things for people who haven't switched yet.
* Have all tests have a nameGravatar Jimmi Holst Christensen2022-07-281-1/+1
| | | | fixes #79
* Update README templateGravatar Jimmi Holst Christensen2022-07-281-0/+5
|
* Add clap.parsers.enumeration for parsing enumsGravatar Jimmi Holst Christensen2022-07-253-0/+47
| | | | closes #78
* Update LICENSEGravatar Jimmi Holst Christensen2022-07-251-1/+1
|
* Specify which version of Zig zig-clap targetsGravatar Komari Spaghetti2022-07-221-0/+5
| | | related #77
* Print multi value positionals correctly in `usage`Gravatar Jimmi Holst Christensen2022-04-281-0/+6
|
* Update help and usage examplesGravatar Jimmi Holst Christensen2022-03-303-12/+12
|
* New `help` api that provides options as to how paramters are printed.Gravatar Jimmi Holst Christensen2022-03-304-100/+702
| | | | fixes \#28
* Fix long param parsing with '-' and '\_' in nameGravatar Jimmi Holst Christensen2022-03-241-2/+6
|
* Fix usage output in READMEGravatar Jimmi Holst Christensen2022-03-232-2/+2
|
* Add parseParams and friendsGravatar Jimmi Holst Christensen2022-03-237-391/+447
|
* Refactor parseParam into a state machineGravatar Jimmi Holst Christensen2022-03-231-64/+279
| | | | | | This new parser stops when it hits something that looks like a new parameter. This is the precurser to parsing multiple parameters in a single function.
* Workaround infinit loop caused by `try` inside `inline for`Gravatar Jimmi Holst Christensen2022-03-211-19/+59
| | | | fixes #72
* Allow for clap to parse argument values into typesGravatar Jimmi Holst Christensen2022-03-0913-585/+570
| | | | | | | | | | | | | | 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.
* Bump actions/checkout from 2.4.0 to 3Gravatar dependabot[bot]2022-03-021-2/+2
| | | | | | | | | | | | | | | Bumps [actions/checkout](https://github.com/actions/checkout) from 2.4.0 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2.4.0...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
* Revert "Change clap into generating a struct"Gravatar Jimmi Holst Christensen2022-02-2511-506/+518
| | | | This reverts commit cfaac64c404fb1c2e892880410aa3b7dd881ea58.
* Change clap into generating a structGravatar Jimmi Holst Christensen2022-02-2511-518/+506
| | | | | | | | | 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`
* Fix minor typos in README.mdGravatar Jimmi Holst Christensen2022-02-222-2/+8
|
* Update package mod files to MITGravatar Jimmi Holst Christensen2022-02-032-2/+2
|
* Refactor the ArgIterator interfaceGravatar Jimmi Holst Christensen2022-01-316-331/+37
| | | | | | | | | 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`.
* Relicense to MITGravatar Jimmi Holst Christensen2022-01-311-20/+17
| | | | closes #64
* Avoid using the print APIGravatar Jimmi Holst Christensen2022-01-051-23/+37
| | | | | | The current Zig print API is quite good at slowing down compilation and producing binary bloat. This commit makes an attempt to avoid using it when not nessesary.
* Update usage of process.ArgIterator to be inline with newest zigGravatar Jimmi Holst Christensen2021-12-292-2/+5
| | | | | Also add windows CI, as this compiler error was only triggered on windows builds
* Tag 0.5.00.5.0Gravatar Komari Spaghetti2021-12-211-1/+1
|
* Master branch now follows zig masterGravatar Komari Spaghetti2021-12-213-8/+2
| | | | | It makes more sense to have the master branch follow zig master, and then create versioned branches to backport bug fixes to if nessesary
* Merge branch 'zig-master'Gravatar Komari Spaghetti2021-12-215-16/+16
|\
| * zig master updates: allocator changes (#60)Gravatar Asherah Connor2021-12-063-8/+8
| |
| * Fix regression in last commitGravatar Komari Spaghetti2021-10-112-2/+0
| | | | | | | | | | The importing of builtin was already fixed, so the latest commit applied this fix again, which caused problems
| * zig master updatesGravatar Asherah Connor2021-10-113-2/+4
| |
| * Merge branch 'master' into zig-masterGravatar Komari Spaghetti2021-10-093-9/+8
| |\
| * | Update mem.split call for latest zig masterGravatar Ryan Liptak2021-09-061-1/+1
| | |
| * | Merge branch 'master' into zig-masterGravatar Komari Spaghetti2021-09-054-12/+25
| |\ \