Skip to content
This repository has been archived by the owner on Jul 23, 2020. It is now read-only.

Commit

Permalink
v1.108
Browse files Browse the repository at this point in the history
  • Loading branch information
raulhaag committed Jul 19, 2019
1 parent 11b20ac commit 94bd222
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 5 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,21 @@ Downloads

Changelog
---------

Cambios en v1.108:
* Fix Fanfox, MangaHere, Mangashiro.
* Fix decodificador L90.
* Actualizada traduccion al frances y aleman.
* Ahora si hay una bobeda abierta y agregas un manga este queda en ella.
* Min fixes en el backend.

Changes in v1.108:
* Fix Fanfox, MangaHere, Mangashiro.
* Fix L90 decoder.
* Updated french and german translation.
* Now if you have a open vault all new manga go there.
* Min fixes in backend.

Cambios en v1.107:
* Advertencia esta actualizacion va a resetear las bovedas.
* Agregado posproceso de L90 (JapScan).
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ android {
buildToolsVersion '28.0.3'
defaultConfig {
applicationId "ar.rulosoft.mimanganu"
versionCode 107
versionName "1.107"
versionCode 108
versionName "1.108"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
minSdkVersion 15
}
Expand Down
7 changes: 6 additions & 1 deletion app/src/main/java/ar/rulosoft/mimanganu/servers/Kumanga.java
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,12 @@ public Response intercept(Chain chain) throws IOException {
} else {
if (user.trim().isEmpty()) {
Util.getInstance().toast(context, "Para leer el contenido de este manga, debes de iniciar sesion");
return null;
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
e.printStackTrace();
}
return response;
}
try {
Request request = response.request();
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values-es/strings.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="update_message">Cambios en v1.107:\n\t* Advertencia esta actualizacion va a resetear las bovedas.\n\t* Agregado posproceso de L90 (JapScan).\n\t* Fix Mangakawaii.</string>
<string name="update_message">Cambios en v1.108:\n\t* Fix Fanfox, MangaHere, Mangashiro.\n\t* Fix decodificador L90.\n\t* Actualizada traduccion al frances y aleman.\n\t* Ahora si hay una bobeda abierta y agregas un manga este queda en ella.\n\t* Min fixes en el backend.</string>
<string name="action_ajustar_a">Ajustar a</string>
<string name="descargas">Descargas</string>
<string name="datosde">Datos de </string>
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="update_message">Changes in v1.107:\n\t* Warning this update will reset your vaults (for one error with the previews version).\n\t* Added L90 posprocessor (JapScan).\n\t* Fix Mangakawaii.</string>
<string name="update_message">Changes in v1.108:\n\t* Fix Fanfox, MangaHere, Mangashiro.\n\t* Fix L90 decoder.\n\t* Updated french and german translation.\n\t* Now if you have a open vault all new manga go there.\n\t* Min fixes in backend.</string>
<string name="_12hours">12 Hours</string>
<string name="_1day">1 day</string>
<string name="_2day">2 days</string>
Expand Down

0 comments on commit 94bd222

Please sign in to comment.