Skip to content

Commit

Permalink
Bump version to 0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
vfsfitvnm committed Feb 12, 2022
1 parent 43047dc commit 3f05886
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,22 @@ However, only Android and Linux are tested: expect breakage if you are using ano

- Drop `Il2Cpp.Tracer::detailed` mode. I know this may be controversial, but I'd like to not rely on `Interceptor.replace` anymore when tracing is involved: it is slower (because of the abstraction layer I apply) and it cannot trace thunk functions.

### 0.7.3
- `Il2Cpp.Thread::id` was added.
- `Il2Cpp::perform` can now return a value:
```ts
async function foo() {
const result = await Il2Cpp.perform<string>(() => {
const SystemBoolean = Il2Cpp.Image.corlib.class("System.Boolean");
return SystemBoolean.field("TrueLiteral").value.toString();
});

console.log(`Result from Il2Cpp: ${result}`);

// ...
}
```

### 0.7.2
- `Il2Cpp::internalCall`, `Il2Cpp::applicationDataPath`, `Il2Cpp::applicationIdentifier`, `Il2Cpp::applicationVersion`, `Il2Cpp::unityVersion` were added.
- `unity` TS module was removed as it was quite useless now that I don't need to interact with Unity native module anymore.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frida-il2cpp-bridge",
"version": "0.7.2",
"version": "0.7.3",
"description": "A Frida module to dump, trace or hijack any Il2Cpp application at runtime, without needing the global-metadata.dat file.",
"keywords": [
"frida",
Expand Down

0 comments on commit 3f05886

Please sign in to comment.