Revision 2a37cfa4
Added by Leszek Koltunski over 2 years ago
| build.gradle | ||
|---|---|---|
| 9 | 9 |
keyAlias = 'distorted' |
| 10 | 10 |
} |
| 11 | 11 |
} |
| 12 |
compileSdkVersion 32
|
|
| 12 |
compileSdkVersion 33
|
|
| 13 | 13 |
|
| 14 | 14 |
defaultConfig {
|
| 15 | 15 |
applicationId "org.distorted.magic" |
| 16 | 16 |
minSdkVersion 21 |
| 17 |
targetSdkVersion 32
|
|
| 18 |
versionCode 71
|
|
| 19 |
versionName "1.12.4"
|
|
| 17 |
targetSdkVersion 33
|
|
| 18 |
versionCode 72
|
|
| 19 |
versionName "1.12.5"
|
|
| 20 | 20 |
} |
| 21 | 21 |
|
| 22 | 22 |
buildTypes {
|
| src/main/java/org/distorted/dialogs/RubikDialogAbout.java | ||
|---|---|---|
| 33 | 33 |
public class RubikDialogAbout extends RubikDialogAbstract |
| 34 | 34 |
{
|
| 35 | 35 |
private static final String WHATS_NEW = |
| 36 |
"1. Solvers: 2x2x3, Pyraminx & Skewb Diamond.\n" + |
|
| 37 |
"2. Implement Icosamate & Master Icosamate\n" + |
|
| 38 |
"3. Connect the solvers to the scrambling engine. Which means: from now on, " + |
|
| 39 |
"all puzzles which have a solver implemented will be perfectly scrambled " + |
|
| 40 |
" - i.e. any scramble at Level 7 will always require exactly 7 moves to solve. " + |
|
| 41 |
"Which also means that in some point in the future, we'll have to clear the High Scores."; |
|
| 36 |
"1. New solvers: 2x2x2, Skewb & Jing Pyraminx.\n" + |
|
| 37 |
"2. Fixes for the Burr Cube & Camouflage Cube"; |
|
| 42 | 38 |
|
| 43 | 39 |
private static final String WHATS_COMING = |
| 44 |
"1. More solvers (2x2, Skewb, Dino).\n" +
|
|
| 40 |
"1. More solvers (Dino, 2x3x3 Cuboid, Pyraminx Diamond).\n" +
|
|
| 45 | 41 |
"2. Support for adjustable stickers.\n" + |
| 46 | 42 |
"3. In-game currency (stars)\n" + |
| 47 | 43 |
"4. More objects (Penrose Cubes, higher-order Jings, Ghost Cubes, more Mirrors, more Mixups)\n" + |
Also available in: Unified diff
Up to version 1.12.5
Update the About dialog.
Target API 33.