Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
5rahim committed Feb 17, 2024
1 parent 6a19191 commit f463b1a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ logs/
*.db
.env

Dockerfile
.dockerignore

logs
web/

Expand Down Expand Up @@ -55,4 +58,4 @@ seanime-web/snapshot
seanime-web/logs
seanime-web/analyze
seanime-web/TODO-priv.md
seanime-web/CHANGELOG-priv.md
seanime-web/CHANGELOG-priv.md
4 changes: 1 addition & 3 deletions cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,9 @@ import (
func main() {

purple := color.New(color.FgHiMagenta)
green := color.New(color.FgGreen)
fmt.Println()
purple.Print(" ⦿ SEANIME")
fmt.Printf("\n %s ", constants.Version)
green.Print(constants.VersionName)
fmt.Printf(" %s ", constants.Version)
fmt.Println()
fmt.Println()

Expand Down
4 changes: 2 additions & 2 deletions internal/core/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,9 @@ func NewFiberApp(app *App) *fiber.App {
}
}
if constants.DevelopmentWebBuild {
return c.SendFile("seanime-web/web" + path)
return c.SendFile("./seanime-web/web" + path)
} else {
return c.SendFile("web" + path)
return c.SendFile("./web" + path)
}
})

Expand Down
3 changes: 2 additions & 1 deletion seanime-web/src/app/(main)/settings/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export default function Page() {
<Divider />
<Field.Switch
name="disableUpdateCheck"
label="Disable update check"
label="Do not check for updates"
help="If enabled, Seanime will not check for new releases."
/>

Expand All @@ -157,6 +157,7 @@ export default function Page() {
<Field.Text
name="mediaPlayerHost"
label="Host"
help="VLC/MPC-HC"
/>

<Divider />
Expand Down
1 change: 0 additions & 1 deletion version.txt

This file was deleted.

0 comments on commit f463b1a

Please sign in to comment.