Skip to content

Commit 6d0a03d

Browse files
committed
Enable SBB for private betas.
1 parent 6e15fe8 commit 6d0a03d

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

SerialPrograms/Source/CommonFramework/Globals.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace PokemonAutomation{
2525
const bool IS_BETA_VERSION = true;
2626
const int PROGRAM_VERSION_MAJOR = 0;
2727
const int PROGRAM_VERSION_MINOR = 51;
28-
const int PROGRAM_VERSION_PATCH = 6;
28+
const int PROGRAM_VERSION_PATCH = 7;
2929

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

SerialPrograms/Source/Controllers/ControllerSelectorWidget.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
#include <QHBoxLayout>
88
#include "Common/Qt/NoWheelComboBox.h"
9+
#include "CommonFramework/Globals.h"
910
#include "CommonFramework/GlobalSettingsPanel.h"
1011
#include "CommonFramework/Options/Environment/ThemeSelectorOption.h"
1112
#include "ControllerSelectorWidget.h"
@@ -46,7 +47,7 @@ ControllerSelectorWidget::ControllerSelectorWidget(QWidget& parent, ControllerSe
4647
interface_dropdown->addItem(QString::fromStdString(CONTROLLER_INTERFACE_STRINGS.get_string(ControllerInterface::SysbotBaseNetwork)));
4748
// interface_dropdown->addItem(QString::fromStdString(CONTROLLER_INTERFACE_STRINGS.get_string(ControllerInterface::SysbotBaseUSB)));
4849

49-
if (!PreloadSettings::instance().DEVELOPER_MODE){
50+
if (!IS_BETA_VERSION && !PreloadSettings::instance().DEVELOPER_MODE){
5051
interface_dropdown->setHidden(true);
5152
}
5253

SerialPrograms/Source/PokemonSV/Programs/General/PokemonSV_StatsResetEventBattle.cpp

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -187,17 +187,12 @@ StatsResetEventBattle::StatsResetEventBattle()
187187
FILTERS0.set_default(std::move(ret));
188188
FILTERS0.restore_defaults();
189189
}
190-
// if (PreloadSettings::instance().DEVELOPER_MODE){
191-
PA_ADD_STATIC(CALCULATED_IVS);
192-
// }
190+
PA_ADD_STATIC(CALCULATED_IVS);
193191
PA_ADD_OPTION(TARGET);
194192
PA_ADD_OPTION(LANGUAGE);
195193
PA_ADD_OPTION(BALL_SELECT);
196194
PA_ADD_OPTION(TRY_TO_TERASTILLIZE);
197-
// PA_ADD_OPTION(FILTERS);
198-
// if (PreloadSettings::instance().DEVELOPER_MODE){
199-
PA_ADD_OPTION(FILTERS0);
200-
// }
195+
PA_ADD_OPTION(FILTERS0);
201196
PA_ADD_OPTION(GO_HOME_WHEN_DONE);
202197
PA_ADD_OPTION(NOTIFICATIONS);
203198
}

0 commit comments

Comments
 (0)