mirror of
https://github.com/zarzet/SpotiFLAC-Mobile.git
synced 2026-06-30 01:55:37 +02:00
7d300a39c9
- Rename downloadProviderMatchesBuiltIn -> downloadProviderReplacesLegacyProvider - Rename Tidal DASH ffmpeg helpers and lossy format pickers to generic names - Add utils.decryptCTRSegments crypto API + raw/bytes file read path in extension runtime - Update l10n strings/descriptions to drop hardcoded service names - Bump version to 4.5.7+134
26 lines
949 B
Dart
26 lines
949 B
Dart
import 'package:flutter/foundation.dart';
|
|
|
|
class AppInfo {
|
|
static const String version = '4.5.7';
|
|
static const String buildNumber = '134';
|
|
static const String fullVersion = '$version+$buildNumber';
|
|
|
|
static String get displayVersion => kDebugMode ? 'Internal' : version;
|
|
|
|
static const String appName = 'SpotiFLAC Mobile';
|
|
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 remoteConfigApiUrl =
|
|
'https://api.zarz.moe/v1/spotiflac-mobile/config';
|
|
|
|
static const String kofiUrl = 'https://ko-fi.com/zarzet';
|
|
static const String githubSponsorsUrl = 'https://github.com/sponsors/zarzet/';
|
|
}
|