mirror of
https://github.com/zarzet/SpotiFLAC-Mobile.git
synced 2026-04-01 01:20:21 +02:00
- Add advanced filename template placeholders: {track_raw}, {disc_raw}, {date},
formatted numbers {track:N}/{disc:N}, and date formatting {date:%Y-%m-%d}
with strftime-to-Go layout conversion and robust date parser
- Pass date/release_date metadata to filename builder in all providers
(Amazon, Qobuz, Tidal, YouTube, extensions) and Flutter download queue
- Detect ARM32-only / low-RAM Android devices at startup and reduce image
cache size and disable overscroll effects for smoother experience
- Make artist screen selection bar responsive: compact stacked layout on
narrow screens or large text scale; add quality picker before track download
- Add advanced tags toggle in download settings filename format editor
- Fix ICU plural syntax in DE/ES/PT/RU translations (one {}=1{...} -> one {...})
- Add filenameShowAdvancedTags l10n strings (EN, ID) and regenerate dart files
- Fix featured-artist regex: remove '&' from split separators
- Add Go filename template tests (filename_test.go)
- Add GitHub Pages workflow and static project site
94 lines
1.7 KiB
YAML
94 lines
1.7 KiB
YAML
name: spotiflac_android
|
|
description: Download Spotify tracks in FLAC from Tidal, Qobuz & Amazon Music
|
|
publish_to: "none"
|
|
version: 3.6.7+81
|
|
|
|
environment:
|
|
sdk: ^3.10.0
|
|
|
|
dependencies:
|
|
flutter:
|
|
sdk: flutter
|
|
|
|
# Localization
|
|
flutter_localizations:
|
|
sdk: flutter
|
|
intl: any
|
|
|
|
# State Management
|
|
flutter_riverpod: ^3.1.0
|
|
riverpod_annotation: ^4.0.0
|
|
|
|
# Navigation
|
|
go_router: ^17.0.1
|
|
|
|
# Storage & Persistence
|
|
shared_preferences: ^2.5.3
|
|
flutter_secure_storage: 10.0.0
|
|
path_provider: ^2.1.5
|
|
path: ^1.9.0
|
|
sqflite: ^2.4.1
|
|
|
|
# HTTP & Network
|
|
http: ^1.6.0
|
|
dio: ^5.8.0
|
|
connectivity_plus: 7.0.0
|
|
|
|
# UI Components
|
|
cupertino_icons: ^1.0.8
|
|
cached_network_image: ^3.4.1
|
|
flutter_cache_manager: ^3.4.1
|
|
flutter_svg: ^2.1.0
|
|
|
|
# Material Expressive 3 / Dynamic Color
|
|
dynamic_color: ^1.7.0
|
|
material_color_utilities: ">=0.11.1 <0.14.0"
|
|
|
|
# Permissions
|
|
permission_handler: ^12.0.1
|
|
|
|
# File Picker
|
|
file_picker: ^10.3.8
|
|
|
|
# JSON Serialization
|
|
json_annotation: ^4.9.0
|
|
|
|
# Utils
|
|
url_launcher: ^6.3.1
|
|
device_info_plus: ^12.3.0
|
|
share_plus: ^12.0.1
|
|
receive_sharing_intent: ^1.8.1
|
|
logger: ^2.5.0
|
|
|
|
# FFmpeg for audio conversion
|
|
ffmpeg_kit_flutter_new_audio: ^2.0.0
|
|
open_filex: ^4.7.0
|
|
|
|
# Notifications
|
|
flutter_local_notifications: 20.0.0
|
|
|
|
dev_dependencies:
|
|
flutter_test:
|
|
sdk: flutter
|
|
flutter_lints: ^6.0.0
|
|
build_runner: ^2.10.4
|
|
riverpod_generator: ^4.0.0
|
|
json_serializable: ^6.11.2
|
|
flutter_launcher_icons: ^0.14.3
|
|
|
|
flutter_launcher_icons:
|
|
android: true
|
|
ios: true
|
|
image_path: "icon.png"
|
|
adaptive_icon_background: "#1a1a2e"
|
|
adaptive_icon_foreground: "icon.png"
|
|
ios_content_mode: scaleAspectFill
|
|
remove_alpha_ios: true
|
|
|
|
flutter:
|
|
uses-material-design: true
|
|
generate: true
|
|
|
|
assets:
|
|
- assets/images/
|