-
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(playlist-plugin): introduce repeat one mode
- Introduced a new "repeat one" mode to the playlist plugin. - Modified the UI to include a toggle button that cycles through three modes: no repeat, repeat all, and repeat one. BREAKING CHANGE: - Changed the API to toggle the repeat mode and the initialization options. - The repeat mode is no longer a boolean. It is now a number representing each mode (0: no repeat, 1: repeat all, 2: repeat one).
- Loading branch information
Showing
13 changed files
with
213 additions
and
71 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 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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
{ | ||
"Next Item": "Nächstes Element", | ||
"NextItem": "Nächstes element", | ||
"NoRepeat": "Keine Wiederholung", | ||
"Playlist": "Wiedergabeliste", | ||
"Previous Item": "Vorheriges Element", | ||
"Repeat": "Wiederholen", | ||
"PreviousItem": "Vorheriges Element", | ||
"RepeatAll": "Alle Wiederholen", | ||
"RepeatOne": "Einzelnes Wiederholen", | ||
"Shuffle": "Mischen" | ||
} |
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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
{ | ||
"Next Item": "Next Item", | ||
"NextItem": "Next Item", | ||
"NoRepeat": "No Repeat", | ||
"Playlist": "Playlist", | ||
"Previous Item": "Previous Item", | ||
"Repeat": "Repeat", | ||
"PreviousItem": "Previous Item", | ||
"RepeatAll": "Repeat All", | ||
"RepeatOne": "Repeat One", | ||
"Shuffle": "Shuffle" | ||
} |
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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
{ | ||
"Next Item": "Élément suivant", | ||
"NextItem": "Élément suivant", | ||
"NoRepeat": "Pas de Répétition", | ||
"Playlist": "Liste de lecture", | ||
"Previous Item": "Élément précédent", | ||
"Repeat": "Répéter", | ||
"PreviousItem": "Élément précédent", | ||
"RepeatAll": "Répéter Tout", | ||
"RepeatOne": "Répéter Un", | ||
"Shuffle": "Mélanger" | ||
} |
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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
{ | ||
"Next Item": "Elemento successivo", | ||
"NextItem": "Elemento successivo", | ||
"NoRepeat": "Nessuna Ripetizione", | ||
"Playlist": "Playlist", | ||
"Previous Item": "Elemento precedente", | ||
"Repeat": "Ripeti", | ||
"PreviousItem": "Elemento precedente", | ||
"RepeatAll": "Ripeti Tutto", | ||
"RepeatOne": "Ripeti Uno", | ||
"Shuffle": "Mescola" | ||
} |
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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
{ | ||
"Next Item": "Element proxim", | ||
"NextItem": "Element proxim", | ||
"NoRepeat": "Nagins Repeter", | ||
"Playlist": "Glista da reprodukziun", | ||
"Previous Item": "Element precedent", | ||
"Repeat": "Repeter", | ||
"PreviousItem": "Element precedent", | ||
"RepeatAll": "Repeter Tut", | ||
"RepeatOne": "Repeter In", | ||
"Shuffle": "Maschadar" | ||
} |
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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
import videojs from 'video.js'; | ||
import './pillarbox-playlist-modal.js'; | ||
import './lang'; | ||
|
||
/** | ||
* @ignore | ||
|
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
import videojs from 'video.js'; | ||
import './pillarbox-playlist-button.js'; | ||
import './lang'; | ||
|
||
/** | ||
* @ignore | ||
|
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
Oops, something went wrong.