This commit is contained in:
Korbs 2025-01-02 00:18:04 -05:00
parent 7c6ea32daa
commit 1f0ea52aec
No known key found for this signature in database
7 changed files with 18 additions and 20 deletions

View file

@ -41,7 +41,7 @@ General:
- [Codeberg](https://codeberg.org/MinPluto/Zorn/) (Mirror) - [Codeberg](https://codeberg.org/MinPluto/Zorn/) (Mirror)
- [Pub Solar](https://git.pub.solar/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 ## License

View file

@ -4,6 +4,7 @@
- [x] Mobile Gestures - [x] Mobile Gestures
- [x] Allow for multiple players on one page - [x] Allow for multiple players on one page
- [x] Remove Iconoir's Vue package, [replace with CSS](https://iconoir.com/docs/packages/css) - [x] Remove Iconoir's Vue package, [replace with CSS](https://iconoir.com/docs/packages/css)
- [x] Presentation
- [x] Milieu Settings - [x] Milieu Settings
- [x] Mode (Default | Fullscreen) - [x] Mode (Default | Fullscreen)
- [x] Speed - [x] Speed
@ -14,9 +15,4 @@
- [ ] Multi-Video Tracks ([`videoTracks`](https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/videoTracks)) - [ ] 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)) - [ ] Multi-Audio Tracks ([`audioTracks`](https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/audioTracks))
- [ ] Cast Support - [ ] Cast Support
- [ ] 360 Video Support - [ ] 360 Video Support
- [ ] Modes
- [ ] Audio-Only
- [ ] Pop-Up
- [ ] Presentation
- [ ] Inline

BIN
bun.lockb

Binary file not shown.

View file

@ -1 +1,9 @@
export { default as Zorn } from './src/Player.astro' // Primary Player
import Zorn from "./src/Player.astro"
// Presenter
import Presentation from './src/Presentation/Player.astro'
// Export
export {Zorn, Presentation}

View file

@ -1,6 +1,6 @@
{ {
"name": "@minpluto/zorn", "name": "@minpluto/zorn",
"version": "0.4.83", "version": "0.4.9",
"author": "SudoVanilla", "author": "SudoVanilla",
"displayName": "Zorn", "displayName": "Zorn",
"description": "In-House Player built by MinPluto", "description": "In-House Player built by MinPluto",

Binary file not shown.

View file

@ -3,19 +3,13 @@
"type": "module", "type": "module",
"version": "0.0.1", "version": "0.0.1",
"scripts": { "scripts": {
"dev": "astro dev", "start": "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"
}, },
"devDependencies": { "devDependencies": {
"sass-embedded": "^1.83.0" "sass-embedded": "^1.83.0"
},
"dependencies": {
"@minpluto/zorn": "../",
"astro": "^5.1.1"
} }
} }