diff --git a/buildSrc/src/main/kotlin/ProjectConfig.kt b/buildSrc/src/main/kotlin/ProjectConfig.kt index 83175d02a..021a8e0ff 100644 --- a/buildSrc/src/main/kotlin/ProjectConfig.kt +++ b/buildSrc/src/main/kotlin/ProjectConfig.kt @@ -55,6 +55,6 @@ const val NEWPIPE_APPLICATION_ID_NEW = "net.newpipe.app" // vc=19 / 0.1.0-AE — rust pipeline cutover. Extraction via // strawcore-core (Sulkta-Coop/strawcore) via the UniFFI wrapper; no // NewPipeExtractor in the runtime path. -const val STRAW_VERSION_CODE = 29 -const val STRAW_VERSION_NAME = "0.1.0-AO" +const val STRAW_VERSION_CODE = 30 +const val STRAW_VERSION_NAME = "0.1.0-AP" const val STRAW_APPLICATION_ID = "com.sulkta.straw" diff --git a/strawApp/src/main/kotlin/com/sulkta/straw/feature/player/MinibarOverlay.kt b/strawApp/src/main/kotlin/com/sulkta/straw/feature/player/MinibarOverlay.kt index dea622a58..b9dbdcda6 100644 --- a/strawApp/src/main/kotlin/com/sulkta/straw/feature/player/MinibarOverlay.kt +++ b/strawApp/src/main/kotlin/com/sulkta/straw/feature/player/MinibarOverlay.kt @@ -23,6 +23,7 @@ import androidx.compose.foundation.layout.Row import androidx.compose.foundation.layout.Spacer import androidx.compose.foundation.layout.fillMaxWidth import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.navigationBarsPadding import androidx.compose.foundation.layout.padding import androidx.compose.foundation.layout.size import androidx.compose.foundation.layout.width @@ -79,7 +80,11 @@ fun MinibarOverlay( onDispose { controller.removeListener(listener) } } - Column(modifier = modifier.fillMaxWidth()) { + // navigationBarsPadding shifts the whole minibar up by the system + // nav-bar height so the bar sits ABOVE the gesture pill / 3-button + // nav, not behind them. enableEdgeToEdge in StrawActivity means + // anything aligned BottomCenter lands under those buttons otherwise. + Column(modifier = modifier.fillMaxWidth().navigationBarsPadding()) { HorizontalDivider() Surface( color = MaterialTheme.colorScheme.surfaceVariant, diff --git a/strawApp/src/main/res/drawable/ic_launcher_foreground.xml b/strawApp/src/main/res/drawable/ic_launcher_foreground.xml index 9bb57a385..7dac7e8a3 100644 --- a/strawApp/src/main/res/drawable/ic_launcher_foreground.xml +++ b/strawApp/src/main/res/drawable/ic_launcher_foreground.xml @@ -1,25 +1,17 @@ - - - + android:pathData="M 38,30 L 38,78 L 82,54 Z" /> diff --git a/strawApp/src/main/res/mipmap-hdpi/ic_launcher.png b/strawApp/src/main/res/mipmap-hdpi/ic_launcher.png index c8f3906f9..c14f88f15 100644 Binary files a/strawApp/src/main/res/mipmap-hdpi/ic_launcher.png and b/strawApp/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/strawApp/src/main/res/mipmap-hdpi/ic_launcher_round.png b/strawApp/src/main/res/mipmap-hdpi/ic_launcher_round.png index c8f3906f9..c14f88f15 100644 Binary files a/strawApp/src/main/res/mipmap-hdpi/ic_launcher_round.png and b/strawApp/src/main/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/strawApp/src/main/res/mipmap-mdpi/ic_launcher.png b/strawApp/src/main/res/mipmap-mdpi/ic_launcher.png index fcfab8700..7885352b0 100644 Binary files a/strawApp/src/main/res/mipmap-mdpi/ic_launcher.png and b/strawApp/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/strawApp/src/main/res/mipmap-mdpi/ic_launcher_round.png b/strawApp/src/main/res/mipmap-mdpi/ic_launcher_round.png index fcfab8700..7885352b0 100644 Binary files a/strawApp/src/main/res/mipmap-mdpi/ic_launcher_round.png and b/strawApp/src/main/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/strawApp/src/main/res/mipmap-xhdpi/ic_launcher.png b/strawApp/src/main/res/mipmap-xhdpi/ic_launcher.png index 717e67c8c..d5571af16 100644 Binary files a/strawApp/src/main/res/mipmap-xhdpi/ic_launcher.png and b/strawApp/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/strawApp/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/strawApp/src/main/res/mipmap-xhdpi/ic_launcher_round.png index 717e67c8c..d5571af16 100644 Binary files a/strawApp/src/main/res/mipmap-xhdpi/ic_launcher_round.png and b/strawApp/src/main/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/strawApp/src/main/res/mipmap-xxhdpi/ic_launcher.png b/strawApp/src/main/res/mipmap-xxhdpi/ic_launcher.png index 455be2a69..f6d9d87c5 100644 Binary files a/strawApp/src/main/res/mipmap-xxhdpi/ic_launcher.png and b/strawApp/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/strawApp/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/strawApp/src/main/res/mipmap-xxhdpi/ic_launcher_round.png index 455be2a69..f6d9d87c5 100644 Binary files a/strawApp/src/main/res/mipmap-xxhdpi/ic_launcher_round.png and b/strawApp/src/main/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/strawApp/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/strawApp/src/main/res/mipmap-xxxhdpi/ic_launcher.png index edd54e2eb..3004b5dfb 100644 Binary files a/strawApp/src/main/res/mipmap-xxxhdpi/ic_launcher.png and b/strawApp/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/strawApp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/strawApp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png index edd54e2eb..3004b5dfb 100644 Binary files a/strawApp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png and b/strawApp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png differ