Skip to content

Commit

Permalink
hot fix
Browse files Browse the repository at this point in the history
  • Loading branch information
5rahim committed Feb 16, 2025
1 parent 4102b49 commit facc0df
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

All notable changes to this project will be documented in this file.

## v2.7.4

- 🚑️ Fixed infinite loading screen when launching app for the first time
- ⚡️ External player link: Option to encode file path to Base64 (v2.7.3)
- 🦺 Desktop: Fixed startup failing due to long AniList request (v2.7.3)
- 🦺 Debrid: Fixed downloading to nonexistent destination (v2.7.3)
- 🦺 Anime library: Fixed external player link not working due to incorrect un-escaping (v2.7.3)
- 🦺 Small UI fixes (v2.7.3)
- 🏗️ Server: Support serving Base64 encoded file paths (v2.7.3)

## v2.7.3

- ⚡️ External player link: Option to encode file path to Base64
Expand Down
2 changes: 1 addition & 1 deletion internal/constants/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package constants
import "time"

const (
Version = "2.7.3"
Version = "2.7.4"
VersionName = "Ekō"
GcTime = time.Minute * 30
ConfigFileName = "config.toml"
Expand Down
2 changes: 2 additions & 0 deletions internal/core/modules.go
Original file line number Diff line number Diff line change
Expand Up @@ -523,10 +523,12 @@ func (a *App) InitOrRefreshAnilistData() {

acc, err := a.Database.GetAccount()
if err != nil {
a.AnilistDataLoaded = true
return
}

if acc.Token == "" || acc.Username == "" {
a.AnilistDataLoaded = true
return
}

Expand Down
2 changes: 1 addition & 1 deletion seanime-desktop/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"productName": "Seanime Desktop",
"version": "2.7.3",
"version": "2.7.4",
"identifier": "app.seanime.desktop",
"build": {
"frontendDist": "../../web-desktop",
Expand Down

0 comments on commit facc0df

Please sign in to comment.