Skip to content

Commit facc0df

Browse files
committed
hot fix
1 parent 4102b49 commit facc0df

File tree

4 files changed

+14
-2
lines changed

4 files changed

+14
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

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

5+
## v2.7.4
6+
7+
- 🚑️ Fixed infinite loading screen when launching app for the first time
8+
- ⚡️ External player link: Option to encode file path to Base64 (v2.7.3)
9+
- 🦺 Desktop: Fixed startup failing due to long AniList request (v2.7.3)
10+
- 🦺 Debrid: Fixed downloading to nonexistent destination (v2.7.3)
11+
- 🦺 Anime library: Fixed external player link not working due to incorrect un-escaping (v2.7.3)
12+
- 🦺 Small UI fixes (v2.7.3)
13+
- 🏗️ Server: Support serving Base64 encoded file paths (v2.7.3)
14+
515
## v2.7.3
616

717
- ⚡️ External player link: Option to encode file path to Base64

internal/constants/constants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package constants
33
import "time"
44

55
const (
6-
Version = "2.7.3"
6+
Version = "2.7.4"
77
VersionName = "Ekō"
88
GcTime = time.Minute * 30
99
ConfigFileName = "config.toml"

internal/core/modules.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -523,10 +523,12 @@ func (a *App) InitOrRefreshAnilistData() {
523523

524524
acc, err := a.Database.GetAccount()
525525
if err != nil {
526+
a.AnilistDataLoaded = true
526527
return
527528
}
528529

529530
if acc.Token == "" || acc.Username == "" {
531+
a.AnilistDataLoaded = true
530532
return
531533
}
532534

seanime-desktop/src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"productName": "Seanime Desktop",
3-
"version": "2.7.3",
3+
"version": "2.7.4",
44
"identifier": "app.seanime.desktop",
55
"build": {
66
"frontendDist": "../../web-desktop",

0 commit comments

Comments
 (0)