Adding gender to the config
build / build (push) Successful in 19s

This commit is contained in:
ml
2026-07-16 22:49:06 +02:00
parent 1ebbfebe31
commit 7a77c4a07d
26 changed files with 470 additions and 109 deletions
+2 -2
View File
@@ -25,7 +25,7 @@ static void on_config_updated(const WatchConfig *cfg) {
if (!s_config.configured) return;
config_log(&s_config); /* the values this newly-recomputed reading is based on */
reading_state_recompute(&s_config.birth);
reading_state_recompute(&s_config.birth, s_config.gender);
if (was_configured) {
report_window_reload();
} else {
@@ -41,7 +41,7 @@ int main(void) {
config_log(&s_config); /* the values this session's reading (if any) is based on */
if (s_config.configured) {
reading_state_recompute(&s_config.birth);
reading_state_recompute(&s_config.birth, s_config.gender);
report_window_push();
} else {
show_setup_required();