Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement general configuarion for bear #502

Draft
wants to merge 8 commits into
base: master
Choose a base branch
from

Commits on Jan 16, 2023

  1. Moved configuration to libconfig

    libconfig will be responsible for handling all the configuration state
    of bear
    samu698 committed Jan 16, 2023
    Configuration menu
    Copy the full SHA
    e5e30bc View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2023

  1. Configuration menu
    Copy the full SHA
    eecd344 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2023

  1. Configuration menu
    Copy the full SHA
    9fbb2cc View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2023

  1. libresult: add unwrap_to, unwrap_err_to functions

    This functions unwrap to a variable if the result is contains the value
    you want to unwrap
    samu698 committed Jan 19, 2023
    Configuration menu
    Copy the full SHA
    2f57947 View commit details
    Browse the repository at this point in the history
  2. Don't pass environment variables using envp, instead use sys::env::get()

    This commit removes all instaces were envp gets passed to functions.
    
    The environment variables are available in the environ variable, and
    don't need to be passed from function to function.
    
    Also environ is standardized by POSIX unlike the envp argument on the
    main function.
    samu698 committed Jan 19, 2023
    Configuration menu
    Copy the full SHA
    31fb1ad View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2023

  1. Configuration menu
    Copy the full SHA
    af23ed0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    27e9649 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d7c7f23 View commit details
    Browse the repository at this point in the history