Selaa lähdekoodia

Release 0.2.2

len 8 vuotta sitten
vanhempi
commit
11262f86f9

+ 3 - 3
app/build.gradle

@@ -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()}\""

+ 4 - 0
app/src/main/java/eu/kanade/tachiyomi/data/database/DbOpenHelper.kt

@@ -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""")
         }
     }
 

+ 4 - 1
app/src/main/res/layout/changelog_row_layout.xml

@@ -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!"
         />

+ 24 - 0
app/src/main/res/raw/changelog_release.xml

@@ -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>