mirror of
https://github.com/zarzet/SpotiFLAC-Mobile.git
synced 2026-06-08 07:33:58 +02:00
663ee12bcc
- Add CloudUploadService with WebDAV and SFTP upload methods - Add UploadQueueProvider for managing upload queue - Integrate upload trigger after download completes - Update CloudSettingsPage with actual connection test and queue UI - Add webdav_client ^1.2.2 and dartssh2 ^2.13.0 dependencies - Remove Google Drive option (not implemented) - Bump version to 3.4.0+72
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.4.0';
|
|
static const String buildNumber = '72';
|
|
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';
|
|
}
|