Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-08-21 | Split unit conversion functions out from deco.cdevelop | ||
2023-07-09 | Change count+malloc to realloc in parse_gasses | ||
Instead of counting the amount of ',' delimiters in the gasses string and then using malloc, realloc on every now token. This prevents a bug when there are consecutive ',' delimiters (in which case nof_gasses and the amount of tokens returned by strtok do not match). | |||
2023-01-28 | Track depth, runtime, and gas in decostate_t | ||
2023-01-07 | Return errno.h error codes instead of -1 on fail | ||
2023-01-07 | Restructure main() | ||
2023-01-07 | Print RMV and add units to EAD, NDL, and TTS output | ||
2023-01-07 | Improve gas input validation | ||
2023-01-07 | Add support for imperial units | ||
Implements: https://todo.sr.ht/~tsegers/opendeco/1 | |||
2023-01-02 | Add support for toml-based config file | ||
2022-12-23 | Extract CLI handling into separate file | ||
2022-12-22 | Make cli options under deco category all uppercase | ||
2022-12-21 | Add option to show travel segments | ||
Implements: https://todo.sr.ht/~tsegers/opendeco/7 | |||
2022-10-22 | Remove const qualifier from non-pointer parameters | ||
2022-10-21 | Make void explicit in print_gas_use declaration | ||
2022-10-21 | Change waypoint callback from function-only to function+arg combination | ||
2022-10-20 | Add dirty hack to print gas usage | ||
2022-10-16 | Random formatting | ||
2022-10-14 | Reject invalid number for surface air pressure | ||
Filling in a non-number argument for surface pressure sets the value to 0. This value is now rejected. | |||
2022-10-14 | Add requirement that GF Low not be greater than GF High | ||
2022-10-12 | Add option to perform last deco stop at 6m instead of 3m | ||
2022-10-11 | Fix uninitialized decostate_t value and free gas list explicitly | ||
2022-10-11 | Add section headers to --help outputv0.3 | ||
2022-10-11 | Make various constants configurable | ||
- SURFACE_PRESSURE* - SWITCH_INTERMEDIATE* - P_WV - PO2_MAX - END_MAX - ALGO_VER * can now also be set from the CLI | |||
2022-10-10 | Move sources into src | ||