Skip to content

Commit

Permalink
final tiny adjustments for official release
Browse files Browse the repository at this point in the history
  • Loading branch information
Artikash committed Jan 15, 2019
1 parent 69435f8 commit 650e207
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

## Overview

**Textractor** (a.k.a. NextHooker) is an open-source x86/x64 text hooker for Windows/Wine based off of [ITHVNR](http://www.hongfire.com/forum/showthread.php/438331-ITHVNR-ITH-with-the-VNR-engine).
**Textractor** (a.k.a. NextHooker) is an open-source x86/x64 text hooker for Windows/Wine based off of [ITHVNR](http://www.hongfire.com/forum/showthread.php/438331-ITHVNR-ITH-with-the-VNR-engine).<br>
[Tutorial video](https://youtu.be/eecEOacF6mw)

![How it looks](https://media.discordapp.net/attachments/330538905072041994/486629608456847360/unknown.png?width=1083&height=353)

Expand All @@ -19,7 +20,7 @@ Previous releases of ITHVNR can be found [here](https://github.com/mireado/ITHVN
- Highly extensible
- Auto hook many game engines (including some not supported by VNR!)
- Hook text using /H "hook" codes (most AGTH codes supported)
- Extract text using /R "read" codes ([Guide](https://www.youtube.com/watch?v=AcEgjCoww5w))
- Directly extract text using /R "read" codes

## Extensions

Expand Down
8 changes: 4 additions & 4 deletions include/defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ constexpr auto ITH_HOOKMAN_MUTEX_ = L"VNR_HOOKMAN_"; // ITH_HOOKMAN_%d
constexpr auto ITH_DLL = L"vnrhook"; // .dll but LoadLibrary automatically adds that
constexpr auto CONFIG_FILE = u8"Textractor.ini";
constexpr auto HOOK_SAVE_FILE = u8"SavedHooks.txt";
constexpr auto GAME_SAVE_FILE = u8"Games.txt";
constexpr auto EXTEN_SAVE_FILE = u8"Extensions.txt";
constexpr auto GAME_SAVE_FILE = u8"SavedGames.txt";
constexpr auto EXTEN_SAVE_FILE = u8"SavedExtensions.txt";

// Functions

template <typename... Ts>
inline void FORMAT_MESSAGE(const char* format, Ts ...args)
template <typename... Args>
inline void FORMAT_MESSAGE(const char* format, Args... args)
{
char buffer[250] = {};
sprintf_s<250>(buffer, format, args...);
Expand Down
4 changes: 2 additions & 2 deletions include/text.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#define CURRENT_VERSION "3.6.0"
#define CURRENT_VERSION "1.0.0"
#define ENGLISH

#ifdef ENGLISH
Expand Down Expand Up @@ -43,7 +43,7 @@ constexpr auto FLUSH_DELAY = u8"Flush Delay";
constexpr auto MAX_BUFFER_SIZE = u8"Max Buffer Size";
constexpr auto CONSOLE = L"Console";
constexpr auto CLIPBOARD = L"Clipboard";
constexpr auto ABOUT = L"Textractor beta v" CURRENT_VERSION LR"( (project homepage: https://github.com/Artikash/Textractor)
constexpr auto ABOUT = L"Textractor v" CURRENT_VERSION LR"( (project homepage: https://github.com/Artikash/Textractor)
Made by me: Artikash (email: akashmozumdar@gmail.com)
Please contact me with any problems, feature requests, or questions relating to Textractor
You can do so via the project homepage (issues section) or via email
Expand Down
File renamed without changes.

0 comments on commit 650e207

Please sign in to comment.