Commit 33de7af0e6ac9c54f0fbfd2ffd9bbaba6fd564a4
1 parent
fd313fca
Adding info for latest change
Showing
2 changed files
with
2 additions
and
1 deletions
CHANGELOG.md
| 1 | ## Version 0.5 (in progress) | 1 | ## Version 0.5 (in progress) |
| 2 | 2 | ||
| 3 | +* Added `->allow_extras()` to disable error on failure. Parse returns a vector of leftover options. Renamed error to `ExtrasError`, and now triggers on extra options too. | ||
| 3 | * Added `require_subcommand` to `App`, to simplify forcing subcommands. Do not "chain" with `add_subcommand`, since that is the subcommand, not the master `App`. | 4 | * Added `require_subcommand` to `App`, to simplify forcing subcommands. Do not "chain" with `add_subcommand`, since that is the subcommand, not the master `App`. |
| 4 | * Added printout of ini file text given parsed options, skips flags. | 5 | * Added printout of ini file text given parsed options, skips flags. |
| 5 | * Support for quotes and spaces in ini files | 6 | * Support for quotes and spaces in ini files |
README.md
| @@ -41,7 +41,7 @@ This library was built to supply the Application object for the GooFit CUDA/OMP | @@ -41,7 +41,7 @@ This library was built to supply the Application object for the GooFit CUDA/OMP | ||
| 41 | * Collect user feedback | 41 | * Collect user feedback |
| 42 | * Ini configuration support is basic (long options only, no vector support), is more needed? | 42 | * Ini configuration support is basic (long options only, no vector support), is more needed? |
| 43 | * Evaluate compatibility with [ROOT](https://root.cern.ch)'s TApplication object. | 43 | * Evaluate compatibility with [ROOT](https://root.cern.ch)'s TApplication object. |
| 44 | - * Add way for subclasses to return remaining options rather than throwing error | 44 | + * Add tests: Add way for subclasses to return remaining options rather than throwing error |
| 45 | * Chained subcommands are not supported, once a subcommand is given the rest of the options go to that subcommand, rather than allowing multiple subcommands. This is currently intentional behavior, but multiple base level subcommands, like [`Click`](http://click.pocoo.org) supports, might be considered in the future. | 45 | * Chained subcommands are not supported, once a subcommand is given the rest of the options go to that subcommand, rather than allowing multiple subcommands. This is currently intentional behavior, but multiple base level subcommands, like [`Click`](http://click.pocoo.org) supports, might be considered in the future. |
| 46 | * Support case insensitive set and/or subcommands? | 46 | * Support case insensitive set and/or subcommands? |
| 47 | 47 |