Skip to content

Commit 3f2eb58

Browse files
committed
Move untested betas to separate section.
1 parent 1647984 commit 3f2eb58

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

SerialPrograms/Source/CommonFramework/Globals.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ namespace PokemonAutomation{
3636
#endif
3737

3838
#ifndef PA_VERSION_PATCH
39-
#define PA_VERSION_PATCH 2
39+
#define PA_VERSION_PATCH 4
4040
#endif
4141

4242
const bool IS_BETA_VERSION = PA_IS_BETA;

SerialPrograms/Source/PokemonFRLG/PokemonFRLG_Panels.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ std::vector<PanelEntry> PanelListFactory::make_panels() const{
4747
ret.emplace_back(make_single_switch_program<PickupFarmer_Descriptor, PickupFarmer>());
4848
ret.emplace_back(make_single_switch_program<EvTrainer_Descriptor, EvTrainer>());
4949
if (PreloadSettings::instance().DEVELOPER_MODE){
50-
ret.emplace_back(make_single_switch_program<LuckyEggFarmer_Descriptor, LuckyEggFarmer>());
5150
}
5251

5352
//ret.emplace_back("---- General ----");
@@ -58,11 +57,13 @@ std::vector<PanelEntry> PanelListFactory::make_panels() const{
5857
ret.emplace_back(make_single_switch_program<ShinyHuntFishing_Descriptor, ShinyHuntFishing>());
5958
ret.emplace_back(make_single_switch_program<ShinyHuntOverworld_Descriptor, ShinyHuntOverworld>());
6059
ret.emplace_back(make_single_switch_program<PrizeCornerReset_Descriptor, PrizeCornerReset>());
60+
6161
if (IS_BETA_VERSION || PreloadSettings::instance().DEVELOPER_MODE){
62+
ret.emplace_back("---- Untested/Beta/WIP ----");
63+
ret.emplace_back(make_single_switch_program<LuckyEggFarmer_Descriptor, LuckyEggFarmer>());
6264
ret.emplace_back(make_single_switch_program<LegendaryRunAway_Descriptor, LegendaryRunAway>());
6365
ret.emplace_back(make_single_switch_program<RngHelper_Descriptor, RngHelper>());
6466
}
65-
6667

6768
if (PreloadSettings::instance().DEVELOPER_MODE){
6869
ret.emplace_back("---- Developer Tools ----");

SerialPrograms/Source/PokemonPokopia/PokemonPokopia_Panels.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ std::vector<PanelEntry> PanelListFactory::make_panels() const{
3434
ret.emplace_back("---- General ----");
3535
if (IS_BETA_VERSION || PreloadSettings::instance().DEVELOPER_MODE){
3636
// Locking behind dev mode for now since this program is destructive and deletes your cloud island
37+
}
38+
39+
if (IS_BETA_VERSION || PreloadSettings::instance().DEVELOPER_MODE){
40+
ret.emplace_back("---- Untested/Beta/WIP ----");
3741
ret.emplace_back(make_single_switch_program<CloudIslandReset_Descriptor, CloudIslandReset>());
3842
}
3943

0 commit comments

Comments
 (0)