Skip to content

Commit

Permalink
Release 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zhkl0228 committed Nov 28, 2020
1 parent 9bbf3f9 commit 888ce84
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.github.zhkl0228</groupId>
<artifactId>unidbg-parent</artifactId>
<packaging>pom</packaging>
<version>0.9.1-SNAPSHOT</version>
<version>0.9.1</version>
<modules>
<module>unidbg-api</module>
<module>unidbg-android</module>
Expand Down
8 changes: 4 additions & 4 deletions unidbg-android/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@
<parent>
<groupId>com.github.zhkl0228</groupId>
<artifactId>unidbg-parent</artifactId>
<version>0.9.1-SNAPSHOT</version>
<version>0.9.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>unidbg-android</artifactId>
<version>0.9.1-SNAPSHOT</version>
<version>0.9.1</version>
<dependencies>
<dependency>
<groupId>com.github.zhkl0228</groupId>
<artifactId>unidbg-api</artifactId>
<version>0.9.1-SNAPSHOT</version>
<version>0.9.1</version>
</dependency>
<dependency>
<groupId>com.github.zhkl0228</groupId>
<artifactId>unidbg-dynarmic</artifactId>
<version>0.9.1-SNAPSHOT</version>
<version>0.9.1</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions unidbg-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<parent>
<groupId>com.github.zhkl0228</groupId>
<artifactId>unidbg-parent</artifactId>
<version>0.9.1-SNAPSHOT</version>
<version>0.9.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>unidbg-api</artifactId>
<version>0.9.1-SNAPSHOT</version>
<version>0.9.1</version>
<dependencies>
<dependency>
<groupId>com.github.zhkl0228</groupId>
Expand Down
6 changes: 3 additions & 3 deletions unidbg-dynarmic/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@
<parent>
<groupId>com.github.zhkl0228</groupId>
<artifactId>unidbg-parent</artifactId>
<version>0.9.1-SNAPSHOT</version>
<version>0.9.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>unidbg-dynarmic</artifactId>
<version>0.9.1-SNAPSHOT</version>
<version>0.9.1</version>
<dependencies>
<dependency>
<groupId>com.github.zhkl0228</groupId>
<artifactId>unidbg-api</artifactId>
<version>0.9.1-SNAPSHOT</version>
<version>0.9.1</version>
</dependency>
</dependencies>
</project>
2 changes: 1 addition & 1 deletion unidbg-dynarmic/src/main/native/dynarmic/dynarmic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ JNIEXPORT jlong JNICALL Java_com_github_unidbg_arm_backend_dynarmic_Dynarmic_nat
// Memory
config.page_table = reinterpret_cast<std::array<std::uint8_t*, Dynarmic::A32::UserConfig::NUM_PAGE_TABLE_ENTRIES>*>(dynarmic->page_table);
config.absolute_offset_page_table = false;
config.detect_misaligned_access_via_page_table = 16 | 32 | 64 | 128;
config.detect_misaligned_access_via_page_table = 16 | 32 | 64;
config.only_detect_misalignment_via_page_table_on_page_boundary = true;
}

Expand Down
8 changes: 4 additions & 4 deletions unidbg-ios/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@
<parent>
<groupId>com.github.zhkl0228</groupId>
<artifactId>unidbg-parent</artifactId>
<version>0.9.1-SNAPSHOT</version>
<version>0.9.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>unidbg-ios</artifactId>
<version>0.9.1-SNAPSHOT</version>
<version>0.9.1</version>
<dependencies>
<dependency>
<groupId>com.github.zhkl0228</groupId>
<artifactId>unidbg-api</artifactId>
<version>0.9.1-SNAPSHOT</version>
<version>0.9.1</version>
</dependency>
<dependency>
<groupId>com.github.zhkl0228</groupId>
<artifactId>unidbg-dynarmic</artifactId>
<version>0.9.1-SNAPSHOT</version>
<version>0.9.1</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 888ce84

Please sign in to comment.