diff --git a/.github/workflows/build_commit.yaml b/.github/workflows/build_commit.yaml index e54f9975..8a07add5 100644 --- a/.github/workflows/build_commit.yaml +++ b/.github/workflows/build_commit.yaml @@ -11,7 +11,7 @@ jobs: distribution: temurin java-version: 11 - - uses: gradle/gradle-build-action@v2 + - uses: gradle/gradle-build-action@v2.4.2 - run: gradle assembleRelease - uses: actions/upload-artifact@v3.1.1 diff --git a/.github/workflows/build_pull_request.yaml b/.github/workflows/build_pull_request.yaml index 2c92bd23..929ae7f7 100644 --- a/.github/workflows/build_pull_request.yaml +++ b/.github/workflows/build_pull_request.yaml @@ -11,7 +11,7 @@ jobs: distribution: temurin java-version: 11 - - uses: gradle/gradle-build-action@v2 + - uses: gradle/gradle-build-action@v2.4.2 - run: gradle assembleRelease - uses: actions/upload-artifact@v3.1.1 diff --git a/README-de.md b/README-de.md index 1c836abd..20d61f84 100644 --- a/README-de.md +++ b/README-de.md @@ -136,7 +136,7 @@ Vielen Dank an alle **Read You** Übersetzer, und wenn Sie einen Beitrag leisten [](https://github.com/Kyant0) -Vielen Dank an **@Krant0** für die Design-Inspiration und die Implementierung der Monet-Engine für **Read You**. +Vielen Dank an **@Kyant0** für die Design-Inspiration und die Implementierung der Monet-Engine für **Read You**. [Copyright © 2000-2023 JetBrains s.r.o. JetBrains and the JetBrains logo are registered trademarks of JetBrains s.r.o.](https://www.jetbrains.com/) diff --git a/README-zh-CN.md b/README-zh-CN.md index 91704817..2113a74f 100644 --- a/README-zh-CN.md +++ b/README-zh-CN.md @@ -136,7 +136,7 @@ F-Droid 版本与其他版本不兼容,您无法通过覆盖安装包来升级 [](https://github.com/Kyant0) -感谢 **@Krant0** 为 **Read You** 提供的设计灵感与 Monet 引擎实现。 +感谢 **@Kyant0** 为 **Read You** 提供的设计灵感与 Monet 引擎实现。 [Copyright © 2000-2023 JetBrains s.r.o. JetBrains and the JetBrains logo are registered trademarks of JetBrains s.r.o.](https://www.jetbrains.com/) diff --git a/README.md b/README.md index 2ed36188..6cb07700 100644 --- a/README.md +++ b/README.md @@ -27,8 +27,8 @@

English  |   Deutsch  |   简体中文  |   - 繁體中文  |   - فارسی

+ 繁體中文 (Outdated)  |   + فارسی (Outdated)



startup @@ -136,7 +136,7 @@ Thank you to each of the **Read You** translators, and if you would like to cont [](https://github.com/Kyant0) -Thanks to **@Krant0** for the design inspiration and Monet engine implementation for **Read You**. +Thanks to **@Kyant0** for the design inspiration and Monet engine implementation for **Read You**. [Copyright © 2000-2023 JetBrains s.r.o. JetBrains and the JetBrains logo are registered trademarks of JetBrains s.r.o.](https://www.jetbrains.com/) diff --git a/app/src/main/java/me/ash/reader/CrashHandler.kt b/app/src/main/java/me/ash/reader/CrashHandler.kt index c3f26ca8..b57fcae1 100644 --- a/app/src/main/java/me/ash/reader/CrashHandler.kt +++ b/app/src/main/java/me/ash/reader/CrashHandler.kt @@ -31,7 +31,7 @@ class CrashHandler(private val context: Context) : UncaughtExceptionHandler { private fun getCauseMessage(e: Throwable?): String? { val cause = getCauseRecursively(e) - return if (cause != null) cause.message else e?.javaClass?.name + return if (cause != null) cause.message.toString() else e?.javaClass?.name } private fun getCauseRecursively(e: Throwable?): Throwable? {