Reinstall the Go toolchain and rebuild wails against v2.15.0, then run 'go mod tidy' to update the dependency graph: - github.com/wailsapp/wails/v2 v2.12.0 -> v2.15.0 - golang.org/x/crypto v0.52.0 -> v0.53.0 - golang.org/x/net v0.55.0 -> v0.56.0 - golang.org/x/sys v0.45.0 -> v0.46.0 - golang.org/x/term v0.43.0 -> v0.44.0 - golang.org/x/text v0.37.0 -> v0.39.0 The regenerated Wails runtime bindings (runtime.d.ts / runtime.js) are included as they surface new APIs shipped in v2.15: the cross-platform notification API (InitializeNotifications, SendNotification, etc.) and the EventsOffAll event helper.
README
About
Track the anime you are watching by syncing with various services. Anilist, MyAnimeList, Simkl...
This has been built with the official Wails Svelte-TS template.
To run as is, please feel free to download a binary from the releases page.
If you are getting too many errors due to api usage, please build from source.
Build from Source
Get API Keys
First you will need your own API keys for the various services the app connects to. AniList: AniList Developer App MyAnimeList: MyAnimeList Developer App Simkl: Simkl Developer
- Name: AniTrack
- Redirect URL: http://localhost:6734/callback
- App Type: web
- Homepage URL: http://localhost or the Github URL
- Company Name: AniTrack
- Commercial/Non-Commercial: non-commercial
- Purpose of Use: hobbyist
Once you have the IDs, Keys, and Secrets create an environment.go file based on the environment.go.example and fill in the fields.
Install Wails and Dependencies
Please follow the instructions here to get Wails up and running and follow the instructions below.
Live Development
To run in live development mode, run wails dev in the project directory. This will run a Vite development
server that will provide very fast hot reload of your frontend changes. If you want to develop in a browser
and have access to your Go methods, there is also a dev server that runs on http://localhost:34115. Connect
to this in your browser, and you can call your Go code from devtools.
Building
To build a redistributable, production mode package, use wails build --clean.