Skip to content

Commit

Permalink
1.6.4.1
Browse files Browse the repository at this point in the history
change download url for recommendations
  • Loading branch information
nonproto committed Mar 6, 2020
1 parent 924b864 commit 24e971c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ android {
minSdkVersion(21)
targetSdkVersion(29)
applicationId = "tachiyomi.mangadex"
versionCode = 46
versionName = "1.6.4"
versionCode = 47
versionName = "1.6.4.1"
multiDexEnabled = true
setProperty("archivesBaseName", "Neko")
buildConfigField("String", "BUILD_TIME", "\"${BUILD_TIME}\"")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ class SettingsRelatedController : SettingsController() {
preference {
title = "Github"
val url =
"https://github.com/goldbattle/MangadexRecomendations/blob/master/output"
summary = "Download latest manga compressed json for recommendations (updated daily)"
"https://github.com/goldbattle/MangadexRecomendations/releases/download/v1.0.0/mangas_compressed.json"
summary = "Download latest manga compressed json for recommendations (updated daily)."
onClick {
val intent = Intent(Intent.ACTION_VIEW, Uri.parse(url))
startActivity(intent)
Expand Down Expand Up @@ -148,7 +148,7 @@ class SettingsRelatedController : SettingsController() {
.apply {
setContentTitle(context.resources.getString(R.string.pref_related_loading_welcome))
setSmallIcon(R.drawable.ic_neko_notification)
setPriority(NotificationCompat.PRIORITY_LOW)
priority = NotificationCompat.PRIORITY_LOW
setOngoing(true)
setOnlyAlertOnce(true)
setColor(ContextCompat.getColor(context, R.color.colorPrimary))
Expand Down
8 changes: 7 additions & 1 deletion app/src/main/res/raw/changelog_release.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<changelog bulletedList="true">
<changelogversion
changeDate=""
versionName="v1.6.4.1">
<changelogtext>Changed link for related manga
</changelogtext>
</changelogversion>
<changelogversion
changeDate=""
versionName="v1.6.4">
<changelogtext>Added recommendations tab in manga info (alpha) Requires download a json and
loading it manually for now
loading it manually for now. Enable in settings
</changelogtext>
<changelogtext>add setting to manage notifications</changelogtext>
<changelogtext>refresh webtoon adapter on image property changes</changelogtext>
Expand Down

0 comments on commit 24e971c

Please sign in to comment.