Version 0.9.761

Fixed Reader transision page
This commit is contained in:
Jay 2020-02-01 23:40:48 -08:00
parent 4d6fb3139d
commit 50a0e20471
5 changed files with 12 additions and 6 deletions

View File

@ -4,7 +4,7 @@ Tachiyomi is a free and open source manga reader for Android 5.0 and above.
![screenshots of app](./.github/readme-images/theming-screenshots.gif)
## Newest Release
[v0.9.76](https://github.com/Jays2Kings/tachiyomi/releases)
[v0.9.761](https://github.com/Jays2Kings/tachiyomi/releases)
## Features

View File

@ -38,8 +38,8 @@ android {
minSdkVersion 21
targetSdkVersion 29
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
versionCode 57
versionName '0.9.76'
versionCode 58
versionName '0.9.761'
buildConfigField "String", "COMMIT_COUNT", "\"${getCommitCount()}\""
buildConfigField "String", "COMMIT_SHA", "\"${getGitSha()}\""

View File

@ -1,5 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<changelog bulletedList="true">
<changelogversion versionName="v0.9.761" changeDate="">
<changelogtext>More bug fixes :(</changelogtext>
</changelogversion>
<changelogversion versionName="v0.9.76" changeDate="">
<changelogtext>Bug fixes and performance improvements :)</changelogtext>
<changelogtext>If titles of your manga disappeared in the last update, please go to sources and search for it, this will add the title back</changelogtext>

View File

@ -3,9 +3,9 @@
<style name="Theme.Base.Reader" parent="Theme.Base">
<item name="android:statusBarColor">?colorPrimaryDark</item>
<item name="android:navigationBarColor">?colorPrimaryDark</item>
<item name="colorPrimary">#212121</item>
<item name="colorPrimaryDark">#212121</item>
<item name="android:colorBackground">#1C1C1D</item>
<item name="colorPrimary">@color/readerPrimary</item>
<item name="colorPrimaryDark">@color/readerPrimary</item>
<item name="android:colorBackground">@color/readerDarkBackground</item>
</style>
<style name="Theme.Tachiyomi.DarkBlue" parent="Theme.Tachiyomi">

View File

@ -16,6 +16,8 @@
<!-- Dark Application Colors -->
<color name="colorAmoledPrimary">@color/md_black_1000</color>
<color name="dialog_amoled">@color/darkPrimaryColor</color>
<color name="readerPrimary">#212121</color>
<color name="readerDarkBackground">#1C1C1D</color>
<color name="splashBackgroundColor">@color/colorPrimary</color>