Release v0.2.3

This commit is contained in:
len 2016-07-24 15:41:58 +02:00
parent 8f83f497d5
commit 74e3d387eb
6 changed files with 32 additions and 8 deletions

View File

@ -38,8 +38,8 @@ android {
minSdkVersion 16
targetSdkVersion 23
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
versionCode 9
versionName "0.2.2-1"
versionCode 10
versionName "0.2.3"
buildConfigField "String", "COMMIT_COUNT", "\"${getCommitCount()}\""
buildConfigField "String", "COMMIT_SHA", "\"${getGitSha()}\""
@ -51,7 +51,7 @@ android {
buildTypes {
debug {
versionNameSuffix ".${getCommitCount()}"
versionNameSuffix "-${getCommitCount()}"
applicationIdSuffix ".debug"
}
release {

View File

@ -1,7 +1,5 @@
-dontobfuscate
-keep class eu.kanade.tachiyomi.injection.** { *; }
# OkHttp
-keepattributes Signature
-keepattributes *Annotation*

View File

@ -106,7 +106,8 @@ class MainActivity : BaseActivity() {
.addNextIntent(Intent(this, MainActivity::class.java))
.startActivities()
} else if (resultCode and SettingsActivity.FLAG_THEME_CHANGED != 0) {
recreate()
// Delay activity recreation to avoid fragment leaks.
nav_view.post { recreate() }
}
} else {
super.onActivityResult(requestCode, resultCode, data)

View File

@ -41,7 +41,7 @@ class SettingsSourcesFragment : SettingsFragment() {
override fun onViewCreated(view: View, savedState: Bundle?) {
super.onViewCreated(view, savedState)
val langs = getLanguages()
val langs = getLanguages().sortedBy { it.lang }
val entryKeys = langs.map { it.code }
languagesPref.entries = langs.map { it.lang }.toTypedArray()

View File

@ -1,6 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<changelog bulletedList="true">
<changelogversion versionName="v0.2.3" changeDate="">
<changelogtext>Added a history of reading. ([a href="https://github.com/inorichi/tachiyomi/issues/316"]#316[/a])</changelogtext>
<changelogtext>Added an option to select the initial screen. ([a href="https://github.com/inorichi/tachiyomi/issues/395"]#395[/a])</changelogtext>
<changelogtext>Added spanish and portuguese translations. ([a href="https://github.com/inorichi/tachiyomi/issues/365"]#365[/a], [a href="https://github.com/inorichi/tachiyomi/issues/375"]#375[/a])</changelogtext>
<changelogtext>Added sources "Mangasee" and "Wie Manga!" ([a href="https://github.com/inorichi/tachiyomi/issues/355"]#355[/a], [a href="https://github.com/inorichi/tachiyomi/issues/379"]#379[/a])</changelogtext>
<changelogtext>New design for the reader's menu. ([a href="https://github.com/inorichi/tachiyomi/issues/368"]#368[/a])</changelogtext>
<changelogtext>When resuming chapters, the new loader starts from the page that was opened, instead of from the beginning. ([a href="https://github.com/inorichi/tachiyomi/issues/268"]#268[/a])</changelogtext>
<changelogtext>Custom brightness in the reader can be set even lower by applying a black layer on the top. ([a href="https://github.com/inorichi/tachiyomi/issues/362"]#362[/a])</changelogtext>
<changelogtext>Fixed reader's status bar reappearing in Android versions older than Kit Kat. ([a href="https://github.com/inorichi/tachiyomi/issues/359"]#359[/a])</changelogtext>
<changelogtext>Fixed UI bugs. ([a href="https://github.com/inorichi/tachiyomi/issues/332"]#332[/a], [a href="https://github.com/inorichi/tachiyomi/issues/333"]#333[/a], [a href="https://github.com/inorichi/tachiyomi/issues/351"]#351[/a], [a href="https://github.com/inorichi/tachiyomi/issues/361"]#361[/a])</changelogtext>
<changelogtext>Fixed empty library covers.</changelogtext>
<changelogtext>Fixed some random crashes (most of them when downloading chapters).</changelogtext>
</changelogversion>
<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.

View File

@ -95,7 +95,7 @@
<string name="dark_theme">Tema oscuro</string>
<!-- Reader section -->
<string name="pref_hide_status_bar">Ocultar barra de estado</string>
<string name="pref_fullscreen">Pantalla completa</string>
<string name="pref_lock_orientation">Bloquear orientación</string>
<string name="pref_enable_transitions">Habilitar transiciones</string>
<string name="pref_show_page_number">Mostrar el número de página</string>
@ -262,6 +262,7 @@
<string name="no_previous_chapter">Capítulo anterior no encontrado</string>
<string name="decode_image_error">La imagen no se pudo decodificar. Intente de nuevo cambiándolo o seleccione una de las siguientes opciones</string>
<string name="confirm_update_manga_sync">¿Actualizar el último capítulo leído a %1$d en los servicios activos?</string>
<string name="viewer_for_this_series">Lector para esta serie</string>
<!-- Backup fragment -->
<string name="backup">Copia de seguridad</string>