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

Commit

Permalink
v1.52
Browse files Browse the repository at this point in the history
  • Loading branch information
raulhaag committed Jul 26, 2016
1 parent b54c8f9 commit 99f35e4
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ Downloads

Changelog
---------
Cambios en v1.52:
* Agregado LeoManga.
* Agregado fast updates.
* Agregado menu contextual "Agregar Manga".
* Fixes y mejoras.

Cambios 1.51
* Hotfixs 1.50.

Expand Down
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ apply plugin: 'com.android.application'

android {
compileSdkVersion 24
buildToolsVersion "24.0.0"
buildToolsVersion "24.0.1"

defaultConfig {
applicationId "ar.rulosoft.mimanganu"
minSdkVersion 14
targetSdkVersion 24
versionCode 51
versionName "1.51"
versionCode 52
versionName "1.52"
}

signingConfigs {
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/java/ar/rulosoft/mimanganu/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,15 @@ protected void onNewIntent(Intent intent) {
}

private void showUpdateDialog(){
final boolean show_dialog = pm.getBoolean("show_updates", true);
if (show_dialog) {//! o no segun la version 1.41 sin !
final boolean show_dialog = pm.getBoolean("show_updates", false);
if (!show_dialog) {//! o no segun la version 1.41 sin !
AlertDialog.Builder dlgAlert = new AlertDialog.Builder(this);
dlgAlert.setMessage(getString(R.string.update_message));
dlgAlert.setTitle(R.string.app_name);
dlgAlert.setCancelable(true);
dlgAlert.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
pm.edit().putBoolean("show_updates", false).apply(); //false 1.36
pm.edit().putBoolean("show_updates", true).apply(); //false 1.36
}
});
dlgAlert.setNegativeButton(getString(R.string.see_later), new DialogInterface.OnClickListener() {
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
Expand Up @@ -99,7 +99,7 @@
<string name="notification_sound_subtitle">Al encotrar nuevos mangas.</string>
<string name="notification_sound_title">Notificación sonora</string>
<string name="see_later">Ver Despues</string>
<string name="update_message">Cambios en v1.51:\n\t* Hotfixs 1.50.\n\nCambios en v1.50:\n\t* Arreglados varios errores\n\t* Pasadas varias funciones al trasfondo \n\t* Agregado lectura continua de capítulos \n\t*Agregadas notificaciones separadas por manga \n\t* Agregada la opción de solo Wifi y otras mejoras.</string>
<string name="update_message">Cambios en v1.52:\n\t* Agregado LeoManga.\n\t* Agregado fast updates.\n\t* Agregado menu contextual "Agregar Manga".\n\t* Fixes y mejoras.</string>
<string name="download_image_again">Volver a bajar imagen</string>
<string name="ui_settings">Configuración de UI</string>
<string name="download_selection">Descargar seleccion</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
Expand Up @@ -122,7 +122,7 @@
<string name="read_next">Do you want to open the next chapter?</string>
<string name="last_chapter">Currently this is the last chapter</string>
<string name="genre">Genre</string>
<string name="update_message">Changes in v1.51:\n\t* Hotfixs 1.50.\n\nChanges in v1.50:\n\t*fix some bugs\n\t*make adding chapters / mangas to db more robust\n\t*let mark selected / all as read / unread functions run in the background\n\t*add Seamless chapter transitions\n\t*add detailed notifications\n\t*add only Wifi switch and others features.</string>
<string name="update_message">Changes in v1.52:\n\t* Added LeoManga.\n\t* Added fast updates.\n\t* Added context menu "Add Manga".\n\t* Fixes and improves.</string>
<string name="search_for_updates">Search for updates</string>
<string name="connection_settings">Connection Settings </string>
<string name="connection_timeout_title">Connection timeout</string>
Expand Down

0 comments on commit 99f35e4

Please sign in to comment.