mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2025-12-20 18:09:30 +00:00
* feat: add ability to get logs file from ui * test: add unit test for log line parsing in logs_provider * refactor: update all logs to obfuscate sensitive information * feat: generate dynamic zip file name for logs export * feat: enhance logging in audiobook player and provider for better debugging * refactor: extract user display logic into UserBar widget for offline access of settings and logs * feat: add About section with app metadata and source code link in YouPage
65 lines
2.2 KiB
Dart
65 lines
2.2 KiB
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'currently_playing_provider.dart';
|
|
|
|
// **************************************************************************
|
|
// RiverpodGenerator
|
|
// **************************************************************************
|
|
|
|
String _$currentlyPlayingBookHash() =>
|
|
r'7440b0d54cb364f66e704783652e8f1490ae90e0';
|
|
|
|
/// See also [currentlyPlayingBook].
|
|
@ProviderFor(currentlyPlayingBook)
|
|
final currentlyPlayingBookProvider =
|
|
AutoDisposeProvider<BookExpanded?>.internal(
|
|
currentlyPlayingBook,
|
|
name: r'currentlyPlayingBookProvider',
|
|
debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product')
|
|
? null
|
|
: _$currentlyPlayingBookHash,
|
|
dependencies: null,
|
|
allTransitiveDependencies: null,
|
|
);
|
|
|
|
typedef CurrentlyPlayingBookRef = AutoDisposeProviderRef<BookExpanded?>;
|
|
String _$currentPlayingChapterHash() =>
|
|
r'a084da724e3d8bb1b1475e867ab3200d7d61d827';
|
|
|
|
/// provided the current chapter of the book being played
|
|
///
|
|
/// Copied from [currentPlayingChapter].
|
|
@ProviderFor(currentPlayingChapter)
|
|
final currentPlayingChapterProvider =
|
|
AutoDisposeProvider<BookChapter?>.internal(
|
|
currentPlayingChapter,
|
|
name: r'currentPlayingChapterProvider',
|
|
debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product')
|
|
? null
|
|
: _$currentPlayingChapterHash,
|
|
dependencies: null,
|
|
allTransitiveDependencies: null,
|
|
);
|
|
|
|
typedef CurrentPlayingChapterRef = AutoDisposeProviderRef<BookChapter?>;
|
|
String _$currentBookMetadataHash() =>
|
|
r'9088debba151894b61f2dcba1bba12a89244b9b1';
|
|
|
|
/// provides the book metadata of the currently playing book
|
|
///
|
|
/// Copied from [currentBookMetadata].
|
|
@ProviderFor(currentBookMetadata)
|
|
final currentBookMetadataProvider =
|
|
AutoDisposeProvider<BookMetadataExpanded?>.internal(
|
|
currentBookMetadata,
|
|
name: r'currentBookMetadataProvider',
|
|
debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product')
|
|
? null
|
|
: _$currentBookMetadataHash,
|
|
dependencies: null,
|
|
allTransitiveDependencies: null,
|
|
);
|
|
|
|
typedef CurrentBookMetadataRef = AutoDisposeProviderRef<BookMetadataExpanded?>;
|
|
// ignore_for_file: type=lint
|
|
// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member
|