forked from KRTirtho/spotube
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: remove SponsorBlock in favor of YT Music and remove pocketbase …
…backend track support
- Loading branch information
Kingkor Roy Tirtho
committed
May 16, 2023
1 parent
b058517
commit fb780da
Showing
17 changed files
with
132 additions
and
343 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import "package:hive/hive.dart"; | ||
|
||
part "matched_track.g.dart"; | ||
|
||
@HiveType(typeId: 1) | ||
class MatchedTrack { | ||
@HiveField(0) | ||
String youtubeId; | ||
@HiveField(1) | ||
String spotifyId; | ||
|
||
static const boxName = "oss.krtirtho.spotube.matched_tracks"; | ||
|
||
static LazyBox<MatchedTrack> get box => Hive.lazyBox<MatchedTrack>(boxName); | ||
|
||
MatchedTrack({required this.youtubeId, required this.spotifyId}); | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.