Skip to content

Commit

Permalink
release 2.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
nonproto committed May 10, 2020
1 parent bd5912f commit 1a8e42b
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 13 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ android {
minSdkVersion(24)
targetSdkVersion(29)
applicationId = "tachiyomi.mangadex"
versionCode = 58
versionName = "2.0.5"
versionCode = 59
versionName = "2.0.6"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
multiDexEnabled = true
setProperty("archivesBaseName", "Neko")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ class Downloader(
.flatMap { Observable.from(it) }
// Start downloading images, consider we can have downloaded images already
// Concurrently do 5 pages at a time
.flatMap({ page -> getOrDownloadImage(page, download, tmpDir) }, 8)
.flatMap({ page -> getOrDownloadImage(page, download, tmpDir) }, 5)
// Do when page is downloaded.
.doOnNext { notifier.onProgressChange(download) }.toList().map { _ -> download }
// Do after download completes
Expand Down
3 changes: 3 additions & 0 deletions app/src/main/java/eu/kanade/tachiyomi/ui/main/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,16 @@ import eu.kanade.tachiyomi.util.view.withFadeTransaction
import eu.kanade.tachiyomi.widget.EndAnimatorListener
import eu.kanade.tachiyomi.widget.preference.MangadexLoginDialog
import kotlinx.android.synthetic.main.main_activity.*
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.delay
import kotlinx.coroutines.launch
import kotlinx.coroutines.withContext
import timber.log.Timber
import uy.kohesive.injekt.Injekt
import uy.kohesive.injekt.api.get
import uy.kohesive.injekt.injectLazy
import java.util.Date
import java.util.concurrent.TimeUnit
import kotlin.math.abs

open class MainActivity : BaseActivity(), DownloadServiceListener, MangadexLoginDialog.Listener {
Expand Down
26 changes: 16 additions & 10 deletions app/src/main/res/raw/changelog_release.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,23 @@
<changelogversion
changeDate=""
versionName="v2.0.6">
<changelogtext>New category hopper</changelogtext>
<changelogtext>New material fast scroll bar</changelogtext>
<changelogtext>Downloads are now faster</changelogtext>
<changelogtext>Download 2 chapters at once now</changelogtext>
<changelogtext>New category hopper to navigate categories instead of old fast scroller</changelogtext>
<changelogtext>Hopper can be moved left and right on screen</changelogtext>
<changelogtext>New (old) material fast scroll bar</changelogtext>
<changelogtext>Option to reorder filters in filter bar</changelogtext>
<changelogtext>Collapse or expand all categories buttons</changelogtext>
<changelogtext>App update is now a foreground activity</changelogtext>
<changelogtext>fast scroller now in downloads screen</changelogtext>
<changelogtext>Downloading a chapter now downloads multiple pages at once</changelogtext>
<changelogtext>Downloading now downloads 2 chapters at once</changelogtext>
<changelogtext>Library updates now check up to 5 manga at once to improve overall speed</changelogtext>
<changelogtext>Fixed Missing pages fix</changelogtext>
<changelogtext>Removed workaround option to not mark as read as api was changed and its not needed anymore</changelogtext>
<changelogtext></changelogtext>
<changelogtext></changelogtext>
<changelogtext></changelogtext>
<changelogtext>Oneshot bug fix</changelogtext>
<changelogtext>Missing pages fix</changelogtext>
<changelogtext>2FA not showing fixed</changelogtext>
<changelogtext>Updated wording in scanlators filter group dialog</changelogtext>
<changelogtext>Fixed skipped filtered not always working correctly</changelogtext>
<changelogtext>Fixed Oneshot bug fix</changelogtext>
<changelogtext>Fixed Missing pages fix</changelogtext>
<changelogtext>Fixed 2FA not showing fixed</changelogtext>
<changelogtext>upstream bug fixes</changelogtext>
</changelogversion>
<changelogversion
Expand Down

0 comments on commit 1a8e42b

Please sign in to comment.