commit 24da418de37f5418dea751f080b196903d2b70de
Author: Leszek Koltunski <leszek@koltunski.pl>
Date:   Fri Mar 10 16:58:49 2023 +0100

    Dialog About.

diff --git a/src/main/java/org/distorted/dialogs/RubikDialogAbout.java b/src/main/java/org/distorted/dialogs/RubikDialogAbout.java
index 080f567e..30dc81cb 100644
--- a/src/main/java/org/distorted/dialogs/RubikDialogAbout.java
+++ b/src/main/java/org/distorted/dialogs/RubikDialogAbout.java
@@ -16,6 +16,7 @@ import android.content.res.Resources;
 import android.view.View;
 import android.view.Window;
 import android.view.WindowManager;
+import android.widget.TextView;
 
 import androidx.fragment.app.FragmentActivity;
 
@@ -27,15 +28,15 @@ import org.distorted.main.RubikActivity;
 public class RubikDialogAbout extends RubikDialogAbstract
   {
   private static final String WHATS_NEW =
-      "1. Implement 2x2x3, Pyraminx & Skewb Diamond solvers.\n" +
-      "2. Connect the solvers to the scrambling engine. Which means: from now on, " +
+      "1. Solvers: 2x2x3, Pyraminx & Skewb Diamond.\n" +
+      "2. Implement Icosamate & Master Icosamate\n" +
+      "3. Connect the solvers to the scrambling engine. Which means: from now on, " +
        "all puzzles which have a solver implemented will be perfectly scrambled " +
        " - i.e. any scramble at Level 7 will always require exactly 7 moves to solve. " +
-       "Which also means that in some point in the future, we'll have to clear the High Scores.\n" +
-      "3. Implement Icosamate & Master Icosamate";
+       "Which also means that in some point in the future, we'll have to clear the High Scores.";
 
   private static final String WHATS_COMING =
-      "1. Implemented Pocket Cube, Skewb solvers.\n" +
+      "1. More solvers (2x2, Skewb, Dino).\n" +
       "2. Support for adjustable stickers.\n" +
       "3. In-game currency (stars)\n" +
       "4. More objects (Penrose Cubes, higher-order Jings, Ghost Cubes, more Mirrors, more Mixups)";
@@ -103,6 +104,11 @@ public class RubikDialogAbout extends RubikDialogAbstract
     int margin= (int)(mHeight*0.010f);
     int titleH= (int)(mHeight*0.035f);
     int padd  = (int)(mHeight*0.010f);
+
+    TextView newV = view.findViewById(R.id.new_message);
+    newV.setText(WHATS_NEW);
+    TextView comV = view.findViewById(R.id.coming_message);
+    comV.setText(WHATS_COMING);
     }
 
 ///////////////////////////////////////////////////////////////////////////////////////////////////
diff --git a/src/main/res/layout/dialog_about.xml b/src/main/res/layout/dialog_about.xml
index 7251c975..2992071a 100644
--- a/src/main/res/layout/dialog_about.xml
+++ b/src/main/res/layout/dialog_about.xml
@@ -136,13 +136,13 @@
             android:paddingRight="10dp">
 
             <LinearLayout
-                 android:id="@+id/new_scrollable_main_layout"
+                 android:id="@+id/new_main_layout"
                  android:layout_width="match_parent"
                  android:layout_height="wrap_content"
                  android:orientation="vertical">
 
                  <TextView
-                     android:id="@+id/new_scrollable_message"
+                     android:id="@+id/new_message"
                      android:layout_width="match_parent"
                      android:layout_height="match_parent"
                      android:text="@string/credits1"
@@ -181,13 +181,13 @@
             android:paddingRight="10dp">
 
             <LinearLayout
-                 android:id="@+id/coming_scrollable_main_layout"
+                 android:id="@+id/coming_main_layout"
                  android:layout_width="match_parent"
                  android:layout_height="wrap_content"
                  android:orientation="vertical">
 
                  <TextView
-                     android:id="@+id/coming_scrollable_message"
+                     android:id="@+id/coming_message"
                      android:layout_width="match_parent"
                      android:layout_height="match_parent"
                      android:text="@string/credits2"
