diff --git a/README.md b/README.md index 8b122e2..dcc62be 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ General: - [Codeberg](https://codeberg.org/MinPluto/Zorn/) (Mirror) - [Pub Solar](https://git.pub.solar/MinPluto/Zorn) (Mirror) - > Any other mirrors of the repository that are not listed here are not official and not controlled by SudoVanilla or MinPluto. There are plans to expand the list to other Forgejo instances. + > Any other mirrors of the repository that are not listed here are not official and not controlled by SudoVanilla or MinPluto. ## License diff --git a/TODO.md b/TODO.md index be46ff1..fad4c07 100644 --- a/TODO.md +++ b/TODO.md @@ -4,6 +4,7 @@ - [x] Mobile Gestures - [x] Allow for multiple players on one page - [x] Remove Iconoir's Vue package, [replace with CSS](https://iconoir.com/docs/packages/css) + - [x] Presentation - [x] Milieu Settings - [x] Mode (Default | Fullscreen) - [x] Speed @@ -14,9 +15,4 @@ - [ ] 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 - - [ ] Modes - - [ ] Audio-Only - - [ ] Pop-Up - - [ ] Presentation - - [ ] Inline \ No newline at end of file + - [ ] 360 Video Support \ No newline at end of file diff --git a/bun.lockb b/bun.lockb deleted file mode 100755 index 178998f..0000000 Binary files a/bun.lockb and /dev/null differ diff --git a/index.ts b/index.ts index ef298f0..f52039d 100644 --- a/index.ts +++ b/index.ts @@ -1 +1,9 @@ -export { default as Zorn } from './src/Player.astro' \ No newline at end of file +// Primary Player +import Zorn from "./src/Player.astro" + +// Presenter +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 06b10f0..05c2281 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@minpluto/zorn", - "version": "0.4.83", + "version": "0.4.9", "author": "SudoVanilla", "displayName": "Zorn", "description": "In-House Player built by MinPluto", diff --git a/test/bun.lockb b/test/bun.lockb index d01fdae..3dd51d6 100755 Binary files a/test/bun.lockb and b/test/bun.lockb differ diff --git a/test/package.json b/test/package.json index 7ddd5dd..7b92a23 100644 --- a/test/package.json +++ b/test/package.json @@ -3,19 +3,13 @@ "type": "module", "version": "0.0.1", "scripts": { - "dev": "astro dev", - "start": "astro dev", - "build": "astro check && astro build", - "preview": "astro preview", - "astro": "astro" - }, - "dependencies": { - "@astrojs/check": "^0.9.4", - "@minpluto/zorn": "../", - "astro": "^5.0.5", - "typescript": "^5.7.2" + "start": "astro dev" }, "devDependencies": { "sass-embedded": "^1.83.0" + }, + "dependencies": { + "@minpluto/zorn": "../", + "astro": "^5.1.1" } } \ No newline at end of file