From a4b86b4abec62e16ce69efebdf61924359ff1004 Mon Sep 17 00:00:00 2001 From: Nut Date: Thu, 6 Feb 2020 23:37:02 +0100 Subject: [PATCH 1/5] internal version to 50 --- AndorsTrail/AndroidManifest.xml | 2 +- .../src/com/gpl/rpg/AndorsTrail/AndorsTrailApplication.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/AndorsTrail/AndroidManifest.xml b/AndorsTrail/AndroidManifest.xml index c6f557e23..017620a3e 100644 --- a/AndorsTrail/AndroidManifest.xml +++ b/AndorsTrail/AndroidManifest.xml @@ -3,7 +3,7 @@ diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/AndorsTrailApplication.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/AndorsTrailApplication.java index 54d4f3633..dec7bab7c 100644 --- a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/AndorsTrailApplication.java +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/AndorsTrailApplication.java @@ -30,7 +30,7 @@ public final class AndorsTrailApplication extends Application { public static final boolean DEVELOPMENT_DEBUGMESSAGES = false; public static final boolean DEVELOPMENT_INCOMPATIBLE_SAVEGAMES = DEVELOPMENT_DEBUGRESOURCES || DEVELOPMENT_DEBUGBUTTONS || DEVELOPMENT_FASTSPEED; public static final int DEVELOPMENT_INCOMPATIBLE_SAVEGAME_VERSION = 999; - public static final int CURRENT_VERSION = DEVELOPMENT_INCOMPATIBLE_SAVEGAMES ? DEVELOPMENT_INCOMPATIBLE_SAVEGAME_VERSION : 49; + public static final int CURRENT_VERSION = DEVELOPMENT_INCOMPATIBLE_SAVEGAMES ? DEVELOPMENT_INCOMPATIBLE_SAVEGAME_VERSION : 50; public static final String CURRENT_VERSION_DISPLAY = "0.7.8"; public static final boolean IS_RELEASE_VERSION = !CURRENT_VERSION_DISPLAY.matches(".*[a-d].*"); From 9042fa9daa4b42a71a61b8890eb045d22b78036f Mon Sep 17 00:00:00 2001 From: Nut Date: Sat, 8 Feb 2020 20:14:18 +0100 Subject: [PATCH 2/5] new version 0.7.9dev(51): Probably the next release with bugfixes and translations --- AndorsTrail/AndroidManifest.xml | 4 ++-- .../src/com/gpl/rpg/AndorsTrail/AndorsTrailApplication.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/AndorsTrail/AndroidManifest.xml b/AndorsTrail/AndroidManifest.xml index 017620a3e..23bbd01ca 100644 --- a/AndorsTrail/AndroidManifest.xml +++ b/AndorsTrail/AndroidManifest.xml @@ -3,8 +3,8 @@ Date: Mon, 10 Feb 2020 00:28:37 +0100 Subject: [PATCH 3/5] enable debug buttons --- .../src/com/gpl/rpg/AndorsTrail/AndorsTrailApplication.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/AndorsTrailApplication.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/AndorsTrailApplication.java index 8172b880d..f85488213 100644 --- a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/AndorsTrailApplication.java +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/AndorsTrailApplication.java @@ -24,10 +24,10 @@ public final class AndorsTrailApplication extends Application { public static final boolean DEVELOPMENT_DEBUGRESOURCES = false; public static final boolean DEVELOPMENT_FORCE_STARTNEWGAME = false; public static final boolean DEVELOPMENT_FORCE_CONTINUEGAME = false; - public static final boolean DEVELOPMENT_DEBUGBUTTONS = false; + public static final boolean DEVELOPMENT_DEBUGBUTTONS = true; public static final boolean DEVELOPMENT_FASTSPEED = false; - public static final boolean DEVELOPMENT_VALIDATEDATA = false; - public static final boolean DEVELOPMENT_DEBUGMESSAGES = false; + public static final boolean DEVELOPMENT_VALIDATEDATA = true; + public static final boolean DEVELOPMENT_DEBUGMESSAGES = true; public static final boolean DEVELOPMENT_INCOMPATIBLE_SAVEGAMES = DEVELOPMENT_DEBUGRESOURCES || DEVELOPMENT_DEBUGBUTTONS || DEVELOPMENT_FASTSPEED; public static final int DEVELOPMENT_INCOMPATIBLE_SAVEGAME_VERSION = 999; public static final int CURRENT_VERSION = DEVELOPMENT_INCOMPATIBLE_SAVEGAMES ? DEVELOPMENT_INCOMPATIBLE_SAVEGAME_VERSION : 51; From 9a7f18525bcbf20507a59835f02d48ad55aa63cf Mon Sep 17 00:00:00 2001 From: Nut Date: Tue, 18 Feb 2020 23:30:22 +0100 Subject: [PATCH 4/5] teleport AR --- .../com/gpl/rpg/AndorsTrail/activity/DebugInterface.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/activity/DebugInterface.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/activity/DebugInterface.java index ecee9f837..08c6a4a4c 100644 --- a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/activity/DebugInterface.java +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/activity/DebugInterface.java @@ -231,6 +231,12 @@ public final class DebugInterface { controllerContext.movementController.placePlayerAsyncAt(MapObject.MapObjectType.newmap, "brimhaven4", "south2", 0, 0); } }) + ,new DebugButton("ar", new OnClickListener() { + @Override + public void onClick(View arg0) { + controllerContext.movementController.placePlayerAsyncAt(MapObject.MapObjectType.newmap, "mountainlake5", "north", 0, 0); + } + }) })); buttonList.addAll(tpButtons); From d6823bdf07cf90fc098931eeddaa81d1268be6b9 Mon Sep 17 00:00:00 2001 From: Gonk Date: Sat, 22 Feb 2020 08:32:15 +0100 Subject: [PATCH 5/5] Adding display scaling factor 0.5 as workaround for bug https://github.com/NutAndor/v079/issues/3 --- AndorsTrail/res/values/arrays.xml | 2 ++ AndorsTrail/res/values/strings.xml | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/AndorsTrail/res/values/arrays.xml b/AndorsTrail/res/values/arrays.xml index 0310341fa..e6ef950d8 100644 --- a/AndorsTrail/res/values/arrays.xml +++ b/AndorsTrail/res/values/arrays.xml @@ -121,11 +121,13 @@ + @string/preferences_display_scaling_factor_50_percent @string/preferences_display_scaling_factor_normal @string/preferences_display_scaling_factor_50_percent_larger @string/preferences_display_scaling_factor_double + 0.5f 1.0f 1.5f 2.0f diff --git a/AndorsTrail/res/values/strings.xml b/AndorsTrail/res/values/strings.xml index 6ca71af9d..22cbbf662 100644 --- a/AndorsTrail/res/values/strings.xml +++ b/AndorsTrail/res/values/strings.xml @@ -364,7 +364,8 @@ Lowers move cost %1$d AP Scaling factor - Makes the game view display everything larger. + Makes the game view display everything larger or smaller. + Half size Normal size 1.5x size Double size