diff --git a/AGENTS.md b/AGENTS.md index 3e52212..ec134c4 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -4,5 +4,6 @@ - AYN Thor secondary display: 3.92-inch AMOLED, 1240 x 1080, 60Hz. - AYN Thor UI sizing must be designed against Android CSS/layout viewport, not physical framebuffer pixels. - Approximate Thor CSS viewports: main display 960 x 540, secondary display 620 x 540. +- Test top-screen UI only against the main display viewport, and bottom-screen UI only against the secondary display viewport. - User rebuilds app; do not rebuild APK unless explicitly requested. - Apply game changes to both web version and mobile app version. diff --git a/IWantToHeal-Thor-v1.0.32.apk b/IWantToHeal-Thor-v1.0.32.apk index 98625c7..afa7878 100644 Binary files a/IWantToHeal-Thor-v1.0.32.apk and b/IWantToHeal-Thor-v1.0.32.apk differ diff --git a/IWantToHeal-Thor-v1.0.33.apk b/IWantToHeal-Thor-v1.0.33.apk new file mode 100644 index 0000000..51d72ef Binary files /dev/null and b/IWantToHeal-Thor-v1.0.33.apk differ diff --git a/android/app/build.gradle b/android/app/build.gradle index 3c43b6d..3f96380 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -7,8 +7,8 @@ android { applicationId "com.warren.iwanttoheal" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 50 - versionName "1.0.32" + versionCode 52 + versionName "1.0.33" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" aaptOptions { // Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps. diff --git a/src/App.css b/src/App.css index cd2b637..e6bf9ec 100644 --- a/src/App.css +++ b/src/App.css @@ -1919,13 +1919,13 @@ h2 { } .part-setup-panel .part-picker { - grid-template-columns: repeat(3, minmax(0, 1fr)); + grid-template-columns: 1fr; } .part-start-row { display: grid; gap: 8px; - grid-template-columns: minmax(0, 1fr) minmax(88px, 0.45fr); + grid-template-columns: minmax(0, 1fr) minmax(82px, 0.38fr); } .hard-mode-button {