# HG changeset patch # User Michiel Broek # Date 1665058625 -7200 # Node ID 73ee3cc32a49be89312a6f45d0dc656c6f65fd7a # Parent a5bc8e689e22cccb8d8bc2120ec8388b1e7197cd Version 0.3.22. Fixed adding Tetra Hop, it is now not added to the recipe because this hop is not added on brewday. diff -r a5bc8e689e22 -r 73ee3cc32a49 CMakeLists.txt --- a/CMakeLists.txt Sat Oct 01 14:23:15 2022 +0200 +++ b/CMakeLists.txt Thu Oct 06 14:17:05 2022 +0200 @@ -2,7 +2,7 @@ # in this exact order for cmake to work correctly cmake_minimum_required(VERSION 3.5) -set(PROJECT_VER "0.3.21") +set(PROJECT_VER "0.3.22") set(PROJECT_NAME "brewboard") include($ENV{IDF_PATH}/tools/cmake/project.cmake) diff -r a5bc8e689e22 -r 73ee3cc32a49 main/recipes.c --- a/main/recipes.c Sat Oct 01 14:23:15 2022 +0200 +++ b/main/recipes.c Thu Oct 06 14:17:05 2022 +0200 @@ -171,6 +171,7 @@ _xml_add_name[0] = '\0'; strncat(_xml_add_name, char_data_buffer, 63); _xml_add_time = 0; // reset + _xml_add_valid = false; } else if (strcmp("USE", _xml_element[4]) == 0) { if (strcmp("Boil", char_data_buffer) == 0) { _xml_add_valid = true;