• * add ability to specify deprecated or retired options.
    
    * add retired example and tests
    
    * update some formatting and a few more test executions
    
    * fix formatting on retired.cpp
    
    * add another test to fill coverage gap for existing options that are being retired.
    
    * add example comments
    
    * Update readme with the descriptions of the new helper functions
    
    * fix space on readme
    
    * Apply suggestions from code review
    
    Co-Authored-By: Christoph Bachhuber <cbachhuber89@gmail.com>
    
    * add some flags to the code coverage report and update some names and add more descriptions to deprecated options
    
    * update formatting on App
    Philip Top authored
     
    Browse Dir »

  • * add an example where the name of the enum is printed through a stream output function, which subverted the checkTransformer conversion and prevented conversion of the enumeration.
    
    * add missing 'typename'
    
    * try a simpler version of the value_string using const reference for all overloads
    
    * use auto return type to match to_string return type in value_string
    
    * remove extra spaces
    Philip Top authored
     
    Browse Dir »

  • * Fixing some warnings
    
    * Make gtest a system library
    
    * Fixing format
    
    * Adding better method for adding warnings
    
    * Nicer Windows deprecated test
    
    * JSON update and drop testing timer
    
    * Warnings as errors everywhere
    Henry Schreiner authored
     
    Browse Dir »

  • * First streaming version
    
    * Using to_string instead
    
    * Switching to new backend
    
    * Moving to capture function for defaults
    
    * Rename capture_default + _str
    
    * defaultval -> default_str, added always_capture_default
    
    * Fix style
    
    * Adding tests and docs to readme
    
    * Dropping macOS on Travis (supported through Azure)
    Henry Schreiner authored
     
    Browse Dir »
  • * add a function to get the remaining arguments in a valid order for parse.  and add rvalue reference overloads for parse and _parse so args is not refilled if not needed.
    
    * check a few more tests and verify ExtrasError works on parse(rValue vector)
    
    remove impossible to reach branches in _parse function
    
    * add callback_passthrough example and tests
    Philip Top authored
     
    Browse Dir »

  • * some tweaks with optional
    
    * remove set_results function that was bypassing some of the result processing in some cases of config files.
    
    * add positional Validator example and tests add CLI::Number validator.
    
    * add positional Validator example and tests add CLI::Number validator.
    
    * do some reformatting for style checks and remove auto in test lambda.
    Philip Top authored
     
    Browse Dir »

  • rework return values from _parse_* function to return true if the value was processed false otherwise, this simplified the logic and got rid of the pulling and clearing of the missing fields from option groups.
    
    add TriggerOff and TriggerOn helper functions and some tests for them
    
    add shapes example of multiple callbacks in order.
    
    allow specification of callbacks that get executed immediately on completion of parsing of subcommand
    
    add tests for enabled/disabled by default
    
    add _get_fallthrough_parent.  To get the most appropriate parent to fallthrough to
    
    add enabled and disabled by default functions
    
    add positional_arity example
    
    Add a pre_parse_callback_ for apps.  The Pre parse callback takes an argument for the number of remaining arguments left to process, and will execute prior to parsing for subcommands, and after the first option parse for option_groups.
    Philip Top authored
     
    Browse Dir »

  • * add transform and checkedTransform tests
    
    add Transformer and CheckedTransformer validators
    
    * Eliminate the Validator description string, some code cleanup
    
    add tests
    
    Make Validators a full Object and remove friend,  move to descriptions instead of overriding type name.
    
    update validators to actually merge the type strings and use all validators in the type outputs
    
    rework join so it works without the start variable,  allow some forwarding references in the validator types, some tests for non-copyable maps, and transforms
    
    merge the search function and enable use of member search function,  make the pair adapters forwarding instead of copying
    
    * add a few more tests and documentation
    
    fix some gcc 4.7 issues and add a few more test cases and more parts of the README
    
    Work on ReadMe and add Bound validator to clamp values
    
    * updates to README.md
    
    * Add some more in TOC of README and fix style in Option.hpp
    Philip Top authored
     
    Browse Dir »

  • * change the move function to _move_option and add an additional test
    
    add a validation check on min options to make sure it is even possible to succeed.
    
    add some additional tests to cover code paths and potential errors.
    
    add a number of additional tests and checks and fix some issues with the add function in option_groups
    
    clean up example and help formatting
    
    add option_groups example to play with
    
    move create_option_group to a member function using a dummy template
    
    add some optionGroup tests
    
    add min and max options calls and an associated Error call
    
    * add ranges example,  add excludes to app for options and subcommands.
    
    * add some tests on ranges, and some subcommand tests with exclusion
    
    * add tests in optionGroups for some invalid inputs
    
    * add required option to subcommands and option_groups
    
    * add disabled flag
    
    * add disable option to subcommands and some more tests
    
    * start work on ReadMe modifications
    
    * update the readme with descriptions of function and methods added for option_groups
    
    * clear up gcc 4.7 warnings
    
    * some update to the Readme and a few more warnings fixed
    
    * Minor readme touchup
    Philip Top authored
     
    Browse Dir »

  • add some comments in readME about performance
    
    move operator[] to return const Option *
    
    Apply suggestions from code review
    
    Co-Authored-By: phlptp <top1@llnl.gov>
    
    update readme and add some IniTests and fix a bug from the tests
    
    add_flag_callback
    
    add a few tests to capture the different paths
    
    fix incorrectly updated CMAKE file, and add some subcommand test for option finding
    
    add disable_flag_override and work out some kinks in the find option functions
    
    add some more tests and fix a few bugs in as<> function for options
    
    Allow general flag types and default values, add shortcut notation for retrieving values
    Philip Top authored
     
    Browse Dir »


  • * Adding first draft of Sets
    
    Use IsMember now
    
    Using IsMember as backend for Set
    
    Non-const validator backend
    
    Move set tests to set
    
    Clearer inits
    
    * Drop shortcut
    
    Tighten up classes a bit for MSVC
    
    Check with GCC 4.8 too
    
    * Simpler templates, but more of them
    
    Dropping more type safety for older compilers
    
    Shortcut string set
    
    * Adding shortcut init
    
    Making g++ 4.7 docker image happy
    
    Fix Clang tidy issue with last commit
    
    Adding one more shortcut, adding a couple of tests
    
    * Dropping dual pointer versions of code
    
    * Smarter shortcut syntax
    
    * Adding slighly faster choices
    
    * Cleanup to make InMember simpler
    
    * Drop choices for now, adding some tests
    
    * ValidationError is now always the error from a validator
    
    * Support for other types of initializer lists, including enums
    
    * Factor out type utilities, single version of IsMember code
    
    * Adding a few tests for #224
    
    * Minor cleanup for Validation Error
    
    * Adding tests, moved deprecated tests
    
    * Docs updates
    Henry Schreiner authored
     
    Browse Dir »

  • increment the parse_ variable on unnamed subcommands. 
    
    update the readme, and add a formatter test for nameless subcommands in nondefault group with other named subcommands.
    
    add a test of default arguments
    
    add a formatter test
    
    add tests for unnamed subcommands and an example of the partitioned subcommands.
    
    change the app_p to be a shared_ptr so you can add an App later on and merge them together
    
    add the ability to add unnamed subcommands that allow partitioning on options into multiple apps.
    Philip Top authored
     
    Browse Dir »









  • Removing OptionFormatter
    
    Rename files
    
    Rename to just Formatter
    
    Remove OptionFormatMode (just needs a bool)
    
    Renaming option functions on formatter
    Henry Fredrick Schreiner authored
     
    Browse Dir »
  • in progress: formatters
    
    Getting closer
    
    Working on apps
    
    One test actually runs
    
    All builds, added filter functions
    
    Reverting a few behavours as needed
    
    Repairs
    
    All tests pass
    
    Fixing error with adding help flag
    
    Labels are simpler mappings, normalized setters
    
    Adding help_all
    
    Adding a few more tests
    
    One more line tested
    
    Adding one more check
    
    Adding to readme
    
    Simplify naming
    
    Adding default constructors
    
    Fixing spacing issues with subcommand all printout
    
    Adding a couple of tests
    Henry Fredrick Schreiner authored
     
    Browse Dir »