Compare commits
3 Commits
96e3bff877
...
v2.19.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
93b9aa8f34 | ||
| ca826737ed | |||
| 5365cc67eb |
@@ -7,13 +7,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
### Changed
|
|
||||||
- Month-view event titles no longer end in an ellipsis. The "…" took the width
|
|
||||||
of a couple of characters and told you nothing you couldn't already see, so
|
|
||||||
the title now simply runs to the edge of its chip — a few more letters per
|
|
||||||
cell, which is often the difference between two events you can tell apart and
|
|
||||||
two you can't ([#164]).
|
|
||||||
|
|
||||||
## [2.19.0] — 2026-08-10
|
## [2.19.0] — 2026-08-10
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
@@ -1396,4 +1389,3 @@ automatically, with zero telemetry and no internet permission.
|
|||||||
[#80]: https://codeberg.org/jlmakiola/calendula/issues/80
|
[#80]: https://codeberg.org/jlmakiola/calendula/issues/80
|
||||||
[#123]: https://codeberg.org/jlmakiola/calendula/issues/123
|
[#123]: https://codeberg.org/jlmakiola/calendula/issues/123
|
||||||
[#163]: https://codeberg.org/jlmakiola/calendula/issues/163
|
[#163]: https://codeberg.org/jlmakiola/calendula/issues/163
|
||||||
[#164]: https://codeberg.org/jlmakiola/calendula/issues/164
|
|
||||||
|
|||||||
@@ -2356,12 +2356,7 @@ private fun MonthBar(
|
|||||||
text = title,
|
text = title,
|
||||||
style = MaterialTheme.typography.labelSmall,
|
style = MaterialTheme.typography.labelSmall,
|
||||||
maxLines = 1,
|
maxLines = 1,
|
||||||
// No "…" (#164): the chip is narrow enough that the ellipsis costs a
|
overflow = TextOverflow.Ellipsis,
|
||||||
// couple of readable characters. softWrap is off with it — left on,
|
|
||||||
// a clipped line breaks at the last whole word instead of running to
|
|
||||||
// the chip's edge, which reads as *less* title, not more.
|
|
||||||
overflow = TextOverflow.Clip,
|
|
||||||
softWrap = false,
|
|
||||||
color = eventInk(fill),
|
color = eventInk(fill),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
agp = "9.2.1"
|
agp = "9.2.1"
|
||||||
kotlin = "2.3.21"
|
kotlin = "2.3.21"
|
||||||
ksp = "2.3.10"
|
ksp = "2.3.10"
|
||||||
hilt = "2.59.2"
|
hilt = "2.60.1"
|
||||||
coreKtx = "1.19.0"
|
coreKtx = "1.19.0"
|
||||||
appcompat = "1.7.1"
|
appcompat = "1.7.1"
|
||||||
lifecycleRuntime = "2.10.0"
|
lifecycleRuntime = "2.10.0"
|
||||||
@@ -11,7 +11,7 @@ composeBom = "2026.06.01"
|
|||||||
# Material 3 Expressive APIs currently live only in the 1.5 alpha line.
|
# Material 3 Expressive APIs currently live only in the 1.5 alpha line.
|
||||||
# Pin explicitly to override the BOM (which ships stable 1.4.0).
|
# Pin explicitly to override the BOM (which ships stable 1.4.0).
|
||||||
# Re-evaluate when 1.5.0 stable lands.
|
# Re-evaluate when 1.5.0 stable lands.
|
||||||
material3 = "1.5.0-alpha24"
|
material3 = "1.5.0-alpha25"
|
||||||
datastore = "1.2.1"
|
datastore = "1.2.1"
|
||||||
junit = "6.1.2"
|
junit = "6.1.2"
|
||||||
junitPlatform = "6.1.2"
|
junitPlatform = "6.1.2"
|
||||||
|
|||||||
Reference in New Issue
Block a user