mirror of
https://github.com/zarzet/SpotiFLAC-Mobile.git
synced 2026-08-10 13:10:38 +02:00
- Backend: Return full metadata (Track, Disc, Year) from Tidal/Qobuz/Amazon download results - Flutter: Use backend metadata for tagging converted M4A and history entries - Fix: Duplicate convertTrack method in deezer.go - Fix: Better error message for Deezer fallback failure - Changed: Default service fallback to Tidal -> Qobuz -> Amazon - Build: Re-enabled resource shrinking and minification for release build
21 lines
750 B
Dart
21 lines
750 B
Dart
/// App version and info constants
|
|
/// Update version here only - all other files will reference this
|
|
class AppInfo {
|
|
static const String version = '2.1.6';
|
|
static const String buildNumber = '44';
|
|
static const String fullVersion = '$version+$buildNumber';
|
|
|
|
|
|
static const String appName = 'SpotiFLAC';
|
|
static const String copyright = '© 2026 SpotiFLAC';
|
|
|
|
static const String mobileAuthor = 'zarzet';
|
|
static const String originalAuthor = 'afkarxyz';
|
|
|
|
static const String githubRepo = 'zarzet/SpotiFLAC-Mobile';
|
|
static const String githubUrl = 'https://github.com/$githubRepo';
|
|
static const String originalGithubUrl = 'https://github.com/afkarxyz/SpotiFLAC';
|
|
|
|
static const String kofiUrl = 'https://ko-fi.com/zarzet';
|
|
}
|