diff --git a/TODO.md b/TODO.md index fad4c07..f094108 100644 --- a/TODO.md +++ b/TODO.md @@ -12,7 +12,5 @@ - [x] Scale - [x] Subtitles ([`textTracks`](https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/textTracks)) - [x] Playback Rate ([`playbackRate`](https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/playbackRate)) - - [ ] Multi-Video Tracks ([`videoTracks`](https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/videoTracks)) - - [ ] Multi-Audio Tracks ([`audioTracks`](https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/audioTracks)) - [ ] Cast Support - [ ] 360 Video Support \ No newline at end of file diff --git a/index.ts b/index.ts index f52039d..2b097be 100644 --- a/index.ts +++ b/index.ts @@ -5,5 +5,4 @@ import Zorn from "./src/Player.astro" import Presentation from './src/Presentation/Player.astro' // Export - export {Zorn, Presentation} \ No newline at end of file diff --git a/package.json b/package.json index 05c2281..15b506e 100644 --- a/package.json +++ b/package.json @@ -29,7 +29,7 @@ "playback" ], "scripts": { - "publish": "bun publish --registry https://registry.sudovanilla.org/", + "publish": "bun publish --registry https://js.registry.sudovanilla.org/", "test": "cd test/ && bun start" } } \ No newline at end of file diff --git a/src/Controls/Controller.astro b/src/Controls/Controller.astro index afeffd2..d64a4f5 100644 --- a/src/Controls/Controller.astro +++ b/src/Controls/Controller.astro @@ -12,7 +12,7 @@ const { * @licstart The following is the entire license notice for the * JavaScript code in this page. * - * Copyright (C) 2024 - 2025 SudoVanilla + * Copyright (C) 2024 - 2025 MinPluto * * * The JavaScript code in this page is free software: you can @@ -123,7 +123,7 @@ function PlayPause() { const Button_PlayPause = document.querySelector("#zorn-player-" + PlayerName + " .video-controls #vc-playpause"); var Button_BigPresentButton = document.querySelector("#zorn-player-" + PlayerName + " .big-present-button") - // Event Listern + // Event Listener Button_PlayPause.addEventListener("click", Toggle_PlayPause); Player.addEventListener("click", Toggle_PlayPause); Player.addEventListener("play", Update_PlayPauseButton);