Skip to content

Commit

Permalink
v.1.6.2 (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
lotusprey authored Jan 1, 2025
1 parent fcd98e3 commit b91757d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions lib/feature/calendar/calendar_filter_provider.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ final calendarFilterProvider =

class CalendarFilterNotifier extends AutoDisposeNotifier<CalendarFilter> {
@override
CalendarFilter build() => ref
.watch(persistenceProvider.select((s) => s.calendarFilter))
.copyWith(date: DateTime.now());
CalendarFilter build() => ref.watch(
persistenceProvider.select((s) => s.calendarFilter),
);

@override
set state(CalendarFilter newState) {
Expand Down
2 changes: 1 addition & 1 deletion lib/feature/viewer/persistence_model.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import 'package:otraku/feature/home/home_model.dart';
import 'package:otraku/feature/media/media_models.dart';
import 'package:otraku/util/theming.dart';

const appVersion = '1.6.1';
const appVersion = '1.6.2';

class Persistence {
const Persistence({
Expand Down
1 change: 1 addition & 0 deletions lib/util/theming.dart
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ class Theming {
style: ElevatedButton.styleFrom(
backgroundColor: scheme.primary,
foregroundColor: scheme.onPrimary,
iconColor: scheme.onPrimary,
textStyle: const TextStyle(fontWeight: FontWeight.w500),
),
),
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: An unofficial AniList app.

publish_to: 'none'

version: 1.6.1+79
version: 1.6.2+80

environment:
sdk: '>=3.0.0 <4.0.0'
Expand Down

0 comments on commit b91757d

Please sign in to comment.