3 Commits

Author SHA1 Message Date
john-okeefe 8d87100373 cleaned up ChangeDataDialogue.svelte 2024-08-22 21:01:38 -04:00
john-okeefe 7b503875ca updated app icon 2024-08-22 21:00:45 -04:00
john-okeefe ca6727d2b6 updated app icon 2024-08-22 21:00:17 -04:00
9 changed files with 11 additions and 7 deletions
BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 130 KiB

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 15 KiB

+1
View File
@@ -4,6 +4,7 @@
<meta charset="UTF-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>AniTrack</title>
<link rel="icon" href="%svelte.assets%/favicon.ico" />
</head>
<body>
<div id="app"></div>
+2 -6
View File
@@ -177,8 +177,7 @@
10: "Masterpiece",
}
const hide = (e) => {
e.preventDefault();
const hide = () => {
anilistModal.set(false)
};
@@ -196,9 +195,6 @@
},
score: currentAniListAnime.data.MediaList.score / 2,
showScore: false,
scoreFormat: function () {
return `(${this.score.toFixed(1)}/${this.countStars})`
},
name: "",
starConfig: {
size: 32,
@@ -562,7 +558,7 @@
<TableBodyRow>
<TableBodyCell class="overflow-x-auto">{item.id}</TableBodyCell>
<TableBodyCell class="overflow-x-auto">{item.service}</TableBodyCell>
<TableBodyCell class="overflow-x-auto" >{item.progress}</TableBodyCell>
<TableBodyCell class="overflow-x-auto">{item.progress}</TableBodyCell>
<TableBodyCell class="overflow-x-auto">{item.status}</TableBodyCell>
<TableBodyCell class="overflow-x-auto">{item.startedAt}</TableBodyCell>
<TableBodyCell class="overflow-x-auto">{item.completedAt}</TableBodyCell>
Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File
Vendored Regular → Executable
View File
View File
+8 -1
View File
@@ -2,9 +2,11 @@ package main
import (
"embed"
"github.com/wailsapp/wails/v2"
"github.com/wailsapp/wails/v2/pkg/options"
"github.com/wailsapp/wails/v2/pkg/options/assetserver"
"github.com/wailsapp/wails/v2/pkg/options/linux"
)
//go:embed all:frontend/dist
@@ -27,8 +29,13 @@ func main() {
Bind: []interface{}{
app,
},
Linux: &linux.Options{
Icon: []byte("./build/appicon.png"),
WindowIsTranslucent: false,
WebviewGpuPolicy: linux.WebviewGpuPolicyAlways,
ProgramName: "AniTrack",
},
})
if err != nil {
println("Error:", err.Error())
}