Skip to content

Commit b52b096

Browse files
committed
Move poffin cooker out of beta.
1 parent 129b3dd commit b52b096

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
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 = 50;
28-
const int PROGRAM_VERSION_PATCH = 14;
28+
const int PROGRAM_VERSION_PATCH = 15;
2929

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

SerialPrograms/Source/CommonFramework/Recording/StreamRecorder.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,9 @@ StreamRecording::~StreamRecording(){
9898
quit();
9999
wait();
100100
#ifndef PA_STREAM_HISTORY_LOCAL_BUFFER
101-
QDir().remove(QString::fromStdString(m_filename));
101+
if (!m_filename.empty()){
102+
QDir().remove(QString::fromStdString(m_filename));
103+
}
102104
#endif
103105
}
104106

SerialPrograms/Source/NintendoSwitch/DevPrograms/TestProgramSwitch.cpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -279,9 +279,8 @@ void TestProgram::program(MultiSwitchProgramEnvironment& env, CancellableScope&
279279

280280

281281

282-
ImageRGB32 image("Screenshot.png");
283-
284-
PokemonSwSh::find_selection_arrows(image, 10);
282+
// ImageRGB32 image("Screenshot.png");
283+
// PokemonSwSh::find_selection_arrows(image, 10);
285284

286285

287286
// LifetimeSanitizer::terminate_with_dump();
@@ -332,7 +331,7 @@ void TestProgram::program(MultiSwitchProgramEnvironment& env, CancellableScope&
332331
);
333332
#endif
334333

335-
#if 0
334+
#if 1
336335
VideoSnapshot image = feed.snapshot();
337336
// ImageRGB32 image("screenshot-20241124-135028529403.png");
338337

SerialPrograms/Source/PokemonBDSP/PokemonBDSP_Panels.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ std::vector<PanelEntry> PanelListFactory::make_panels() const{
7171
ret.emplace_back(make_single_switch_program<DoublesLeveling_Descriptor, DoublesLeveling>());
7272
ret.emplace_back(make_single_switch_program<AmitySquarePickUpFarmer_Descriptor, AmitySquarePickUpFarmer>());
7373
ret.emplace_back(make_single_switch_program<GiftBerryReset_Descriptor, GiftBerryReset>());
74+
ret.emplace_back(make_single_switch_program<PoffinCooker_Descriptor, PoffinCooker>());
7475

7576
ret.emplace_back("---- Shiny Hunting ----");
7677
ret.emplace_back(make_single_switch_program<StarterReset_Descriptor, StarterReset>());
@@ -93,7 +94,6 @@ std::vector<PanelEntry> PanelListFactory::make_panels() const{
9394

9495
if (IS_BETA_VERSION || PreloadSettings::instance().DEVELOPER_MODE){
9596
ret.emplace_back("---- Untested/Beta/WIP ----");
96-
ret.emplace_back(make_single_switch_program<PoffinCooker_Descriptor, PoffinCooker>());
9797
}
9898
if (PreloadSettings::instance().DEVELOPER_MODE){
9999
ret.emplace_back("---- Developer Tools ----");

0 commit comments

Comments
 (0)