mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-22 01:56:47 +08:00
feat: millisecond skip (#869)
* feat: millisecond skip * fix: formatDuration * fix: post segment
This commit is contained in:
committed by
GitHub
parent
bc2de4828b
commit
3655c31a48
@@ -300,12 +300,10 @@ class PlPlayerController {
|
||||
late final List<Pair<SegmentType, SkipType>> blockSettings =
|
||||
GStorage.blockSettings;
|
||||
late final List<Color> blockColor = GStorage.blockColor;
|
||||
late final List<String> segmentTypes =
|
||||
SegmentType.values.map((item) => item.name).toList();
|
||||
late final List<String> enableList = blockSettings
|
||||
late final Set<String> enableList = blockSettings
|
||||
.where((item) => item.second != SkipType.disable)
|
||||
.map((item) => item.first.name)
|
||||
.toList();
|
||||
.toSet();
|
||||
late final blockServer = GStorage.blockServer;
|
||||
|
||||
// settings
|
||||
|
||||
Reference in New Issue
Block a user