Fix typo errors in README, and fix CVE-2023-30853

This commit is contained in:
Ash 2023-05-16 13:28:05 +08:00
parent c2619f568f
commit b45d6fffb5
6 changed files with 8 additions and 8 deletions

View File

@ -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

View File

@ -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

View File

@ -136,7 +136,7 @@ Vielen Dank an alle **Read You** Übersetzer, und wenn Sie einen Beitrag leisten
[<img src="https://avatars.githubusercontent.com/u/76829190?v=4" width="180" height="180" style="display: block; border: 1px solid #f5f5f5; border-radius: 9999px;"/>](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**.
[<img src="https://resources.jetbrains.com/storage/products/company/brand/logos/jb_beam.png" width="200" alt="Copyright © 2000-2023 JetBrains s.r.o. JetBrains and the JetBrains logo are registered trademarks of JetBrains s.r.o."/>](https://www.jetbrains.com/)

View File

@ -136,7 +136,7 @@ F-Droid 版本与其他版本不兼容,您无法通过覆盖安装包来升级
[<img src="https://avatars.githubusercontent.com/u/76829190?v=4" width="180" height="180" style="display: block; border: 1px solid #f5f5f5; border-radius: 9999px;"/>](https://github.com/Kyant0)
感谢 **@Krant0** 为 **Read You** 提供的设计灵感与 Monet 引擎实现。
感谢 **@Kyant0** 为 **Read You** 提供的设计灵感与 Monet 引擎实现。
[<img src="https://resources.jetbrains.com/storage/products/company/brand/logos/jb_beam.png" width="200" alt="Copyright © 2000-2023 JetBrains s.r.o. JetBrains and the JetBrains logo are registered trademarks of JetBrains s.r.o."/>](https://www.jetbrains.com/)

View File

@ -27,8 +27,8 @@
<p>English&nbsp;&nbsp;|&nbsp;&nbsp;
<a target="_blank" href="https://github.com/Ashinch/ReadYou/blob/main/README-de.md">Deutsch</a>&nbsp;&nbsp;|&nbsp;&nbsp;
<a target="_blank" href="https://github.com/Ashinch/ReadYou/blob/main/README-zh-CN.md">简体中文</a>&nbsp;&nbsp;|&nbsp;&nbsp;
<a target="_blank" href="https://github.com/Ashinch/ReadYou/blob/main/README-zh-TW.md">繁體中文</a>&nbsp;&nbsp;|&nbsp;&nbsp;
<a target="_blank" href="https://github.com/Ashinch/ReadYou/blob/main/README-fa.md">فارسی</a></p>
<a target="_blank" href="https://github.com/Ashinch/ReadYou/blob/main/README-zh-TW.md">繁體中文 (Outdated)</a>&nbsp;&nbsp;|&nbsp;&nbsp;
<a target="_blank" href="https://github.com/Ashinch/ReadYou/blob/main/README-fa.md">فارسی (Outdated)</a></p>
<br/>
<br/>
<img src="https://raw.githubusercontent.com/Ashinch/ReadYou/main/fastlane/metadata/android/en-US/images/startup.png" width="19.2%" alt="startup" />
@ -136,7 +136,7 @@ Thank you to each of the **Read You** translators, and if you would like to cont
[<img src="https://avatars.githubusercontent.com/u/76829190?v=4" width="180" height="180" style="display: block; border: 1px solid #f5f5f5; border-radius: 9999px;"/>](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**.
[<img src="https://resources.jetbrains.com/storage/products/company/brand/logos/jb_beam.png" width="200" alt="Copyright © 2000-2023 JetBrains s.r.o. JetBrains and the JetBrains logo are registered trademarks of JetBrains s.r.o."/>](https://www.jetbrains.com/)

View File

@ -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? {