Skip to content

Commit

Permalink
Release 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jobobby04 committed Dec 12, 2020
1 parent 6f712c7 commit 958b6d4
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ android {
minSdkVersion AndroidConfig.minSdk
targetSdkVersion AndroidConfig.targetSdk
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
versionCode 9
versionName "1.3.1"
versionCode 10
versionName "1.4.0"

buildConfigField "String", "COMMIT_COUNT", "\"${getCommitCount()}\""
buildConfigField "String", "COMMIT_SHA", "\"${getGitSha()}\""
Expand Down
8 changes: 8 additions & 0 deletions app/src/main/java/exh/EXHMigrations.kt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import eu.kanade.tachiyomi.data.database.tables.ChapterTable
import eu.kanade.tachiyomi.data.database.tables.MangaTable
import eu.kanade.tachiyomi.data.library.LibraryUpdateJob
import eu.kanade.tachiyomi.data.preference.PreferencesHelper
import eu.kanade.tachiyomi.data.track.TrackManager
import eu.kanade.tachiyomi.data.updater.UpdaterJob
import eu.kanade.tachiyomi.extension.ExtensionUpdateJob
import eu.kanade.tachiyomi.source.Source
Expand All @@ -29,6 +30,8 @@ import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
import kotlinx.serialization.decodeFromString
import kotlinx.serialization.json.Json
import uy.kohesive.injekt.Injekt
import uy.kohesive.injekt.api.get
import uy.kohesive.injekt.injectLazy
import java.io.File
import java.net.URI
Expand Down Expand Up @@ -253,6 +256,11 @@ object EXHMigrations {
}
}
}
if (oldVersion < 10) {
// Force MAL log out due to login flow change
val trackManager = Injekt.get<TrackManager>()
trackManager.myAnimeList.logout()
}

// if (oldVersion < 1) { } (1 is current release version)
// do stuff here when releasing changed crap
Expand Down
24 changes: 24 additions & 0 deletions app/src/main/res/raw/changelog_release.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<changelog bulletedList="true">
<changelogversion versionName="1.4.0" changeDate="Dec 12,2020">
<changelogtext>[b]Based on Tachiyomi stable 0.10.6(from 0.10.5)[/b] </changelogtext>
<changelogtext>[b]New[/b] NEW ICON! Thanks to Aytox who made it!</changelogtext>
<changelogtext>[b]New[/b] Add french translation, thanks to Adam-sama</changelogtext>
<changelogtext>[b]New[/b] Double clicking the updates bottom bar button will open downloads</changelogtext>
<changelogtext>[b]New[/b] Add a way to exclude manga in certain categories from auto delete</changelogtext>
<changelogtext>[b]New[/b] Add Sort by Tags library sorting method, adds a customizable list of tags that manga will by sorted by the position of the tag in the list</changelogtext>
<changelogtext>Update Lewd manga filter to include new sources and tags</changelogtext>
<changelogtext>Enhance More Info menu</changelogtext>
<changelogtext>Cleanup the looks of manga extra info</changelogtext>
<changelogtext>Fix Smart background so it works properly(it half worked before)</changelogtext>
<changelogtext>Community recommendations enhancements, errors now properly show</changelogtext>
<changelogtext>Add ability to use Neko similar manga for Mangadex manga</changelogtext>
<changelogtext>Support the short title NHentai source setting</changelogtext>
<changelogtext>Switch to the Mangadex extension for the low quality cover setting</changelogtext>
<changelogtext>[b]New[/b] Add push to Mangadex in Mangadex settings</changelogtext>
<changelogtext>Fix Mangadex settings inconsistencies</changelogtext>
<changelogtext>[b]New[/b] If the E-Hentai download limit exceeded image is sent, stop downloading</changelogtext>
<changelogtext>EHentai options will be hidden instead of greyed out when not logged in</changelogtext>
<changelogtext>Fix MDList tracking stalling when it thinks its logged in but its not</changelogtext>
<changelogtext>Fix MDList tracking getting set to complete when its not</changelogtext>
<changelogtext>E-Hentai migrations will be throttled so that you dont get banned</changelogtext>
<changelogtext>Migrating will migrate viewer, chapter sort, and other stuff</changelogtext>
</changelogversion>
<changelogversion versionName="1.3.1" changeDate="Sept 14,2020">
<changelogtext>[b]New[/b] Share manga info when you share a page</changelogtext>
<changelogtext>Tweak preload settings, make the max 20, defaults to 10</changelogtext>
Expand Down

0 comments on commit 958b6d4

Please sign in to comment.