mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-18 01:35:17 +00:00

Add enhanced media controls and social sharing features. * **Enhanced Media Controls:** - Add volume control slider to `PlayerControls` widget in `lib/modules/player/player_controls.dart`. - Implement keyboard shortcuts for media controls (play/pause, next/previous track, volume up/down) in `PlayerControls` widget. - Add "lyrics" button to `PlayerView` widget in `lib/modules/player/player.dart`. * **Social Sharing Features:** - Add feature to share the currently playing track on social media platforms in `lib/components/track_tile/track_options.dart`. - Add share button to `TrackPresentationTopSection` widget in `lib/components/track_presentation/presentation_top.dart`. * **Settings:** - Add dark mode toggle in the settings page in `lib/pages/settings/settings.dart`. * **CI Configuration:** - Add `.ci.yaml` file for continuous integration configuration.
23 lines
596 B
YAML
23 lines
596 B
YAML
# See Dependabot documentation for all configuration options:
|
|
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
|
|
|
version: 2
|
|
updates:
|
|
- package-ecosystem: "github-actions"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "weekly"
|
|
groups:
|
|
all-github-actions:
|
|
patterns: [ "*" ]
|
|
reviewers:
|
|
- "christopherfujino"
|
|
- "jmagman"
|
|
labels:
|
|
- "team"
|
|
- "team-infra"
|
|
- "autosubmit"
|
|
ignore:
|
|
- dependency-name: "codecov/codecov-action"
|
|
update-types: ["version-update:semver-patch"]
|