mirror of
https://github.com/spotiflacapp/SpotiFLAC-Mobile.git
synced 2026-06-01 03:15:17 +07:00
- Add configurable YouTube Opus (96-256kbps) and MP3 (96-320kbps) bitrates - Improve title matching with loose normalization for symbol-heavy tracks - Add SpotubeDL engine v2 fallback for MP3 requests - Improve filename sanitization in track metadata screen - Bump version to 3.6.9+82
21 lines
831 B
Dart
21 lines
831 B
Dart
/// App version and info constants
|
|
/// Update version here only - all other files will reference this
|
|
class AppInfo {
|
|
static const String version = '3.6.9';
|
|
static const String buildNumber = '82';
|
|
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';
|
|
static const String githubSponsorsUrl = 'https://github.com/sponsors/zarzet/';
|
|
}
|