New: Calendar filtering by tags

Closes #3658
Closes #4211

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
Qstick 2024-02-11 20:51:28 -06:00
parent c7faf7cc25
commit a4af75b60c
7 changed files with 160 additions and 15 deletions

View file

@ -1,5 +1,6 @@
import AlbumAppState from './AlbumAppState';
import ArtistAppState, { ArtistIndexAppState } from './ArtistAppState';
import CalendarAppState from './CalendarAppState';
import HistoryAppState from './HistoryAppState';
import QueueAppState from './QueueAppState';
import SettingsAppState from './SettingsAppState';
@ -52,6 +53,7 @@ interface AppState {
app: AppSectionState;
artist: ArtistAppState;
artistIndex: ArtistIndexAppState;
calendar: CalendarAppState;
history: HistoryAppState;
queue: QueueAppState;
settings: SettingsAppState;