Update
This commit is contained in:
parent
7c6ea32daa
commit
1f0ea52aec
|
@ -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
|
||||
|
|
6
TODO.md
6
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
|
||||
|
@ -15,8 +16,3 @@
|
|||
- [ ] 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
|
10
index.ts
10
index.ts
|
@ -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}
|
|
@ -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",
|
||||
|
|
BIN
test/bun.lockb
BIN
test/bun.lockb
Binary file not shown.
|
@ -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"
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue