From 87170bb337aa4377dcab9620ea3cda14d1dde8fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Asier=20Nu=C3=B1ez?= <45818936+Asiern@users.noreply.github.com> Date: Fri, 30 Apr 2021 14:39:40 +0200 Subject: [PATCH 1/2] add: missing items "Revealing Outfit" 983 "Young Man's Outfit" 984 "Destroyer Outfit" 985 --- Source/NieRAutomataGadget/Panels/InventoryPanel.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/NieRAutomataGadget/Panels/InventoryPanel.cpp b/Source/NieRAutomataGadget/Panels/InventoryPanel.cpp index 28590bf..323481a 100644 --- a/Source/NieRAutomataGadget/Panels/InventoryPanel.cpp +++ b/Source/NieRAutomataGadget/Panels/InventoryPanel.cpp @@ -227,6 +227,10 @@ InventoryPanel::InventoryPanel(wxNotebook* parent, NieRHook* hook) :wxPanel(pare _Key.insert(std::pair< wxString, int>(wxString("Adam's Glasses"), 995)); _Key.insert(std::pair< wxString, int>(wxString("Emil mask"), 993)); _Key.insert(std::pair< wxString, int>(wxString("Emil's head"), 991)); + _Key.insert(std::pair< wxString, int>(wxString("Revealing Outfit"), 983)); + _Key.insert(std::pair< wxString, int>(wxString("Young Man's Outfit"), 984)); + _Key.insert(std::pair< wxString, int>(wxString("Destroyer Outfit"), 985)); + //Panel Components wxArrayString* ItemCategories = new wxArrayString(); From 1ee2a403a85ac0a45034369dc558eaae3923fec4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Asier=20Nu=C3=B1ez?= <45818936+Asiern@users.noreply.github.com> Date: Fri, 30 Apr 2021 14:39:47 +0200 Subject: [PATCH 2/2] v1.1.2 --- Source/NieRAutomataGadget/Main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/NieRAutomataGadget/Main.cpp b/Source/NieRAutomataGadget/Main.cpp index 0387186..2a0e59a 100644 --- a/Source/NieRAutomataGadget/Main.cpp +++ b/Source/NieRAutomataGadget/Main.cpp @@ -50,7 +50,7 @@ Main::Main() : wxFrame(nullptr, wxID_ANY, "NieR:Automata Gadget", wxPoint(30, 30 m_hooked->SetFont(font); m_status = new wxStaticText(this, wxID_ANY, "Process: None", wxPoint(margin, margin * 3), wxDefaultSize, 0, wxStaticTextNameStr); m_status->SetFont(font); - m_version = new wxStaticText(this, wxID_ANY, "Version: 1.1.1", wxPoint(width - margin * 6, margin), wxDefaultSize, 0, wxStaticTextNameStr); + m_version = new wxStaticText(this, wxID_ANY, "Version: 1.1.2", wxPoint(width - margin * 6, margin), wxDefaultSize, 0, wxStaticTextNameStr); m_version->SetFont(font); Weapons->Enable(false);