Compare commits

...

3 Commits

Author SHA1 Message Date
Gustavo Moreno
0818db0fe1
Merge 3ff0f6dd27 into 0ec9f3535b 2025-03-17 00:46:56 -05:00
Kingkor Roy Tirtho
0ec9f3535b chore: bump to 4.0.2 and generate changelog 2025-03-16 23:52:08 +06:00
Gustavo Moreno
3ff0f6dd27 bug #2354: Fix icon overflow in Local Folder Cache page
- Wrapped  inside  to prevent layout breaking

Fixes #2354
2025-02-27 13:31:44 +01:00
3 changed files with 11 additions and 5 deletions

View File

@ -1,6 +1,10 @@
# Changelog # Changelog
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. ## [4.0.2](https://github.com/krtirtho/spotube/compare/v4.0.1...v4.0.2) (2025-03-16)
### Bug Fixes
- invalid access token exception #2525
## [4.0.1](https://github.com/krtirtho/spotube/compare/v4.0.0...v4.0.1) (2025-03-15) ## [4.0.1](https://github.com/krtirtho/spotube/compare/v4.0.0...v4.0.1) (2025-03-15)

View File

@ -138,8 +138,10 @@ class LocalLibraryPage extends HookConsumerWidget {
icon: Column( icon: Column(
mainAxisSize: MainAxisSize.min, mainAxisSize: MainAxisSize.min,
children: [ children: [
const Icon(SpotubeIcons.delete), const Expanded(child: Icon(SpotubeIcons.delete)),
Text(context.l10n.clear_cache) Text(
context.l10n.clear_cache,
)
], ],
).xSmall().iconSmall(), ).xSmall().iconSmall(),
onPressed: () async { onPressed: () async {
@ -180,7 +182,7 @@ class LocalLibraryPage extends HookConsumerWidget {
icon: Column( icon: Column(
mainAxisSize: MainAxisSize.min, mainAxisSize: MainAxisSize.min,
children: [ children: [
const Icon(SpotubeIcons.export), const Expanded(child: Icon(SpotubeIcons.export)),
Text( Text(
context.l10n.export, context.l10n.export,
) )

View File

@ -3,7 +3,7 @@ description: Open source Spotify client that doesn't require Premium nor uses El
publish_to: "none" publish_to: "none"
version: 4.0.1+40 version: 4.0.2+41
homepage: https://spotube.krtirtho.dev homepage: https://spotube.krtirtho.dev
repository: https://github.com/KRTirtho/spotube repository: https://github.com/KRTirtho/spotube