mirror of
https://github.com/zarzet/SpotiFLAC-Mobile.git
synced 2026-06-13 01:47:52 +02:00
1a90887465
Fixes: - Fix Separate Singles not working (#54) - albumType not extracted from Deezer API - Fix extension artist/album metadata missing provider IDs and cover URLs - Fix YTMusic extension not extracting album name and duration from search - Fix extension collection screens setState after dispose - Fix search source chips referencing removed badge props Changes: - Deezer convertTrack now includes album_type from record_type - Track creation preserves albumType and source throughout download flow - Go exports include provider_id in album/artist responses - Version bump to 3.1.0+59
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 = '3.1.0';
|
|
static const String buildNumber = '59';
|
|
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';
|
|
}
|