mirror of
https://github.com/spotiflacapp/SpotiFLAC-Mobile.git
synced 2026-06-01 03:15:17 +07:00
- Add actual quality display (bit depth/sample rate) in history and metadata - Add quality disclaimer in quality picker - Fix fallback service display showing wrong service - Fix Open in Spotify not opening app correctly - Remove romaji conversion feature - Amazon now reads quality from FLAC file
18 lines
687 B
Dart
18 lines
687 B
Dart
/// App version and info constants
|
|
/// Update version here only - all other files will reference this
|
|
class AppInfo {
|
|
static const String version = '2.0.2';
|
|
static const String buildNumber = '32';
|
|
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';
|
|
}
|