Skip to content

Commit

Permalink
Version 0.9.761
Browse files Browse the repository at this point in the history
Fixed Reader transision page
  • Loading branch information
Jays2Kings committed Feb 2, 2020
1 parent 4d6fb31 commit 50a0e20
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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()}\""
Expand Down
4 changes: 4 additions & 0 deletions app/src/main/res/raw/changelog_release.xml
Original file line number Diff line number Diff line change
@@ -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>
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/res/values-night/themes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down
2 changes: 2 additions & 0 deletions app/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand Down

0 comments on commit 50a0e20

Please sign in to comment.