Revision 422ebaef
Added by Leszek Koltunski 8 months ago
build.gradle | ||
---|---|---|
15 | 15 |
applicationId "org.distorted.magic" |
16 | 16 |
minSdkVersion 21 |
17 | 17 |
targetSdkVersion 34 |
18 |
versionCode 90
|
|
19 |
versionName "2.0.1"
|
|
18 |
versionCode 91
|
|
19 |
versionName "2.0.2"
|
|
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. Support for shape-shifting cuboids.\n" +
|
|
37 |
"2. Support for sorting the puzzle grid by various criteria.";
|
|
36 |
"1. Support for Penrose Cubes.\n" +
|
|
37 |
"2. Support for adjustable colors and shapes of stickers.";
|
|
38 | 38 |
|
39 | 39 |
private static final String WHATS_COMING = |
40 |
"1. Support for adjustable stickers (not only the colors, but support for texturing the whole cube with images of your choice).\n" +
|
|
40 |
"1. Support for sticker modes (Tartan Cube, Shepherd's Cube, etc).\n" +
|
|
41 | 41 |
"2. Support for color themes in the UI.\n" + |
42 | 42 |
"3. Algorithmic solvers. (sub-optimal solvers for larger puzzles such as the 4x4)\n" + |
43 | 43 |
"4. iOS version (no time for this, anyone can help? Code is open-source)\n" + |
44 |
"5. More objects:\n - Ghost Cubes\n - more Mixups\n - Penrose Cubes\n";
|
|
44 |
"5. More objects:\n - Ghost Cubes\n - more Mixups\n - Barrels\n";
|
|
45 | 45 |
|
46 | 46 |
/////////////////////////////////////////////////////////////////////////////////////////////////// |
47 | 47 |
|
... | ... | |
56 | 56 |
{ |
57 | 57 |
WindowManager.LayoutParams params = window.getAttributes(); |
58 | 58 |
params.width = (int)Math.min( mHeight*0.60f,mWidth*0.90f ); |
59 |
params.height = (int)(mHeight*0.90f); |
|
60 | 59 |
window.setAttributes(params); |
61 | 60 |
} |
62 | 61 |
} |
Also available in: Unified diff
AboutDialog
bump version to 2.0.2