Skip to content

Commit 98c9dab

Browse files
committed
misc
1 parent b146d24 commit 98c9dab

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

SerialPrograms/Source/CommonFramework/ErrorReports/ErrorReports.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,12 @@ class SendableErrorReport{
7474
const std::string& directory() const{
7575
return m_directory;
7676
}
77+
const std::string& title() const{
78+
return m_title;
79+
}
80+
const std::vector<std::pair<std::string, std::string>>& messages() const{
81+
return m_messages;
82+
}
7783

7884
void add_file(std::string filename);
7985

SerialPrograms/Source/CommonFramework/Globals.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ namespace PokemonAutomation{
2626
const bool IS_BETA_VERSION = true;
2727
const int PROGRAM_VERSION_MAJOR = 0;
2828
const int PROGRAM_VERSION_MINOR = 54;
29-
const int PROGRAM_VERSION_PATCH = 31;
29+
const int PROGRAM_VERSION_PATCH = 32;
3030

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

0 commit comments

Comments
 (0)