Skip to content

Commit ba86c36

Browse files
committed
Bump version to 0.1.6-alpha
1 parent 7280f90 commit ba86c36

2 files changed

Lines changed: 13 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.6-alpha] - 2026-07-19
11+
12+
### Fixed
13+
14+
- The backdrop pan no longer stops partway through a slide: it runs on its own `ObjectAnimator` instead of sharing the view's `ViewPropertyAnimator` with the crossfade (whose `setDuration` could retroactively shorten it), and its duration now derives from the real slide period rather than a stale `ROTATION_INTERVAL_MS` constant that had stopped governing rotation
15+
- Pan now runs one crossfade longer than a slide is on screen, so motion is still going as the image swaps out
16+
17+
### Changed
18+
19+
- Release branding is opt-in via `flix.showLogo` in `local.properties` (gitignored, defaults to false), so public releases ship unbranded without anyone having to remember to flip a build flag back
20+
1021
## [0.1.5-alpha] - 2026-07-19
1122

1223
### Fixed

app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ android {
2525
targetSdk = 34
2626

2727
// Version - Update these for each release (also update CHANGELOG.md)
28-
versionCode = 5
29-
versionName = "0.1.5-alpha"
28+
versionCode = 6
29+
versionName = "0.1.6-alpha"
3030

3131
// Enable build config fields
3232
buildConfigField("String", "VERSION_NAME", "\"${versionName}\"")

0 commit comments

Comments
 (0)