Merge pull request 'feat: voice fixes, background updates, rss_enabled gating, chat images' (#27) from dev into main
This commit was merged in pull request #27.
This commit is contained in:
+64
-106
@@ -186,15 +186,19 @@ class _Shell extends ConsumerStatefulWidget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class _ShellState extends ConsumerState<_Shell> with WidgetsBindingObserver {
|
class _ShellState extends ConsumerState<_Shell> with WidgetsBindingObserver {
|
||||||
static const _tabs = [
|
static const _baseTabs = [
|
||||||
Routes.briefing,
|
Routes.briefing,
|
||||||
Routes.knowledge,
|
Routes.knowledge,
|
||||||
Routes.conversations,
|
Routes.conversations,
|
||||||
Routes.projects,
|
Routes.projects,
|
||||||
Routes.news,
|
|
||||||
Routes.calendar,
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
List<String> _tabs(bool rssEnabled) => [
|
||||||
|
..._baseTabs,
|
||||||
|
if (rssEnabled) Routes.news,
|
||||||
|
Routes.calendar,
|
||||||
|
];
|
||||||
|
|
||||||
// Minimum gap between app-resume refreshes to avoid hammering the server.
|
// Minimum gap between app-resume refreshes to avoid hammering the server.
|
||||||
static const _resumeCooldown = Duration(seconds: 30);
|
static const _resumeCooldown = Duration(seconds: 30);
|
||||||
DateTime? _lastResumeRefresh;
|
DateTime? _lastResumeRefresh;
|
||||||
@@ -205,6 +209,8 @@ class _ShellState extends ConsumerState<_Shell> with WidgetsBindingObserver {
|
|||||||
super.initState();
|
super.initState();
|
||||||
WidgetsBinding.instance.addObserver(this);
|
WidgetsBinding.instance.addObserver(this);
|
||||||
WidgetsBinding.instance.addPostFrameCallback((_) {
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||||
|
// Clean up any leftover APKs from previous update cycles.
|
||||||
|
ref.read(updateProvider.notifier).cleanup();
|
||||||
// Silent update check — only if we haven't already checked this session.
|
// Silent update check — only if we haven't already checked this session.
|
||||||
final repoUrl = ref.read(forgejoRepoUrlProvider);
|
final repoUrl = ref.read(forgejoRepoUrlProvider);
|
||||||
if (repoUrl != null && repoUrl.isNotEmpty) {
|
if (repoUrl != null && repoUrl.isNotEmpty) {
|
||||||
@@ -249,19 +255,18 @@ class _ShellState extends ConsumerState<_Shell> with WidgetsBindingObserver {
|
|||||||
ref.invalidate(briefingProvider);
|
ref.invalidate(briefingProvider);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Refresh only the provider backing the given shell tab index.
|
/// Refresh only the provider backing the given shell tab route.
|
||||||
void _refreshTab(int index) {
|
void _refreshTab(String route) {
|
||||||
switch (index) {
|
if (route == Routes.briefing) {
|
||||||
case 0:
|
ref.invalidate(briefingProvider);
|
||||||
ref.invalidate(briefingProvider);
|
} else if (route == Routes.knowledge) {
|
||||||
case 1:
|
ref.read(knowledgeProvider.notifier).refresh();
|
||||||
ref.read(knowledgeProvider.notifier).refresh();
|
} else if (route == Routes.conversations) {
|
||||||
case 2:
|
ref.read(conversationsProvider.notifier).refresh();
|
||||||
ref.read(conversationsProvider.notifier).refresh();
|
} else if (route == Routes.news) {
|
||||||
case 4:
|
ref.read(newsProvider.notifier).refresh();
|
||||||
ref.read(newsProvider.notifier).refresh();
|
} else if (route == Routes.calendar) {
|
||||||
case 5:
|
ref.read(calendarProvider.notifier).refresh();
|
||||||
ref.read(calendarProvider.notifier).refresh();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -274,9 +279,9 @@ class _ShellState extends ConsumerState<_Shell> with WidgetsBindingObserver {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int _tabIndex(String location) {
|
int _tabIndex(String location, List<String> tabs) {
|
||||||
for (var i = 0; i < _tabs.length; i++) {
|
for (var i = 0; i < tabs.length; i++) {
|
||||||
if (location.startsWith(_tabs[i])) return i;
|
if (location.startsWith(tabs[i])) return i;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@@ -296,14 +301,15 @@ class _ShellState extends ConsumerState<_Shell> with WidgetsBindingObserver {
|
|||||||
context.push(Routes.projects);
|
context.push(Routes.projects);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
ListTile(
|
if (ref.read(rssEnabledProvider))
|
||||||
leading: const Icon(Icons.newspaper_outlined),
|
ListTile(
|
||||||
title: const Text('News'),
|
leading: const Icon(Icons.newspaper_outlined),
|
||||||
onTap: () {
|
title: const Text('News'),
|
||||||
Navigator.pop(context);
|
onTap: () {
|
||||||
context.push(Routes.news);
|
Navigator.pop(context);
|
||||||
},
|
context.push(Routes.news);
|
||||||
),
|
},
|
||||||
|
),
|
||||||
ListTile(
|
ListTile(
|
||||||
leading: const Icon(Icons.calendar_month_outlined),
|
leading: const Icon(Icons.calendar_month_outlined),
|
||||||
title: const Text('Calendar'),
|
title: const Text('Calendar'),
|
||||||
@@ -318,66 +324,15 @@ class _ShellState extends ConsumerState<_Shell> with WidgetsBindingObserver {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
void _showUpdateDialog(UpdateState update) {
|
void _showUpdateSnackbar(UpdateState update) {
|
||||||
showDialog<void>(
|
ScaffoldMessenger.of(context).showSnackBar(
|
||||||
context: context,
|
SnackBar(
|
||||||
builder: (dialogContext) => Consumer(
|
content: Text('v${update.latestVersion} ready to install'),
|
||||||
builder: (context, ref, _) {
|
duration: const Duration(seconds: 6),
|
||||||
final state = ref.watch(updateProvider);
|
action: SnackBarAction(
|
||||||
final isDownloading = state.status == UpdateStatus.downloading;
|
label: 'Install',
|
||||||
return AlertDialog(
|
onPressed: () => ref.read(updateProvider.notifier).install(),
|
||||||
title: const Text('Update available'),
|
),
|
||||||
content: Column(
|
|
||||||
mainAxisSize: MainAxisSize.min,
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
Text('Version ${state.latestVersion ?? '?'} is ready to install.'),
|
|
||||||
if (state.currentVersion != null)
|
|
||||||
Text(
|
|
||||||
'Installed: v${state.currentVersion}',
|
|
||||||
style: Theme.of(context).textTheme.bodySmall,
|
|
||||||
),
|
|
||||||
if (isDownloading) ...[
|
|
||||||
const SizedBox(height: 16),
|
|
||||||
LinearProgressIndicator(
|
|
||||||
value: state.downloadProgress > 0
|
|
||||||
? state.downloadProgress
|
|
||||||
: null,
|
|
||||||
),
|
|
||||||
const SizedBox(height: 4),
|
|
||||||
Text(
|
|
||||||
'Downloading… '
|
|
||||||
'${(state.downloadProgress * 100).toStringAsFixed(0)}%',
|
|
||||||
style: Theme.of(context).textTheme.bodySmall,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
if (state.status == UpdateStatus.error &&
|
|
||||||
state.errorMessage != null) ...[
|
|
||||||
const SizedBox(height: 12),
|
|
||||||
Text(
|
|
||||||
state.errorMessage!,
|
|
||||||
style: Theme.of(context).textTheme.bodySmall?.copyWith(
|
|
||||||
color: Theme.of(context).colorScheme.error,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
],
|
|
||||||
),
|
|
||||||
actions: [
|
|
||||||
TextButton(
|
|
||||||
onPressed: () => Navigator.pop(dialogContext),
|
|
||||||
child: const Text('Later'),
|
|
||||||
),
|
|
||||||
if (!isDownloading && state.downloadUrl != null)
|
|
||||||
FilledButton(
|
|
||||||
onPressed: () => ref
|
|
||||||
.read(updateProvider.notifier)
|
|
||||||
.downloadAndInstall(),
|
|
||||||
child: const Text('Download & Install'),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
);
|
|
||||||
},
|
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -386,18 +341,21 @@ class _ShellState extends ConsumerState<_Shell> with WidgetsBindingObserver {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
// Show update dialog once when a new version is detected.
|
// Show update dialog once when a new version is detected.
|
||||||
ref.listen(updateProvider, (prev, next) {
|
ref.listen(updateProvider, (prev, next) {
|
||||||
if (next.status == UpdateStatus.available &&
|
if (next.status == UpdateStatus.readyToInstall &&
|
||||||
prev?.status != UpdateStatus.available) {
|
prev?.status != UpdateStatus.readyToInstall) {
|
||||||
WidgetsBinding.instance
|
WidgetsBinding.instance
|
||||||
.addPostFrameCallback((_) => _showUpdateDialog(next));
|
.addPostFrameCallback((_) => _showUpdateSnackbar(next));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
final rssEnabled = ref.watch(rssEnabledProvider);
|
||||||
|
final tabs = _tabs(rssEnabled);
|
||||||
final location = GoRouterState.of(context).matchedLocation;
|
final location = GoRouterState.of(context).matchedLocation;
|
||||||
final index = _tabIndex(location);
|
final index = _tabIndex(location, tabs);
|
||||||
|
|
||||||
// Refresh the incoming tab's data when switching between shell tabs.
|
// Refresh the incoming tab's data when switching between shell tabs.
|
||||||
if (_prevTabIndex != null && _prevTabIndex != index) {
|
if (_prevTabIndex != null && _prevTabIndex != index) {
|
||||||
WidgetsBinding.instance.addPostFrameCallback((_) => _refreshTab(index));
|
final route = index < tabs.length ? tabs[index] : tabs[0];
|
||||||
|
WidgetsBinding.instance.addPostFrameCallback((_) => _refreshTab(route));
|
||||||
}
|
}
|
||||||
_prevTabIndex = index;
|
_prevTabIndex = index;
|
||||||
|
|
||||||
@@ -415,35 +373,36 @@ class _ShellState extends ConsumerState<_Shell> with WidgetsBindingObserver {
|
|||||||
children: [
|
children: [
|
||||||
NavigationRail(
|
NavigationRail(
|
||||||
selectedIndex: index,
|
selectedIndex: index,
|
||||||
onDestinationSelected: (i) => context.go(_tabs[i]),
|
onDestinationSelected: (i) => context.go(tabs[i]),
|
||||||
labelType: NavigationRailLabelType.all,
|
labelType: NavigationRailLabelType.all,
|
||||||
destinations: const [
|
destinations: [
|
||||||
NavigationRailDestination(
|
const NavigationRailDestination(
|
||||||
icon: Icon(Icons.wb_sunny_outlined),
|
icon: Icon(Icons.wb_sunny_outlined),
|
||||||
selectedIcon: Icon(Icons.wb_sunny),
|
selectedIcon: Icon(Icons.wb_sunny),
|
||||||
label: Text('Briefing'),
|
label: Text('Briefing'),
|
||||||
),
|
),
|
||||||
NavigationRailDestination(
|
const NavigationRailDestination(
|
||||||
icon: Icon(Icons.menu_book_outlined),
|
icon: Icon(Icons.menu_book_outlined),
|
||||||
selectedIcon: Icon(Icons.menu_book),
|
selectedIcon: Icon(Icons.menu_book),
|
||||||
label: Text('Knowledge'),
|
label: Text('Knowledge'),
|
||||||
),
|
),
|
||||||
NavigationRailDestination(
|
const NavigationRailDestination(
|
||||||
icon: Icon(Icons.chat_bubble_outline),
|
icon: Icon(Icons.chat_bubble_outline),
|
||||||
selectedIcon: Icon(Icons.chat_bubble),
|
selectedIcon: Icon(Icons.chat_bubble),
|
||||||
label: Text('Chat'),
|
label: Text('Chat'),
|
||||||
),
|
),
|
||||||
NavigationRailDestination(
|
const NavigationRailDestination(
|
||||||
icon: Icon(Icons.folder_outlined),
|
icon: Icon(Icons.folder_outlined),
|
||||||
selectedIcon: Icon(Icons.folder),
|
selectedIcon: Icon(Icons.folder),
|
||||||
label: Text('Projects'),
|
label: Text('Projects'),
|
||||||
),
|
),
|
||||||
NavigationRailDestination(
|
if (ref.watch(rssEnabledProvider))
|
||||||
icon: Icon(Icons.newspaper_outlined),
|
const NavigationRailDestination(
|
||||||
selectedIcon: Icon(Icons.newspaper),
|
icon: Icon(Icons.newspaper_outlined),
|
||||||
label: Text('News'),
|
selectedIcon: Icon(Icons.newspaper),
|
||||||
),
|
label: Text('News'),
|
||||||
NavigationRailDestination(
|
),
|
||||||
|
const NavigationRailDestination(
|
||||||
icon: Icon(Icons.calendar_month_outlined),
|
icon: Icon(Icons.calendar_month_outlined),
|
||||||
selectedIcon: Icon(Icons.calendar_month),
|
selectedIcon: Icon(Icons.calendar_month),
|
||||||
label: Text('Calendar'),
|
label: Text('Calendar'),
|
||||||
@@ -480,7 +439,7 @@ class _ShellState extends ConsumerState<_Shell> with WidgetsBindingObserver {
|
|||||||
if (i == 3) {
|
if (i == 3) {
|
||||||
_showMoreSheet(context);
|
_showMoreSheet(context);
|
||||||
} else {
|
} else {
|
||||||
context.go(_tabs[i]);
|
context.go(tabs[i]);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
destinations: const [
|
destinations: const [
|
||||||
@@ -529,7 +488,6 @@ class _QuickCaptureBarState extends ConsumerState<_QuickCaptureBar> {
|
|||||||
@override
|
@override
|
||||||
void dispose() {
|
void dispose() {
|
||||||
_controller.dispose();
|
_controller.dispose();
|
||||||
ref.read(voiceProvider.notifier).exitVoiceMode();
|
|
||||||
super.dispose();
|
super.dispose();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -10,4 +10,13 @@ class SettingsApi {
|
|||||||
data: {'user_timezone': ianaTimezone},
|
data: {'user_timezone': ianaTimezone},
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Future<Map<String, dynamic>> getAll() async {
|
||||||
|
final response = await _dio.get<Map<String, dynamic>>('/api/settings');
|
||||||
|
return response.data ?? {};
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> update(Map<String, String> updates) async {
|
||||||
|
await _dio.put<void>('/api/settings', data: updates);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ class VoiceApi {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// POST WebM/Opus audio bytes and return the transcript string.
|
/// POST audio bytes (WAV) and return the transcript string.
|
||||||
/// [context] is optional recent conversation text passed as initial_prompt
|
/// [context] is optional recent conversation text passed as initial_prompt
|
||||||
/// to Whisper, reducing mishearings of domain-specific words.
|
/// to Whisper, reducing mishearings of domain-specific words.
|
||||||
/// Returns empty string on empty or error response.
|
/// Returns empty string on empty or error response.
|
||||||
@@ -49,8 +49,8 @@ class VoiceApi {
|
|||||||
final fields = <String, dynamic>{
|
final fields = <String, dynamic>{
|
||||||
'audio': MultipartFile.fromBytes(
|
'audio': MultipartFile.fromBytes(
|
||||||
audioBytes,
|
audioBytes,
|
||||||
filename: 'audio.m4a',
|
filename: 'audio.wav',
|
||||||
contentType: DioMediaType('audio', 'mp4'),
|
contentType: DioMediaType('audio', 'wav'),
|
||||||
),
|
),
|
||||||
if (context != null && context.isNotEmpty) 'context': context,
|
if (context != null && context.isNotEmpty) 'context': context,
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -2,6 +2,8 @@ import 'package:flutter/material.dart';
|
|||||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||||
import 'package:shared_preferences/shared_preferences.dart';
|
import 'package:shared_preferences/shared_preferences.dart';
|
||||||
|
|
||||||
|
import 'api_client_provider.dart';
|
||||||
|
|
||||||
const _kServerUrl = 'server_url';
|
const _kServerUrl = 'server_url';
|
||||||
const _kThemeMode = 'theme_mode';
|
const _kThemeMode = 'theme_mode';
|
||||||
const _kForgejoRepoUrl = 'forgejo_repo_url';
|
const _kForgejoRepoUrl = 'forgejo_repo_url';
|
||||||
@@ -82,3 +84,32 @@ class ServerUrlNotifier extends Notifier<String?> {
|
|||||||
state = null;
|
state = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
final serverSettingsProvider =
|
||||||
|
AsyncNotifierProvider<ServerSettingsNotifier, Map<String, dynamic>>(
|
||||||
|
ServerSettingsNotifier.new);
|
||||||
|
|
||||||
|
class ServerSettingsNotifier extends AsyncNotifier<Map<String, dynamic>> {
|
||||||
|
@override
|
||||||
|
Future<Map<String, dynamic>> build() async {
|
||||||
|
try {
|
||||||
|
return await ref.read(settingsApiProvider).getAll();
|
||||||
|
} catch (_) {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bool get rssEnabled {
|
||||||
|
final data = state.value ?? {};
|
||||||
|
return data['rss_enabled']?.toString().toLowerCase() == 'true';
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> refresh() async {
|
||||||
|
state = AsyncData(await ref.read(settingsApiProvider).getAll());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
final rssEnabledProvider = Provider<bool>((ref) {
|
||||||
|
final settings = ref.watch(serverSettingsProvider).value ?? {};
|
||||||
|
return settings['rss_enabled']?.toString().toLowerCase() == 'true';
|
||||||
|
});
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
import 'dart:io';
|
||||||
|
|
||||||
import 'package:dio/dio.dart';
|
import 'package:dio/dio.dart';
|
||||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||||
import 'package:open_file/open_file.dart';
|
import 'package:open_file/open_file.dart';
|
||||||
@@ -5,7 +7,14 @@ import 'package:package_info_plus/package_info_plus.dart';
|
|||||||
import 'package:path_provider/path_provider.dart';
|
import 'package:path_provider/path_provider.dart';
|
||||||
import 'package:permission_handler/permission_handler.dart';
|
import 'package:permission_handler/permission_handler.dart';
|
||||||
|
|
||||||
enum UpdateStatus { idle, checking, available, downloading, upToDate, error }
|
enum UpdateStatus {
|
||||||
|
idle,
|
||||||
|
checking,
|
||||||
|
downloading,
|
||||||
|
readyToInstall,
|
||||||
|
upToDate,
|
||||||
|
error,
|
||||||
|
}
|
||||||
|
|
||||||
class UpdateState {
|
class UpdateState {
|
||||||
final UpdateStatus status;
|
final UpdateStatus status;
|
||||||
@@ -14,6 +23,7 @@ class UpdateState {
|
|||||||
final String? downloadUrl;
|
final String? downloadUrl;
|
||||||
final double downloadProgress;
|
final double downloadProgress;
|
||||||
final String? errorMessage;
|
final String? errorMessage;
|
||||||
|
final String? apkPath;
|
||||||
|
|
||||||
const UpdateState({
|
const UpdateState({
|
||||||
this.status = UpdateStatus.idle,
|
this.status = UpdateStatus.idle,
|
||||||
@@ -22,6 +32,7 @@ class UpdateState {
|
|||||||
this.downloadUrl,
|
this.downloadUrl,
|
||||||
this.downloadProgress = 0.0,
|
this.downloadProgress = 0.0,
|
||||||
this.errorMessage,
|
this.errorMessage,
|
||||||
|
this.apkPath,
|
||||||
});
|
});
|
||||||
|
|
||||||
UpdateState copyWith({
|
UpdateState copyWith({
|
||||||
@@ -31,6 +42,7 @@ class UpdateState {
|
|||||||
String? downloadUrl,
|
String? downloadUrl,
|
||||||
double? downloadProgress,
|
double? downloadProgress,
|
||||||
String? errorMessage,
|
String? errorMessage,
|
||||||
|
String? apkPath,
|
||||||
}) =>
|
}) =>
|
||||||
UpdateState(
|
UpdateState(
|
||||||
status: status ?? this.status,
|
status: status ?? this.status,
|
||||||
@@ -39,6 +51,7 @@ class UpdateState {
|
|||||||
downloadUrl: downloadUrl ?? this.downloadUrl,
|
downloadUrl: downloadUrl ?? this.downloadUrl,
|
||||||
downloadProgress: downloadProgress ?? this.downloadProgress,
|
downloadProgress: downloadProgress ?? this.downloadProgress,
|
||||||
errorMessage: errorMessage ?? this.errorMessage,
|
errorMessage: errorMessage ?? this.errorMessage,
|
||||||
|
apkPath: apkPath ?? this.apkPath,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -46,20 +59,15 @@ class UpdateNotifier extends Notifier<UpdateState> {
|
|||||||
@override
|
@override
|
||||||
UpdateState build() => const UpdateState();
|
UpdateState build() => const UpdateState();
|
||||||
|
|
||||||
/// [repoUrl] is the Forgejo repo page URL, e.g.
|
|
||||||
/// "https://git.example.com/user/fabled_app"
|
|
||||||
Future<void> check(String repoUrl) async {
|
Future<void> check(String repoUrl) async {
|
||||||
state = state.copyWith(status: UpdateStatus.checking);
|
state = state.copyWith(status: UpdateStatus.checking);
|
||||||
try {
|
try {
|
||||||
final packageInfo = await PackageInfo.fromPlatform();
|
final packageInfo = await PackageInfo.fromPlatform();
|
||||||
// Combine versionName + buildNumber to match the YY.MM.DD.N tag format.
|
|
||||||
final currentVersion =
|
final currentVersion =
|
||||||
'${packageInfo.version}.${packageInfo.buildNumber}';
|
'${packageInfo.version}.${packageInfo.buildNumber}';
|
||||||
|
|
||||||
// Parse repo URL → Forgejo API endpoint
|
|
||||||
final uri = Uri.parse(repoUrl);
|
final uri = Uri.parse(repoUrl);
|
||||||
final parts =
|
final parts = uri.pathSegments.where((s) => s.isNotEmpty).toList();
|
||||||
uri.pathSegments.where((s) => s.isNotEmpty).toList();
|
|
||||||
if (parts.length < 2) throw 'Invalid repository URL (need /owner/repo)';
|
if (parts.length < 2) throw 'Invalid repository URL (need /owner/repo)';
|
||||||
final apiUrl =
|
final apiUrl =
|
||||||
'${uri.scheme}://${uri.authority}/api/v1/repos/${parts[0]}/${parts[1]}/releases/latest';
|
'${uri.scheme}://${uri.authority}/api/v1/repos/${parts[0]}/${parts[1]}/releases/latest';
|
||||||
@@ -70,20 +78,20 @@ class UpdateNotifier extends Notifier<UpdateState> {
|
|||||||
tagName.startsWith('v') ? tagName.substring(1) : tagName;
|
tagName.startsWith('v') ? tagName.substring(1) : tagName;
|
||||||
|
|
||||||
if (_isNewer(latestVersion, currentVersion)) {
|
if (_isNewer(latestVersion, currentVersion)) {
|
||||||
final assets =
|
final assets = (response.data['assets'] as List<dynamic>? ?? [])
|
||||||
(response.data['assets'] as List<dynamic>? ?? [])
|
.cast<Map<String, dynamic>>();
|
||||||
.cast<Map<String, dynamic>>();
|
|
||||||
final apk = assets.firstWhere(
|
final apk = assets.firstWhere(
|
||||||
(a) => (a['name'] as String? ?? '').endsWith('.apk'),
|
(a) => (a['name'] as String? ?? '').endsWith('.apk'),
|
||||||
orElse: () => {},
|
orElse: () => {},
|
||||||
);
|
);
|
||||||
if (apk.isNotEmpty) {
|
if (apk.isNotEmpty) {
|
||||||
|
final downloadUrl = apk['browser_download_url'] as String?;
|
||||||
state = state.copyWith(
|
state = state.copyWith(
|
||||||
status: UpdateStatus.available,
|
|
||||||
currentVersion: currentVersion,
|
currentVersion: currentVersion,
|
||||||
latestVersion: latestVersion,
|
latestVersion: latestVersion,
|
||||||
downloadUrl: apk['browser_download_url'] as String?,
|
downloadUrl: downloadUrl,
|
||||||
);
|
);
|
||||||
|
await _downloadInBackground();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -101,11 +109,52 @@ class UpdateNotifier extends Notifier<UpdateState> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> downloadAndInstall() async {
|
Future<void> _downloadInBackground() async {
|
||||||
if (state.downloadUrl == null) return;
|
if (state.downloadUrl == null) return;
|
||||||
|
state = state.copyWith(status: UpdateStatus.downloading, downloadProgress: 0);
|
||||||
|
|
||||||
|
try {
|
||||||
|
final dir = await _apkDir();
|
||||||
|
await _cleanupApks(dir);
|
||||||
|
|
||||||
|
final path = '${dir.path}/fabled_${state.latestVersion}.apk';
|
||||||
|
|
||||||
|
await Dio().download(
|
||||||
|
state.downloadUrl!,
|
||||||
|
path,
|
||||||
|
onReceiveProgress: (received, total) {
|
||||||
|
if (total > 0) {
|
||||||
|
state = state.copyWith(downloadProgress: received / total);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
final file = File(path);
|
||||||
|
if (!await file.exists() || await file.length() == 0) {
|
||||||
|
state = state.copyWith(
|
||||||
|
status: UpdateStatus.error,
|
||||||
|
errorMessage: 'Download failed — file is empty',
|
||||||
|
);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
state = state.copyWith(
|
||||||
|
status: UpdateStatus.readyToInstall,
|
||||||
|
apkPath: path,
|
||||||
|
downloadProgress: 1.0,
|
||||||
|
);
|
||||||
|
} catch (e) {
|
||||||
|
state = state.copyWith(
|
||||||
|
status: UpdateStatus.error,
|
||||||
|
errorMessage: e.toString(),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> install() async {
|
||||||
|
final path = state.apkPath;
|
||||||
|
if (path == null) return;
|
||||||
|
|
||||||
// Android 8+ requires explicit per-app "Install unknown apps" approval
|
|
||||||
// beyond the manifest declaration. Check and redirect to Settings if needed.
|
|
||||||
final installPermission = await Permission.requestInstallPackages.status;
|
final installPermission = await Permission.requestInstallPackages.status;
|
||||||
if (!installPermission.isGranted) {
|
if (!installPermission.isGranted) {
|
||||||
final result = await Permission.requestInstallPackages.request();
|
final result = await Permission.requestInstallPackages.request();
|
||||||
@@ -119,30 +168,13 @@ class UpdateNotifier extends Notifier<UpdateState> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
state = state.copyWith(status: UpdateStatus.downloading, downloadProgress: 0);
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
final dir = await getExternalStorageDirectory() ??
|
|
||||||
await getTemporaryDirectory();
|
|
||||||
final path = '${dir.path}/fabled_update.apk';
|
|
||||||
|
|
||||||
await Dio().download(
|
|
||||||
state.downloadUrl!,
|
|
||||||
path,
|
|
||||||
onReceiveProgress: (received, total) {
|
|
||||||
if (total > 0) {
|
|
||||||
state = state.copyWith(downloadProgress: received / total);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
);
|
|
||||||
|
|
||||||
final result = await OpenFile.open(
|
final result = await OpenFile.open(
|
||||||
path,
|
path,
|
||||||
type: 'application/vnd.android.package-archive',
|
type: 'application/vnd.android.package-archive',
|
||||||
);
|
);
|
||||||
|
|
||||||
if (result.type == ResultType.done) {
|
if (result.type == ResultType.done) {
|
||||||
// Installer launched — reset to idle so the dialog closes naturally.
|
|
||||||
state = const UpdateState();
|
state = const UpdateState();
|
||||||
} else {
|
} else {
|
||||||
state = state.copyWith(
|
state = state.copyWith(
|
||||||
@@ -158,8 +190,30 @@ class UpdateNotifier extends Notifier<UpdateState> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Remove any previously cached APKs.
|
||||||
|
Future<void> cleanup() async {
|
||||||
|
final dir = await _apkDir();
|
||||||
|
await _cleanupApks(dir);
|
||||||
|
}
|
||||||
|
|
||||||
void dismiss() => state = const UpdateState();
|
void dismiss() => state = const UpdateState();
|
||||||
|
|
||||||
|
Future<Directory> _apkDir() async {
|
||||||
|
return await getExternalStorageDirectory() ??
|
||||||
|
await getTemporaryDirectory();
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> _cleanupApks(Directory dir) async {
|
||||||
|
try {
|
||||||
|
final entries = dir.listSync();
|
||||||
|
for (final entry in entries) {
|
||||||
|
if (entry is File && entry.path.endsWith('.apk')) {
|
||||||
|
await entry.delete();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (_) {}
|
||||||
|
}
|
||||||
|
|
||||||
bool _isNewer(String latest, String current) {
|
bool _isNewer(String latest, String current) {
|
||||||
try {
|
try {
|
||||||
final l = latest.split('.').map(int.parse).toList();
|
final l = latest.split('.').map(int.parse).toList();
|
||||||
|
|||||||
+153
-106
@@ -1,13 +1,13 @@
|
|||||||
import 'dart:async';
|
import 'dart:async';
|
||||||
import 'dart:collection';
|
import 'dart:collection';
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
|
import 'dart:math';
|
||||||
import 'dart:typed_data';
|
import 'dart:typed_data';
|
||||||
|
|
||||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||||
import 'package:just_audio/just_audio.dart';
|
import 'package:just_audio/just_audio.dart';
|
||||||
import 'package:path_provider/path_provider.dart';
|
import 'package:path_provider/path_provider.dart';
|
||||||
import 'package:permission_handler/permission_handler.dart';
|
import 'package:permission_handler/permission_handler.dart';
|
||||||
import 'package:record/record.dart';
|
|
||||||
import 'package:vad/vad.dart';
|
import 'package:vad/vad.dart';
|
||||||
|
|
||||||
import 'api_client_provider.dart';
|
import 'api_client_provider.dart';
|
||||||
@@ -52,6 +52,53 @@ String stripMarkdownForTts(String text) {
|
|||||||
.trim();
|
.trim();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Encode float PCM samples (-1..1) as a 16-bit mono WAV at 16 kHz.
|
||||||
|
Uint8List encodeWav(List<double> samples, {int sampleRate = 16000}) {
|
||||||
|
final numSamples = samples.length;
|
||||||
|
final dataSize = numSamples * 2;
|
||||||
|
final fileSize = 44 + dataSize;
|
||||||
|
final buf = ByteData(fileSize);
|
||||||
|
|
||||||
|
// RIFF header
|
||||||
|
buf.setUint8(0, 0x52); // R
|
||||||
|
buf.setUint8(1, 0x49); // I
|
||||||
|
buf.setUint8(2, 0x46); // F
|
||||||
|
buf.setUint8(3, 0x46); // F
|
||||||
|
buf.setUint32(4, fileSize - 8, Endian.little);
|
||||||
|
buf.setUint8(8, 0x57); // W
|
||||||
|
buf.setUint8(9, 0x41); // A
|
||||||
|
buf.setUint8(10, 0x56); // V
|
||||||
|
buf.setUint8(11, 0x45); // E
|
||||||
|
|
||||||
|
// fmt chunk
|
||||||
|
buf.setUint8(12, 0x66); // f
|
||||||
|
buf.setUint8(13, 0x6D); // m
|
||||||
|
buf.setUint8(14, 0x74); // t
|
||||||
|
buf.setUint8(15, 0x20); // (space)
|
||||||
|
buf.setUint32(16, 16, Endian.little); // chunk size
|
||||||
|
buf.setUint16(20, 1, Endian.little); // PCM format
|
||||||
|
buf.setUint16(22, 1, Endian.little); // mono
|
||||||
|
buf.setUint32(24, sampleRate, Endian.little);
|
||||||
|
buf.setUint32(28, sampleRate * 2, Endian.little); // byte rate
|
||||||
|
buf.setUint16(32, 2, Endian.little); // block align
|
||||||
|
buf.setUint16(34, 16, Endian.little); // bits per sample
|
||||||
|
|
||||||
|
// data chunk
|
||||||
|
buf.setUint8(36, 0x64); // d
|
||||||
|
buf.setUint8(37, 0x61); // a
|
||||||
|
buf.setUint8(38, 0x74); // t
|
||||||
|
buf.setUint8(39, 0x61); // a
|
||||||
|
buf.setUint32(40, dataSize, Endian.little);
|
||||||
|
|
||||||
|
for (var i = 0; i < numSamples; i++) {
|
||||||
|
final clamped = samples[i].clamp(-1.0, 1.0);
|
||||||
|
final int16 = (clamped * 32767).round().clamp(-32768, 32767);
|
||||||
|
buf.setInt16(44 + i * 2, int16, Endian.little);
|
||||||
|
}
|
||||||
|
|
||||||
|
return buf.buffer.asUint8List();
|
||||||
|
}
|
||||||
|
|
||||||
// ── State ─────────────────────────────────────────────────────────────────────
|
// ── State ─────────────────────────────────────────────────────────────────────
|
||||||
|
|
||||||
enum VoiceMode { idle, recording, transcribing, playing }
|
enum VoiceMode { idle, recording, transcribing, playing }
|
||||||
@@ -60,9 +107,7 @@ class VoiceState {
|
|||||||
final VoiceMode mode;
|
final VoiceMode mode;
|
||||||
final bool voiceModeActive;
|
final bool voiceModeActive;
|
||||||
final bool available;
|
final bool available;
|
||||||
/// Normalized mic amplitude 0.0–1.0 while recording. Drives the live
|
/// Normalized mic amplitude 0.0–1.0 while recording.
|
||||||
/// pulse on VoiceMicButton so the user has obvious feedback that audio
|
|
||||||
/// is actually being picked up.
|
|
||||||
final double amplitude;
|
final double amplitude;
|
||||||
|
|
||||||
const VoiceState({
|
const VoiceState({
|
||||||
@@ -89,23 +134,25 @@ class VoiceState {
|
|||||||
// ── Provider ──────────────────────────────────────────────────────────────────
|
// ── Provider ──────────────────────────────────────────────────────────────────
|
||||||
|
|
||||||
final voiceProvider =
|
final voiceProvider =
|
||||||
NotifierProvider<VoiceNotifier, VoiceState>(VoiceNotifier.new);
|
NotifierProvider.autoDispose<VoiceNotifier, VoiceState>(VoiceNotifier.new);
|
||||||
|
|
||||||
// ── Notifier ──────────────────────────────────────────────────────────────────
|
// ── Notifier ──────────────────────────────────────────────────────────────────
|
||||||
|
|
||||||
class VoiceNotifier extends Notifier<VoiceState> {
|
class VoiceNotifier extends Notifier<VoiceState> {
|
||||||
// Audio I/O
|
// Audio playback
|
||||||
AudioRecorder? _recorder;
|
|
||||||
AudioPlayer? _player;
|
AudioPlayer? _player;
|
||||||
StreamSubscription<Amplitude>? _amplitudeSubscription;
|
|
||||||
|
|
||||||
// VAD-based speech detection
|
// VAD — sole owner of the microphone
|
||||||
VadHandler? _vadHandler;
|
VadHandler? _vadHandler;
|
||||||
StreamSubscription<void>? _vadSpeechStartSub;
|
StreamSubscription<void>? _vadSpeechStartSub;
|
||||||
StreamSubscription<List<double>>? _vadSpeechEndSub;
|
StreamSubscription<List<double>>? _vadSpeechEndSub;
|
||||||
|
StreamSubscription<({double isSpeech, double notSpeech, List<double> frame})>?
|
||||||
|
_vadFrameSub;
|
||||||
|
StreamSubscription<String>? _vadErrorSub;
|
||||||
bool _speechDetected = false;
|
bool _speechDetected = false;
|
||||||
int _speechStartMs = 0;
|
int _speechStartMs = 0;
|
||||||
static const _vadGraceMs = 1500;
|
static const _vadGraceMs = 1500;
|
||||||
|
bool _disposed = false;
|
||||||
|
|
||||||
// Voice mode callbacks
|
// Voice mode callbacks
|
||||||
Future<void> Function(String transcript)? _onTranscript;
|
Future<void> Function(String transcript)? _onTranscript;
|
||||||
@@ -117,11 +164,10 @@ class VoiceNotifier extends Notifier<VoiceState> {
|
|||||||
int _lastSeenLength = 0;
|
int _lastSeenLength = 0;
|
||||||
bool _streamComplete = false;
|
bool _streamComplete = false;
|
||||||
|
|
||||||
// Last complete assistant response — passed to Whisper as initial_prompt
|
// Whisper context hint
|
||||||
// to reduce STT mishearings of domain-specific words.
|
|
||||||
String _lastAssistantContent = '';
|
String _lastAssistantContent = '';
|
||||||
|
|
||||||
// Empty transcript counter — show feedback after consecutive blanks
|
// Empty transcript counter
|
||||||
int _emptyTranscriptCount = 0;
|
int _emptyTranscriptCount = 0;
|
||||||
|
|
||||||
// TTS playback queue
|
// TTS playback queue
|
||||||
@@ -132,21 +178,21 @@ class VoiceNotifier extends Notifier<VoiceState> {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
VoiceState build() {
|
VoiceState build() {
|
||||||
|
_disposed = false;
|
||||||
_player = AudioPlayer();
|
_player = AudioPlayer();
|
||||||
ref.onDispose(() {
|
ref.onDispose(() {
|
||||||
_amplitudeSubscription?.cancel();
|
_disposed = true;
|
||||||
_recorder?.dispose();
|
_cancelSubscriptions();
|
||||||
|
_vadHandler?.dispose();
|
||||||
|
_vadHandler = null;
|
||||||
_player?.dispose();
|
_player?.dispose();
|
||||||
|
_player = null;
|
||||||
});
|
});
|
||||||
return const VoiceState();
|
return const VoiceState();
|
||||||
}
|
}
|
||||||
|
|
||||||
// ── Public API ──────────────────────────────────────────────────────────────
|
// ── Public API ──────────────────────────────────────────────────────────────
|
||||||
|
|
||||||
/// Enter voice mode. Checks server availability and mic permission first.
|
|
||||||
/// [onTranscript] is called with the transcript when a recording completes.
|
|
||||||
/// [enableTts] — if true, TTS plays when [feedContent] is called.
|
|
||||||
/// [onError] — called with a human-readable message on failure.
|
|
||||||
Future<void> enterVoiceMode({
|
Future<void> enterVoiceMode({
|
||||||
required Future<void> Function(String transcript) onTranscript,
|
required Future<void> Function(String transcript) onTranscript,
|
||||||
bool enableTts = false,
|
bool enableTts = false,
|
||||||
@@ -160,27 +206,23 @@ class VoiceNotifier extends Notifier<VoiceState> {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check server availability — STT is required, TTS is optional.
|
|
||||||
try {
|
try {
|
||||||
final status = await ref.read(voiceRepositoryProvider).checkStatus();
|
final status = await ref.read(voiceRepositoryProvider).checkStatus();
|
||||||
if (!status.enabled || !status.stt) {
|
if (!status.enabled || !status.stt) {
|
||||||
onError('Speech-to-text not available on this server');
|
onError('Speech-to-text not available on this server');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// Downgrade to STT-only when TTS is unavailable
|
|
||||||
if (!status.tts) enableTts = false;
|
if (!status.tts) enableTts = false;
|
||||||
} catch (_) {
|
} catch (_) {
|
||||||
onError('Could not reach voice service');
|
onError('Could not reach voice service');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check microphone permission
|
|
||||||
var permStatus = await Permission.microphone.request();
|
var permStatus = await Permission.microphone.request();
|
||||||
if (permStatus == PermissionStatus.permanentlyDenied) {
|
if (permStatus == PermissionStatus.permanentlyDenied) {
|
||||||
onError('Microphone blocked — opening settings');
|
onError('Microphone blocked — opening settings');
|
||||||
final opened = await openAppSettings();
|
final opened = await openAppSettings();
|
||||||
if (!opened) return;
|
if (!opened) return;
|
||||||
// Re-check after user returns from settings
|
|
||||||
permStatus = await Permission.microphone.status;
|
permStatus = await Permission.microphone.status;
|
||||||
}
|
}
|
||||||
if (!permStatus.isGranted) {
|
if (!permStatus.isGranted) {
|
||||||
@@ -198,27 +240,11 @@ class VoiceNotifier extends Notifier<VoiceState> {
|
|||||||
await _startListening();
|
await _startListening();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Exit voice mode, stop all recording and TTS.
|
|
||||||
void exitVoiceMode() {
|
void exitVoiceMode() {
|
||||||
_amplitudeSubscription?.cancel();
|
_cleanup();
|
||||||
_amplitudeSubscription = null;
|
if (!_disposed) state = const VoiceState();
|
||||||
_recorder?.stop();
|
|
||||||
_stopVad();
|
|
||||||
_player?.stop();
|
|
||||||
_ttsQueue.clear();
|
|
||||||
_ttsPlaying = false;
|
|
||||||
_sentenceBuffer = '';
|
|
||||||
_lastSeenLength = 0;
|
|
||||||
_streamComplete = false;
|
|
||||||
_speechDetected = false;
|
|
||||||
_onTranscript = null;
|
|
||||||
_onError = null;
|
|
||||||
state = const VoiceState();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Feed streaming assistant content for TTS synthesis.
|
|
||||||
/// Call from screens with the full [fullContent] string on each update.
|
|
||||||
/// Set [isComplete] to true when the stream has finished.
|
|
||||||
void feedContent(String fullContent, {required bool isComplete}) {
|
void feedContent(String fullContent, {required bool isComplete}) {
|
||||||
if (!state.voiceModeActive || !_enableTts) return;
|
if (!state.voiceModeActive || !_enableTts) return;
|
||||||
|
|
||||||
@@ -237,112 +263,131 @@ class VoiceNotifier extends Notifier<VoiceState> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ── Internal helpers ────────────────────────────────────────────────────────
|
||||||
|
|
||||||
|
void _cleanup() {
|
||||||
|
_cancelSubscriptions();
|
||||||
|
final handler = _vadHandler;
|
||||||
|
_vadHandler = null;
|
||||||
|
handler?.dispose();
|
||||||
|
_player?.stop();
|
||||||
|
_ttsQueue.clear();
|
||||||
|
_ttsPlaying = false;
|
||||||
|
_sentenceBuffer = '';
|
||||||
|
_lastSeenLength = 0;
|
||||||
|
_streamComplete = false;
|
||||||
|
_speechDetected = false;
|
||||||
|
_onTranscript = null;
|
||||||
|
_onError = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
void _cancelSubscriptions() {
|
||||||
|
_vadSpeechStartSub?.cancel();
|
||||||
|
_vadSpeechStartSub = null;
|
||||||
|
_vadSpeechEndSub?.cancel();
|
||||||
|
_vadSpeechEndSub = null;
|
||||||
|
_vadFrameSub?.cancel();
|
||||||
|
_vadFrameSub = null;
|
||||||
|
_vadErrorSub?.cancel();
|
||||||
|
_vadErrorSub = null;
|
||||||
|
}
|
||||||
|
|
||||||
// ── Internal recording ──────────────────────────────────────────────────────
|
// ── Internal recording ──────────────────────────────────────────────────────
|
||||||
|
|
||||||
Future<void> _startListening() async {
|
Future<void> _startListening() async {
|
||||||
if (!state.voiceModeActive) return;
|
if (_disposed || !state.voiceModeActive) return;
|
||||||
|
|
||||||
_speechDetected = false;
|
_speechDetected = false;
|
||||||
_speechStartMs = 0;
|
_speechStartMs = 0;
|
||||||
state = state.copyWith(mode: VoiceMode.recording);
|
|
||||||
|
|
||||||
final dir = _tempDir ?? await getTemporaryDirectory();
|
|
||||||
final path =
|
|
||||||
'${dir.path}/voice_rec_${DateTime.now().millisecondsSinceEpoch}.m4a';
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
_recorder?.dispose();
|
|
||||||
_recorder = AudioRecorder();
|
|
||||||
|
|
||||||
if (!await _recorder!.hasPermission()) {
|
|
||||||
_onError?.call('Microphone permission was revoked');
|
|
||||||
exitVoiceMode();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
await _recorder!.start(
|
|
||||||
const RecordConfig(encoder: AudioEncoder.aacLc, sampleRate: 16000),
|
|
||||||
path: path,
|
|
||||||
);
|
|
||||||
|
|
||||||
_amplitudeSubscription?.cancel();
|
|
||||||
_amplitudeSubscription = _recorder!
|
|
||||||
.onAmplitudeChanged(const Duration(milliseconds: 200))
|
|
||||||
.listen(_onAmplitude);
|
|
||||||
|
|
||||||
// VAD for speech detection — uses its own AudioRecorder internally
|
|
||||||
await _stopVad();
|
await _stopVad();
|
||||||
_vadHandler = VadHandler.create();
|
_vadHandler = VadHandler.create();
|
||||||
|
|
||||||
_vadSpeechStartSub = _vadHandler!.onSpeechStart.listen((_) {
|
_vadSpeechStartSub = _vadHandler!.onSpeechStart.listen((_) {
|
||||||
|
if (_disposed || !state.voiceModeActive) return;
|
||||||
if (!_speechDetected) {
|
if (!_speechDetected) {
|
||||||
_speechDetected = true;
|
_speechDetected = true;
|
||||||
_speechStartMs = DateTime.now().millisecondsSinceEpoch;
|
_speechStartMs = DateTime.now().millisecondsSinceEpoch;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
_vadSpeechEndSub = _vadHandler!.onSpeechEnd.listen((_) {
|
|
||||||
if (!state.voiceModeActive) return;
|
_vadSpeechEndSub = _vadHandler!.onSpeechEnd.listen((audioSamples) {
|
||||||
|
if (_disposed || !state.voiceModeActive) return;
|
||||||
final now = DateTime.now().millisecondsSinceEpoch;
|
final now = DateTime.now().millisecondsSinceEpoch;
|
||||||
final sinceStart = _speechStartMs > 0 ? now - _speechStartMs : 0;
|
final sinceStart = _speechStartMs > 0 ? now - _speechStartMs : 0;
|
||||||
if (_speechDetected && sinceStart >= _vadGraceMs) {
|
if (_speechDetected && sinceStart >= _vadGraceMs) {
|
||||||
_amplitudeSubscription?.cancel();
|
|
||||||
_amplitudeSubscription = null;
|
|
||||||
_stopVad();
|
_stopVad();
|
||||||
_handleSilence();
|
_handleSpeechEnd(audioSamples);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
_vadFrameSub = _vadHandler!.onFrameProcessed.listen((event) {
|
||||||
|
if (_disposed || !state.voiceModeActive) return;
|
||||||
|
final frame = event.frame;
|
||||||
|
if (frame.isEmpty) return;
|
||||||
|
double sumSq = 0;
|
||||||
|
for (final s in frame) {
|
||||||
|
sumSq += s * s;
|
||||||
|
}
|
||||||
|
final rms = sqrt(sumSq / frame.length);
|
||||||
|
final norm = (rms * 4.0).clamp(0.0, 1.0);
|
||||||
|
if ((norm - state.amplitude).abs() > 0.02) {
|
||||||
|
state = state.copyWith(amplitude: norm);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
_vadErrorSub = _vadHandler!.onError.listen((msg) {
|
||||||
|
if (_disposed) return;
|
||||||
|
_onError?.call('VAD error: $msg');
|
||||||
|
});
|
||||||
|
|
||||||
await _vadHandler!.startListening(model: 'v5');
|
await _vadHandler!.startListening(model: 'v5');
|
||||||
|
|
||||||
|
// Only show recording UI after the mic is actually open.
|
||||||
|
if (!_disposed && state.voiceModeActive) {
|
||||||
|
state = state.copyWith(mode: VoiceMode.recording, amplitude: 0.0);
|
||||||
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
_onError?.call('Microphone error: $e');
|
_onError?.call('Microphone error: $e');
|
||||||
exitVoiceMode();
|
_cleanup();
|
||||||
|
if (!_disposed) state = const VoiceState();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> _stopVad() async {
|
Future<void> _stopVad() async {
|
||||||
await _vadSpeechStartSub?.cancel();
|
_cancelSubscriptions();
|
||||||
_vadSpeechStartSub = null;
|
|
||||||
await _vadSpeechEndSub?.cancel();
|
|
||||||
_vadSpeechEndSub = null;
|
|
||||||
if (_vadHandler != null) {
|
if (_vadHandler != null) {
|
||||||
await _vadHandler!.dispose();
|
final handler = _vadHandler!;
|
||||||
_vadHandler = null;
|
_vadHandler = null;
|
||||||
|
await handler.dispose();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void _onAmplitude(Amplitude event) {
|
Future<void> _handleSpeechEnd(List<double> audioSamples) async {
|
||||||
if (!state.voiceModeActive) return;
|
if (_disposed || !state.voiceModeActive) return;
|
||||||
final db = event.current;
|
|
||||||
if (db.isNaN || db.isInfinite) return;
|
|
||||||
final norm = ((db + 60.0) / 60.0).clamp(0.0, 1.0);
|
|
||||||
if ((norm - state.amplitude).abs() > 0.02) {
|
|
||||||
state = state.copyWith(amplitude: norm);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Future<void> _handleSilence() async {
|
|
||||||
if (!state.voiceModeActive) return;
|
|
||||||
state = state.copyWith(mode: VoiceMode.transcribing);
|
state = state.copyWith(mode: VoiceMode.transcribing);
|
||||||
|
|
||||||
final path = await _recorder!.stop();
|
|
||||||
if (path == null || !state.voiceModeActive) return;
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
final bytes = await File(path).readAsBytes();
|
final wavBytes = encodeWav(audioSamples);
|
||||||
await File(path).delete().catchError((_) => File(path));
|
|
||||||
|
|
||||||
if (!state.voiceModeActive) return;
|
if (_disposed || !state.voiceModeActive) return;
|
||||||
|
|
||||||
final transcript = await ref.read(voiceRepositoryProvider).transcribe(
|
final transcript = await ref.read(voiceRepositoryProvider).transcribe(
|
||||||
bytes,
|
wavBytes,
|
||||||
context: _lastAssistantContent.isNotEmpty ? _lastAssistantContent : null,
|
context:
|
||||||
|
_lastAssistantContent.isNotEmpty ? _lastAssistantContent : null,
|
||||||
);
|
);
|
||||||
|
|
||||||
if (!state.voiceModeActive) return;
|
if (_disposed || !state.voiceModeActive) return;
|
||||||
|
|
||||||
if (transcript.isEmpty) {
|
if (transcript.isEmpty) {
|
||||||
_emptyTranscriptCount++;
|
_emptyTranscriptCount++;
|
||||||
if (_emptyTranscriptCount >= 3) {
|
if (_emptyTranscriptCount >= 3) {
|
||||||
_onError?.call('No speech detected — tap the mic to try again');
|
_onError?.call('No speech detected — tap the mic to try again');
|
||||||
exitVoiceMode();
|
_cleanup();
|
||||||
|
if (!_disposed) state = const VoiceState();
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
await _startListening();
|
await _startListening();
|
||||||
@@ -350,24 +395,25 @@ class VoiceNotifier extends Notifier<VoiceState> {
|
|||||||
}
|
}
|
||||||
_emptyTranscriptCount = 0;
|
_emptyTranscriptCount = 0;
|
||||||
|
|
||||||
// Reset TTS state for this new turn
|
|
||||||
_sentenceBuffer = '';
|
_sentenceBuffer = '';
|
||||||
_lastSeenLength = 0;
|
_lastSeenLength = 0;
|
||||||
_streamComplete = false;
|
_streamComplete = false;
|
||||||
|
|
||||||
if (_enableTts) {
|
if (_enableTts && !_disposed) {
|
||||||
state = state.copyWith(mode: VoiceMode.playing);
|
state = state.copyWith(mode: VoiceMode.playing);
|
||||||
}
|
}
|
||||||
|
|
||||||
await _onTranscript?.call(transcript);
|
await _onTranscript?.call(transcript);
|
||||||
|
|
||||||
// If TTS is not enabled, loop immediately
|
// In STT-only mode (no TTS), return to idle after transcript is sent.
|
||||||
if (!_enableTts && state.voiceModeActive) {
|
// The user taps the mic again to record another message.
|
||||||
await _startListening();
|
if (!_enableTts && !_disposed && state.voiceModeActive) {
|
||||||
|
state = state.copyWith(mode: VoiceMode.idle);
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
_onError?.call('Voice error: transcription failed');
|
_onError?.call('Voice error: transcription failed');
|
||||||
exitVoiceMode();
|
_cleanup();
|
||||||
|
if (!_disposed) state = const VoiceState();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -395,7 +441,7 @@ class VoiceNotifier extends Notifier<VoiceState> {
|
|||||||
try {
|
try {
|
||||||
final wavBytes =
|
final wavBytes =
|
||||||
await ref.read(voiceRepositoryProvider).synthesise(text);
|
await ref.read(voiceRepositoryProvider).synthesise(text);
|
||||||
if (!state.voiceModeActive) return;
|
if (_disposed || !state.voiceModeActive) return;
|
||||||
_ttsQueue.add(wavBytes);
|
_ttsQueue.add(wavBytes);
|
||||||
if (!_ttsPlaying) _drainTtsQueue();
|
if (!_ttsPlaying) _drainTtsQueue();
|
||||||
} catch (_) {
|
} catch (_) {
|
||||||
@@ -434,6 +480,7 @@ class VoiceNotifier extends Notifier<VoiceState> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void _checkRestartListening() {
|
void _checkRestartListening() {
|
||||||
|
if (_disposed) return;
|
||||||
if (_streamComplete &&
|
if (_streamComplete &&
|
||||||
_ttsQueue.isEmpty &&
|
_ttsQueue.isEmpty &&
|
||||||
!_ttsPlaying &&
|
!_ttsPlaying &&
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ import '../../widgets/chat_message_bubble.dart';
|
|||||||
import '../../widgets/weather_card.dart';
|
import '../../widgets/weather_card.dart';
|
||||||
import '../../widgets/news_card.dart';
|
import '../../widgets/news_card.dart';
|
||||||
import 'briefing_history_screen.dart';
|
import 'briefing_history_screen.dart';
|
||||||
|
import '../../providers/settings_provider.dart';
|
||||||
import '../../providers/voice_provider.dart';
|
import '../../providers/voice_provider.dart';
|
||||||
import '../../widgets/voice_mic_button.dart';
|
import '../../widgets/voice_mic_button.dart';
|
||||||
|
|
||||||
@@ -76,7 +77,6 @@ class _BriefingScreenState extends ConsumerState<BriefingScreen>
|
|||||||
WidgetsBinding.instance.removeObserver(this);
|
WidgetsBinding.instance.removeObserver(this);
|
||||||
_controller.dispose();
|
_controller.dispose();
|
||||||
_scrollController.dispose();
|
_scrollController.dispose();
|
||||||
ref.read(voiceProvider.notifier).exitVoiceMode();
|
|
||||||
super.dispose();
|
super.dispose();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -314,6 +314,7 @@ class _BriefingScreenState extends ConsumerState<BriefingScreen>
|
|||||||
reactions: _reactions,
|
reactions: _reactions,
|
||||||
onReaction: _handleReaction,
|
onReaction: _handleReaction,
|
||||||
onDiscuss: _handleDiscuss,
|
onDiscuss: _handleDiscuss,
|
||||||
|
rssEnabled: ref.watch(rssEnabledProvider),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
@@ -429,6 +430,7 @@ class _BriefingMessageItem extends StatelessWidget {
|
|||||||
final Map<int, String?> reactions;
|
final Map<int, String?> reactions;
|
||||||
final void Function(int itemId, String reaction) onReaction;
|
final void Function(int itemId, String reaction) onReaction;
|
||||||
final void Function(int convId, int itemId) onDiscuss;
|
final void Function(int convId, int itemId) onDiscuss;
|
||||||
|
final bool rssEnabled;
|
||||||
|
|
||||||
const _BriefingMessageItem({
|
const _BriefingMessageItem({
|
||||||
required this.message,
|
required this.message,
|
||||||
@@ -436,6 +438,7 @@ class _BriefingMessageItem extends StatelessWidget {
|
|||||||
required this.reactions,
|
required this.reactions,
|
||||||
required this.onReaction,
|
required this.onReaction,
|
||||||
required this.onDiscuss,
|
required this.onDiscuss,
|
||||||
|
this.rssEnabled = false,
|
||||||
});
|
});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
@@ -447,11 +450,12 @@ class _BriefingMessageItem extends StatelessWidget {
|
|||||||
final bool hasWeatherKey = isAssistant && meta != null && meta.containsKey('weather');
|
final bool hasWeatherKey = isAssistant && meta != null && meta.containsKey('weather');
|
||||||
final weatherData = hasWeatherKey ? meta['weather'] as Map<String, dynamic>? : null;
|
final weatherData = hasWeatherKey ? meta['weather'] as Map<String, dynamic>? : null;
|
||||||
|
|
||||||
// RSS news cards — cap at 3
|
// RSS news cards — cap at 3 (only when RSS is enabled)
|
||||||
final rssItemsRaw = isAssistant && meta != null
|
final rssItems = <RssItemMeta>[];
|
||||||
? (meta['rss_items'] as List<dynamic>?)?.cast<Map<String, dynamic>>() ?? []
|
if (rssEnabled && isAssistant && meta != null) {
|
||||||
: <Map<String, dynamic>>[];
|
final raw = (meta['rss_items'] as List<dynamic>?)?.cast<Map<String, dynamic>>() ?? [];
|
||||||
final rssItems = rssItemsRaw.map(RssItemMeta.fromJson).take(3).toList();
|
rssItems.addAll(raw.map(RssItemMeta.fromJson).take(3));
|
||||||
|
}
|
||||||
|
|
||||||
return Column(
|
return Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||||
|
|||||||
@@ -68,8 +68,6 @@ class _ChatScreenState extends ConsumerState<ChatScreen>
|
|||||||
WidgetsBinding.instance.removeObserver(this);
|
WidgetsBinding.instance.removeObserver(this);
|
||||||
_controller.dispose();
|
_controller.dispose();
|
||||||
_scrollController.dispose();
|
_scrollController.dispose();
|
||||||
// Exit voice mode if the user navigates away mid-session.
|
|
||||||
ref.read(voiceProvider.notifier).exitVoiceMode();
|
|
||||||
super.dispose();
|
super.dispose();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -92,7 +92,7 @@ class SettingsScreen extends ConsumerWidget {
|
|||||||
child: const Text('Check'),
|
child: const Text('Check'),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
if (update.status == UpdateStatus.available ||
|
if (update.status == UpdateStatus.readyToInstall ||
|
||||||
update.status == UpdateStatus.downloading)
|
update.status == UpdateStatus.downloading)
|
||||||
_UpdateTile(update: update),
|
_UpdateTile(update: update),
|
||||||
if (update.status == UpdateStatus.error)
|
if (update.status == UpdateStatus.error)
|
||||||
@@ -131,7 +131,7 @@ class SettingsScreen extends ConsumerWidget {
|
|||||||
if (update.status == UpdateStatus.upToDate) {
|
if (update.status == UpdateStatus.upToDate) {
|
||||||
return Text('v$current — up to date');
|
return Text('v$current — up to date');
|
||||||
}
|
}
|
||||||
if (update.status == UpdateStatus.available ||
|
if (update.status == UpdateStatus.readyToInstall ||
|
||||||
update.status == UpdateStatus.downloading) {
|
update.status == UpdateStatus.downloading) {
|
||||||
return Text('v$current installed');
|
return Text('v$current installed');
|
||||||
}
|
}
|
||||||
@@ -202,12 +202,12 @@ class _UpdateTile extends ConsumerWidget {
|
|||||||
'${(update.downloadProgress * 100).toStringAsFixed(0)}%'),
|
'${(update.downloadProgress * 100).toStringAsFixed(0)}%'),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
: const Text('Tap to download and install'),
|
: const Text('Ready to install'),
|
||||||
trailing: isDownloading
|
trailing: isDownloading
|
||||||
? null
|
? null
|
||||||
: FilledButton(
|
: FilledButton(
|
||||||
onPressed: () =>
|
onPressed: () =>
|
||||||
ref.read(updateProvider.notifier).downloadAndInstall(),
|
ref.read(updateProvider.notifier).install(),
|
||||||
child: const Text('Install'),
|
child: const Text('Install'),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,12 +1,17 @@
|
|||||||
import 'dart:math' show min;
|
import 'dart:math' show min;
|
||||||
|
import 'dart:typed_data';
|
||||||
|
|
||||||
|
import 'package:dio/dio.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_markdown_plus/flutter_markdown_plus.dart';
|
import 'package:flutter_markdown_plus/flutter_markdown_plus.dart';
|
||||||
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||||
|
|
||||||
import '../data/models/message.dart';
|
import '../data/models/message.dart';
|
||||||
|
import '../providers/api_client_provider.dart';
|
||||||
|
import '../providers/settings_provider.dart';
|
||||||
import 'tool_call_chip.dart';
|
import 'tool_call_chip.dart';
|
||||||
|
|
||||||
class ChatMessageBubble extends StatelessWidget {
|
class ChatMessageBubble extends ConsumerWidget {
|
||||||
final Message message;
|
final Message message;
|
||||||
final String streamingStatus;
|
final String streamingStatus;
|
||||||
const ChatMessageBubble({
|
const ChatMessageBubble({
|
||||||
@@ -16,9 +21,11 @@ class ChatMessageBubble extends StatelessWidget {
|
|||||||
});
|
});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context, WidgetRef ref) {
|
||||||
final isUser = message.role == MessageRole.user;
|
final isUser = message.role == MessageRole.user;
|
||||||
final scheme = Theme.of(context).colorScheme;
|
final scheme = Theme.of(context).colorScheme;
|
||||||
|
final serverUrl = ref.watch(serverUrlProvider) ?? '';
|
||||||
|
final dio = ref.watch(dioProvider);
|
||||||
final isGenerating = message.status == 'generating';
|
final isGenerating = message.status == 'generating';
|
||||||
final toolCalls = message.toolCalls ?? const [];
|
final toolCalls = message.toolCalls ?? const [];
|
||||||
|
|
||||||
@@ -116,6 +123,14 @@ class ChatMessageBubble extends StatelessWidget {
|
|||||||
if (message.content.isNotEmpty)
|
if (message.content.isNotEmpty)
|
||||||
MarkdownBody(
|
MarkdownBody(
|
||||||
data: message.content,
|
data: message.content,
|
||||||
|
imageBuilder: (uri, title, alt) {
|
||||||
|
return _AuthImage(
|
||||||
|
uri: uri,
|
||||||
|
alt: alt,
|
||||||
|
serverUrl: serverUrl,
|
||||||
|
dio: dio,
|
||||||
|
);
|
||||||
|
},
|
||||||
styleSheet: MarkdownStyleSheet(
|
styleSheet: MarkdownStyleSheet(
|
||||||
p: TextStyle(
|
p: TextStyle(
|
||||||
color: isUser
|
color: isUser
|
||||||
@@ -161,3 +176,69 @@ class ChatMessageBubble extends StatelessWidget {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class _AuthImage extends StatefulWidget {
|
||||||
|
final Uri uri;
|
||||||
|
final String? alt;
|
||||||
|
final String serverUrl;
|
||||||
|
final Dio dio;
|
||||||
|
|
||||||
|
const _AuthImage({
|
||||||
|
required this.uri,
|
||||||
|
this.alt,
|
||||||
|
required this.serverUrl,
|
||||||
|
required this.dio,
|
||||||
|
});
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<_AuthImage> createState() => _AuthImageState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _AuthImageState extends State<_AuthImage> {
|
||||||
|
late Future<Uint8List> _future;
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
_future = _fetchImage();
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<Uint8List> _fetchImage() async {
|
||||||
|
var url = widget.uri.toString();
|
||||||
|
if (url.startsWith('/')) {
|
||||||
|
url = '${widget.serverUrl}$url';
|
||||||
|
}
|
||||||
|
final response = await widget.dio.get<List<int>>(
|
||||||
|
url,
|
||||||
|
options: Options(responseType: ResponseType.bytes),
|
||||||
|
);
|
||||||
|
return Uint8List.fromList(response.data!);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return FutureBuilder<Uint8List>(
|
||||||
|
future: _future,
|
||||||
|
builder: (context, snapshot) {
|
||||||
|
if (snapshot.connectionState == ConnectionState.waiting) {
|
||||||
|
return const SizedBox(
|
||||||
|
height: 100,
|
||||||
|
child: Center(child: CircularProgressIndicator(strokeWidth: 2)),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if (snapshot.hasError || !snapshot.hasData) {
|
||||||
|
return Text(widget.alt ?? 'Image failed to load');
|
||||||
|
}
|
||||||
|
return ClipRRect(
|
||||||
|
borderRadius: BorderRadius.circular(8),
|
||||||
|
child: Image.memory(
|
||||||
|
snapshot.data!,
|
||||||
|
fit: BoxFit.contain,
|
||||||
|
errorBuilder: (_, _, _) =>
|
||||||
|
Text(widget.alt ?? 'Image failed to load'),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ list(APPEND FLUTTER_PLUGIN_LIST
|
|||||||
)
|
)
|
||||||
|
|
||||||
list(APPEND FLUTTER_FFI_PLUGIN_LIST
|
list(APPEND FLUTTER_FFI_PLUGIN_LIST
|
||||||
|
vad
|
||||||
)
|
)
|
||||||
|
|
||||||
set(PLUGIN_BUNDLED_LIBRARIES)
|
set(PLUGIN_BUNDLED_LIBRARIES)
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ import flutter_timezone
|
|||||||
import just_audio
|
import just_audio
|
||||||
import open_file_mac
|
import open_file_mac
|
||||||
import package_info_plus
|
import package_info_plus
|
||||||
import record_darwin
|
import record_macos
|
||||||
import shared_preferences_foundation
|
import shared_preferences_foundation
|
||||||
import url_launcher_macos
|
import url_launcher_macos
|
||||||
|
|
||||||
@@ -22,7 +22,7 @@ func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
|
|||||||
JustAudioPlugin.register(with: registry.registrar(forPlugin: "JustAudioPlugin"))
|
JustAudioPlugin.register(with: registry.registrar(forPlugin: "JustAudioPlugin"))
|
||||||
OpenFilePlugin.register(with: registry.registrar(forPlugin: "OpenFilePlugin"))
|
OpenFilePlugin.register(with: registry.registrar(forPlugin: "OpenFilePlugin"))
|
||||||
FPPPackageInfoPlusPlugin.register(with: registry.registrar(forPlugin: "FPPPackageInfoPlusPlugin"))
|
FPPPackageInfoPlusPlugin.register(with: registry.registrar(forPlugin: "FPPPackageInfoPlusPlugin"))
|
||||||
RecordPlugin.register(with: registry.registrar(forPlugin: "RecordPlugin"))
|
RecordMacOsPlugin.register(with: registry.registrar(forPlugin: "RecordMacOsPlugin"))
|
||||||
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))
|
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))
|
||||||
UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))
|
UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ list(APPEND FLUTTER_PLUGIN_LIST
|
|||||||
)
|
)
|
||||||
|
|
||||||
list(APPEND FLUTTER_FFI_PLUGIN_LIST
|
list(APPEND FLUTTER_FFI_PLUGIN_LIST
|
||||||
|
vad
|
||||||
)
|
)
|
||||||
|
|
||||||
set(PLUGIN_BUNDLED_LIBRARIES)
|
set(PLUGIN_BUNDLED_LIBRARIES)
|
||||||
|
|||||||
Reference in New Issue
Block a user