Release 0.2.2
This commit is contained in:
parent
d1db2d60ec
commit
11262f86f9
@ -38,9 +38,9 @@ android {
|
||||
minSdkVersion 16
|
||||
targetSdkVersion 23
|
||||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||||
versionCode 7
|
||||
versionCode project.findProperty('versionCode')?.toInteger() ?: 7
|
||||
versionName "0.2.1"
|
||||
versionCode 8
|
||||
versionCode project.findProperty('versionCode')?.toInteger() ?: 8
|
||||
versionName "0.2.2"
|
||||
|
||||
buildConfigField "String", "COMMIT_COUNT", "\"${getCommitCount()}\""
|
||||
buildConfigField "String", "COMMIT_SHA", "\"${getGitSha()}\""
|
||||
|
@ -36,6 +36,10 @@ class DbOpenHelper(context: Context)
|
||||
override fun onUpgrade(db: SQLiteDatabase, oldVersion: Int, newVersion: Int) {
|
||||
if (oldVersion < 2) {
|
||||
db.execSQL(ChapterTable.sourceOrderUpdateQuery)
|
||||
|
||||
// Fix kissmanga covers after supporting cloudflare
|
||||
db.execSQL("""UPDATE mangas SET thumbnail_url =
|
||||
REPLACE(thumbnail_url, '93.174.95.110', 'kissmanga.com') WHERE source = 4""")
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -30,7 +30,10 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical"
|
||||
android:minHeight="@dimen/listPreferredItemHeightSmall"
|
||||
android:padding="@dimen/chglib_material_keyline1"
|
||||
android:paddingLeft="@dimen/chglib_material_keyline1"
|
||||
android:paddingRight="@dimen/chglib_material_keyline1"
|
||||
android:paddingTop="8dp"
|
||||
android:paddingBottom="8dp"
|
||||
android:textAppearance="@style/TextAppearance.Regular.Body1"
|
||||
tools:text="Use DashClock with Android 4.2's Daydream feature; great for use with desktop docks!"
|
||||
/>
|
||||
|
@ -1,4 +1,28 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<changelog bulletedList="true">
|
||||
|
||||
<changelogversion versionName="v0.2.2" changeDate="">
|
||||
<changelogtext>[b]Important![/b] Now chapters follow the order of the sources. [b]It's required that you update your entire library
|
||||
before reading to sync them.[/b] Old behavior can be restored for a manga in the overflow menu of the chapters tab.
|
||||
</changelogtext>
|
||||
|
||||
<changelogtext>Kissmanga now loads through CloudFlare.</changelogtext>
|
||||
|
||||
<changelogtext>Persistent cookies have been added for a better experience with CloudFlare sites.</changelogtext>
|
||||
|
||||
<changelogtext>Added link to manga website in the info page. [a href="https://github.com/inorichi/tachiyomi/issues/157"]#157[/a]</changelogtext>
|
||||
|
||||
<changelogtext>Added notifications for downloads. [a href="https://github.com/inorichi/tachiyomi/pull/289"]#289[/a]</changelogtext>
|
||||
|
||||
<changelogtext>Added more options to recent updates. [a href="https://github.com/inorichi/tachiyomi/pull/324"]#324[/a]</changelogtext>
|
||||
|
||||
<changelogtext>Remember last active category. [a href="https://github.com/inorichi/tachiyomi/issues/261"]#261[/a]</changelogtext>
|
||||
|
||||
<changelogtext>Fixed a bug with seamless mode for chapters with less than 5 pages. [a href="https://github.com/inorichi/tachiyomi/issues/291"]#291[/a]</changelogtext>
|
||||
|
||||
<changelogtext>Improved chapter recognition.</changelogtext>
|
||||
|
||||
<changelogtext>Bugfixes and more improvements.</changelogtext>
|
||||
</changelogversion>
|
||||
|
||||
</changelog>
|
Loading…
Reference in New Issue
Block a user