File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ namespace PokemonAutomation{
22
22
// misleading version information.
23
23
//
24
24
25
- const bool IS_BETA_VERSION = true ;
25
+ const bool IS_BETA_VERSION = false ;
26
26
const int PROGRAM_VERSION_MAJOR = 0 ;
27
27
const int PROGRAM_VERSION_MINOR = 51 ;
28
- const int PROGRAM_VERSION_PATCH = 1 ;
28
+ const int PROGRAM_VERSION_PATCH = 2 ;
29
29
30
30
const std::string PROGRAM_VERSION_BASE =
31
31
" v" + std::to_string(PROGRAM_VERSION_MAJOR) +
Original file line number Diff line number Diff line change @@ -142,12 +142,14 @@ std::vector<PanelEntry> PanelListFactory::make_panels() const{
142
142
ret.emplace_back (make_single_switch_program<RideCloner101_Descriptor, RideCloner101>());
143
143
ret.emplace_back (make_single_switch_program<CloneItems101_Descriptor, CloneItems101>());
144
144
145
+ ret.emplace_back (" ---- Public Betas ----" );
146
+ ret.emplace_back (make_single_switch_program<AutoStory_Descriptor, AutoStory>());
147
+
145
148
if (PreloadSettings::instance ().DEVELOPER_MODE || IS_BETA_VERSION){
146
149
ret.emplace_back (" ---- Untested/Beta/WIP ----" );
147
150
}
148
151
if (IS_BETA_VERSION){
149
152
// ret.emplace_back("---- Story Automation ----");
150
- ret.emplace_back (make_single_switch_program<AutoStory_Descriptor, AutoStory>());
151
153
}
152
154
if (PreloadSettings::instance ().DEVELOPER_MODE ){
153
155
You can’t perform that action at this time.
0 commit comments