Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ The format is a modified version of [Keep a Changelog](https://keepachangelog.co
- `Fixed` - for any bug fixes.
- `Other` - for technical stuff.

## [v0.19.0.0] - 2025-10-12
## [Unreleased]
### Fixed
- Fix navigation pill background disappearing on older devices ([@Secozzi](https://github.com/Secozzi)) ([#114](https://github.com/quickdesh/Animiru/pull/114))

## [v0.19.0.0] - 2025-12-24
### Changed
- Remove circular edges, add background and sliding animations ([@Quickdev](https://github.com/quickdesh)) ([`8e45259`](https://github.com/quickdesh/Animiru/commit/8e45259))
- Use filter chips in recents tab ([@Quickdev](https://github.com/quickdesh)) ([`38c9c52`](https://github.com/quickdesh/Animiru/commit/38c9c52))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -364,15 +364,16 @@ private fun NavigationPillItemBackground(
.height(pillItemHeight)
.graphicsLayer {
translationX = pillOffsetX.value.toPx()
}
.background(
color = MaterialTheme.colorScheme.secondaryContainer,
shape = RoundedCornerShape(
topStart = cornerSizes.value.topStart,
topEnd = cornerSizes.value.topEnd,
bottomStart = cornerSizes.value.bottomStart,
bottomEnd = cornerSizes.value.bottomEnd,
)
clip = true
}
.background(MaterialTheme.colorScheme.secondaryContainer),
),
),
)
}

Expand Down