foldering

This commit is contained in:
bouletmarc 2016-09-04 15:02:20 -04:00 committed by GitHub
parent 038b13c8d7
commit 04b0b69732
1 changed files with 24 additions and 24 deletions

View File

@ -1,25 +1,25 @@
// Set Update Notes // Set Update Notes
String VERSION = "v1.2.2"; String VERSION = "v1.2.2";
String UPDT_NOTES1 = " -Dual Relays Output"; String UPDT_NOTES1 = " -Dual Relays Output";
String UPDT_NOTES2 = " -More Outputs"; String UPDT_NOTES2 = " -More Outputs";
String UPDT_NOTES3 = " -Better Inputting"; String UPDT_NOTES3 = " -Better Inputting";
String UPDT_NOTES4 = " -Better BeeMR"; String UPDT_NOTES4 = " -Better BeeMR";
String UPDT_NOTES5 = " -Faster Start Menu"; String UPDT_NOTES5 = " -Faster Start Menu";
String SetVersionInfos() { String SetVersionInfos() {
return VERSION; return VERSION;
} }
String SetUpdateInfos(String Current) { String SetUpdateInfos(String Current) {
if (Current == "Note1") { if (Current == "Note1") {
return UPDT_NOTES1; return UPDT_NOTES1;
} else if (Current == "Note2") { } else if (Current == "Note2") {
return UPDT_NOTES2; return UPDT_NOTES2;
} else if (Current == "Note3") { } else if (Current == "Note3") {
return UPDT_NOTES3; return UPDT_NOTES3;
} else if (Current == "Note4") { } else if (Current == "Note4") {
return UPDT_NOTES4; return UPDT_NOTES4;
} else if (Current == "Note5") { } else if (Current == "Note5") {
return UPDT_NOTES5; return UPDT_NOTES5;
} }
} }