Version 0.9.761
Fixed Reader transision page
This commit is contained in:
parent
4d6fb3139d
commit
50a0e20471
5 changed files with 12 additions and 6 deletions
|
@ -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)
|
![screenshots of app](./.github/readme-images/theming-screenshots.gif)
|
||||||
|
|
||||||
## Newest Release
|
## Newest Release
|
||||||
[v0.9.76](https://github.com/Jays2Kings/tachiyomi/releases)
|
[v0.9.761](https://github.com/Jays2Kings/tachiyomi/releases)
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
|
|
|
@ -38,8 +38,8 @@ android {
|
||||||
minSdkVersion 21
|
minSdkVersion 21
|
||||||
targetSdkVersion 29
|
targetSdkVersion 29
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
versionCode 57
|
versionCode 58
|
||||||
versionName '0.9.76'
|
versionName '0.9.761'
|
||||||
|
|
||||||
buildConfigField "String", "COMMIT_COUNT", "\"${getCommitCount()}\""
|
buildConfigField "String", "COMMIT_COUNT", "\"${getCommitCount()}\""
|
||||||
buildConfigField "String", "COMMIT_SHA", "\"${getGitSha()}\""
|
buildConfigField "String", "COMMIT_SHA", "\"${getGitSha()}\""
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<changelog bulletedList="true">
|
<changelog bulletedList="true">
|
||||||
|
<changelogversion versionName="v0.9.761" changeDate="">
|
||||||
|
<changelogtext>More bug fixes :(</changelogtext>
|
||||||
|
</changelogversion>
|
||||||
|
|
||||||
<changelogversion versionName="v0.9.76" changeDate="">
|
<changelogversion versionName="v0.9.76" changeDate="">
|
||||||
<changelogtext>Bug fixes and performance improvements :)</changelogtext>
|
<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>
|
<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>
|
||||||
|
|
|
@ -3,9 +3,9 @@
|
||||||
<style name="Theme.Base.Reader" parent="Theme.Base">
|
<style name="Theme.Base.Reader" parent="Theme.Base">
|
||||||
<item name="android:statusBarColor">?colorPrimaryDark</item>
|
<item name="android:statusBarColor">?colorPrimaryDark</item>
|
||||||
<item name="android:navigationBarColor">?colorPrimaryDark</item>
|
<item name="android:navigationBarColor">?colorPrimaryDark</item>
|
||||||
<item name="colorPrimary">#212121</item>
|
<item name="colorPrimary">@color/readerPrimary</item>
|
||||||
<item name="colorPrimaryDark">#212121</item>
|
<item name="colorPrimaryDark">@color/readerPrimary</item>
|
||||||
<item name="android:colorBackground">#1C1C1D</item>
|
<item name="android:colorBackground">@color/readerDarkBackground</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="Theme.Tachiyomi.DarkBlue" parent="Theme.Tachiyomi">
|
<style name="Theme.Tachiyomi.DarkBlue" parent="Theme.Tachiyomi">
|
||||||
|
|
|
@ -16,6 +16,8 @@
|
||||||
<!-- Dark Application Colors -->
|
<!-- Dark Application Colors -->
|
||||||
<color name="colorAmoledPrimary">@color/md_black_1000</color>
|
<color name="colorAmoledPrimary">@color/md_black_1000</color>
|
||||||
<color name="dialog_amoled">@color/darkPrimaryColor</color>
|
<color name="dialog_amoled">@color/darkPrimaryColor</color>
|
||||||
|
<color name="readerPrimary">#212121</color>
|
||||||
|
<color name="readerDarkBackground">#1C1C1D</color>
|
||||||
|
|
||||||
<color name="splashBackgroundColor">@color/colorPrimary</color>
|
<color name="splashBackgroundColor">@color/colorPrimary</color>
|
||||||
|
|
||||||
|
|
Reference in a new issue