mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-05 01:15:14 +01:00
Merge branch 'REL_0.9.761'
This commit is contained in:
commit
fa7b668ac8
@ -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
|
||||
|
||||
|
@ -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()}\""
|
||||
|
@ -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>
|
||||
|
@ -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">
|
||||
|
@ -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>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user