File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed
Controllers/SerialPABotBase Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ namespace PokemonAutomation{
2525const bool IS_BETA_VERSION = true ;
2626const int PROGRAM_VERSION_MAJOR = 0 ;
2727const int PROGRAM_VERSION_MINOR = 51 ;
28- const int PROGRAM_VERSION_PATCH = 1 ;
28+ const int PROGRAM_VERSION_PATCH = 3 ;
2929
3030const std::string PROGRAM_VERSION_BASE =
3131 " v" + std::to_string(PROGRAM_VERSION_MAJOR) +
Original file line number Diff line number Diff line change @@ -32,11 +32,10 @@ const char* to_string(Features feature){
3232const std::pair<std::string, std::set<std::string>> OLD_NINTENDO_SWITCH_DEFAULT_REQUIREMENTS{
3333 NintendoSwitch_Basic,
3434 {
35- to_string (SerialPABotBase::Features::TickPrecise),
36- to_string (SerialPABotBase::Features::NintendoSwitch_Basic),
37- // to_string(SerialPABotBase::Features::NintendoSwitch_SSF),
38- // to_string(SerialPABotBase::Features::NintendoSwitch_Macros),
39- to_string (SerialPABotBase::Features::NintendoSwitch_DateSkip),
35+ to_string (Features::TickPrecise),
36+ to_string (Features::NintendoSwitch_Basic),
37+ // to_string(Features::NintendoSwitch_SSF),
38+ // to_string(Features::NintendoSwitch_Macros),
4039 }
4140};
4241
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments