Skip to content

Commit

Permalink
v2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Asiern committed Oct 13, 2021
1 parent 7803dc7 commit a767dba
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
### Version 2.2.1

#### What's new?

- `Fixed Inventory`
- `Added csv to cpp`

### Version 2.2.0

#### What's new?
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ All features will be disabled until Gadget attaches to the game (indicated at th

## :clipboard: Release Notes

### Version 2.2.0 | [View Previous Versions](CHANGELOG.md)
### Version 2.2.1 | [View Previous Versions](CHANGELOG.md)

#### What's new?

- `Fixed Inventory`
- `Inventory feedback`
- `Added csv to cpp`

## :page_with_curl: [License](LICENSE)
2 changes: 1 addition & 1 deletion Source/ReplicantGadget/Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Main::Main() : wxFrame(nullptr, wxID_ANY, "NieR Replicant Gadget", wxPoint(30, 3
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: 2.2.0", wxPoint(width - margin * 6, margin), wxDefaultSize, 0, wxStaticTextNameStr);
m_version = new wxStaticText(this, wxID_ANY, "Version: 2.2.1", wxPoint(width - margin * 6, margin), wxDefaultSize, 0, wxStaticTextNameStr);
m_version->SetFont(font);

StartHook();//start hook thread
Expand Down

0 comments on commit a767dba

Please sign in to comment.