update
This commit is contained in:
parent
0e59360957
commit
8c31194925
4 changed files with 16 additions and 12 deletions
BIN
bun.lockb
BIN
bun.lockb
Binary file not shown.
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "minpluto",
|
||||
"version": "24.08.21",
|
||||
"version": "24.09.07",
|
||||
"description": "An open source frontend alternative to YouTube and Twitch.",
|
||||
"repository": "https://ark.sudovanilla.org/MinPluto/MinPluto",
|
||||
"author": "Korbs <korbs@sudovanilla.org>",
|
||||
|
@ -38,11 +38,11 @@
|
|||
"@astrojs/node": "^8.3.3",
|
||||
"@astrojs/vue": "^4.5.0",
|
||||
"@iconoir/vue": "^7.8.0",
|
||||
"@minpluto/polestar": "^0.0.51",
|
||||
"@minpluto/polestar": "^0.0.54-1",
|
||||
"@minpluto/zorn": "^0.4.51",
|
||||
"@nurodev/astro-bun": "^1.1.5",
|
||||
"@supabase/supabase-js": "^2.45.3",
|
||||
"astro": "^4.15.2",
|
||||
"astro": "^4.15.4",
|
||||
"astro-tooltips": "^0.6.2",
|
||||
"sass": "^1.78.0"
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
"@data/*": ["./web/tools/data/*"],
|
||||
"@layouts/*": ["./web/layouts/*"],
|
||||
"@library/*": ["./web/tools/library/*"],
|
||||
"@player/*": ["./web/components/video-player/*"],
|
||||
"@root/*": ["./web/"],
|
||||
"@styles/*": ["./web/styles/*"],
|
||||
"@utils/*": ["./web/tools/utilities/*"]
|
||||
}
|
||||
|
|
|
@ -2,9 +2,12 @@
|
|||
// Properties
|
||||
const {Title} = Astro.props
|
||||
|
||||
// Information
|
||||
import {version} from "../../package.json"
|
||||
|
||||
// Components
|
||||
import Head from '@components/global/Head.astro'
|
||||
import {Sidebar} from '@minpluto/polestar'
|
||||
import {MobileNavigation, Sidebar} from '@minpluto/polestar'
|
||||
|
||||
// Icons
|
||||
import {
|
||||
|
@ -19,8 +22,7 @@ import {
|
|||
PlanetAlt,
|
||||
Settings,
|
||||
MediaVideoList,
|
||||
LogOut,
|
||||
OpenInBrowser
|
||||
LogOut
|
||||
} from '@iconoir/vue'
|
||||
---
|
||||
|
||||
|
@ -29,11 +31,12 @@ import {
|
|||
LogoPath="http://localhost:1930/images/logo/MinPluto - Logo.png"
|
||||
ShowHeader
|
||||
ShowVersion
|
||||
Version={version}
|
||||
FooterLinks
|
||||
>
|
||||
<slot slot="header-items">
|
||||
<a href="#"><InputSearch/></a>
|
||||
<a href="#"><ProfileCircle/></a>
|
||||
<a title="Search" href="#"><InputSearch/></a>
|
||||
<a title="Your Account" href="#"><ProfileCircle/></a>
|
||||
</slot>
|
||||
<slot slot="top-items">
|
||||
<a href="#"><PlanetAlt/> Home</a>
|
||||
|
@ -53,7 +56,8 @@ import {
|
|||
|
||||
</slot>
|
||||
<slot slot="footer-items">
|
||||
<a href="#"><LogOut/></a>
|
||||
<a href="#"><Settings/></a>
|
||||
<a title="Log Out" href="#"><LogOut/></a>
|
||||
<a title="Settings" href="#"><Settings/></a>
|
||||
</slot>
|
||||
</Sidebar>
|
||||
</Sidebar>
|
||||
<MobileNavigation/>
|
Reference in a new issue