# HG changeset patch # User Michiel Broek # Date 1658088690 -7200 # Node ID f3318d9d6668f1c5b15107bcee113d2e220a48c8 # Parent d543a3a780711985c6eb0cc92de5ecc22dfd52e2 Added misc_uses spage step. Corrected some defines mol values. diff -r d543a3a78071 -r f3318d9d6668 src/global.cpp --- a/src/global.cpp Sat Jul 16 16:40:07 2022 +0200 +++ b/src/global.cpp Sun Jul 17 22:11:30 2022 +0200 @@ -140,13 +140,14 @@ QT_TRANSLATE_NOOP("MiscType", "Other") }; -const char * const g_misc_uses[6] = { +const char * const g_misc_uses[7] = { QT_TRANSLATE_NOOP("MiscUse", "Starter"), QT_TRANSLATE_NOOP("MiscUse", "Mash"), QT_TRANSLATE_NOOP("MiscUse", "Boil"), QT_TRANSLATE_NOOP("MiscUse", "Primary"), QT_TRANSLATE_NOOP("MiscUse", "Secondary"), - QT_TRANSLATE_NOOP("MiscUse", "Bottling") + QT_TRANSLATE_NOOP("MiscUse", "Bottling"), + QT_TRANSLATE_NOOP("MiscUse", "Sparge") }; const char * const g_yeast_types[8] = { diff -r d543a3a78071 -r f3318d9d6668 src/global.h --- a/src/global.h Sat Jul 16 16:40:07 2022 +0200 +++ b/src/global.h Sun Jul 17 22:11:30 2022 +0200 @@ -11,12 +11,13 @@ #define Ka1 0.0000004445 #define Ka2 0.0000000000468 -#define MMCa 40.048 +#define MMCa 40.078 #define MMMg 24.305 #define MMNa 22.98976928 -#define MMCl 35.453 +#define MMCl 35.4535 #define MMSO4 96.0626 -#define MMCO3 60.01684 +#define MMCO3 60.0089 +#define MMNO3 62.0049 #define MMHCO3 61.01684 #define MMCaSO4 172.171 #define MMCaCl2 147.015 @@ -792,7 +793,8 @@ MISC_USES_BOIL, MISC_USES_PRIMARY, MISC_USES_SECONDARY, - MISC_USES_BOTTLING + MISC_USES_BOTTLING, + MISC_USES_SPARGE }; extern const char * const g_misc_uses[];