Skip to content

Commit 48dd0d7

Browse files
committed
Update for v0.51.2.
1 parent 4199673 commit 48dd0d7

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

SerialPrograms/Source/CommonFramework/Globals.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ namespace PokemonAutomation{
2222
// misleading version information.
2323
//
2424

25-
const bool IS_BETA_VERSION = true;
25+
const bool IS_BETA_VERSION = false;
2626
const int PROGRAM_VERSION_MAJOR = 0;
2727
const int PROGRAM_VERSION_MINOR = 51;
28-
const int PROGRAM_VERSION_PATCH = 1;
28+
const int PROGRAM_VERSION_PATCH = 2;
2929

3030
const std::string PROGRAM_VERSION_BASE =
3131
"v" + std::to_string(PROGRAM_VERSION_MAJOR) +

SerialPrograms/Source/PokemonSV/PokemonSV_Panels.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,12 +142,14 @@ std::vector<PanelEntry> PanelListFactory::make_panels() const{
142142
ret.emplace_back(make_single_switch_program<RideCloner101_Descriptor, RideCloner101>());
143143
ret.emplace_back(make_single_switch_program<CloneItems101_Descriptor, CloneItems101>());
144144

145+
ret.emplace_back("---- Public Betas ----");
146+
ret.emplace_back(make_single_switch_program<AutoStory_Descriptor, AutoStory>());
147+
145148
if (PreloadSettings::instance().DEVELOPER_MODE || IS_BETA_VERSION){
146149
ret.emplace_back("---- Untested/Beta/WIP ----");
147150
}
148151
if (IS_BETA_VERSION){
149152
// ret.emplace_back("---- Story Automation ----");
150-
ret.emplace_back(make_single_switch_program<AutoStory_Descriptor, AutoStory>());
151153
}
152154
if (PreloadSettings::instance().DEVELOPER_MODE){
153155

0 commit comments

Comments
 (0)