File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
SerialPrograms/Source/CommonFramework Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ namespace PokemonAutomation{
2626const bool IS_BETA_VERSION = true ;
2727const int PROGRAM_VERSION_MAJOR = 0 ;
2828const int PROGRAM_VERSION_MINOR = 54 ;
29- const int PROGRAM_VERSION_PATCH = 31 ;
29+ const int PROGRAM_VERSION_PATCH = 32 ;
3030
3131const std::string PROGRAM_VERSION_BASE =
3232 " v" + std::to_string(PROGRAM_VERSION_MAJOR) +
You can’t perform that action at this time.
0 commit comments