Version 0.3.22. Fixed adding Tetra Hop, it is now not added to the recipe because this hop is not added on brewday.

Thu, 06 Oct 2022 14:17:05 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Thu, 06 Oct 2022 14:17:05 +0200
changeset 124
73ee3cc32a49
parent 123
a5bc8e689e22
child 125
d2a33b279b11

Version 0.3.22. Fixed adding Tetra Hop, it is now not added to the recipe because this hop is not added on brewday.

CMakeLists.txt file | annotate | diff | comparison | revisions
main/recipes.c file | annotate | diff | comparison | revisions
--- 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)
--- 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;

mercurial