File tree Expand file tree Collapse file tree 4 files changed +14
-2
lines changed
seanime-desktop/src-tauri Expand file tree Collapse file tree 4 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file.
4
4
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
+
5
15
## v2.7.3
6
16
7
17
- ⚡️ External player link: Option to encode file path to Base64
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package constants
3
3
import "time"
4
4
5
5
const (
6
- Version = "2.7.3 "
6
+ Version = "2.7.4 "
7
7
VersionName = "Ekō"
8
8
GcTime = time .Minute * 30
9
9
ConfigFileName = "config.toml"
Original file line number Diff line number Diff line change @@ -523,10 +523,12 @@ func (a *App) InitOrRefreshAnilistData() {
523
523
524
524
acc , err := a .Database .GetAccount ()
525
525
if err != nil {
526
+ a .AnilistDataLoaded = true
526
527
return
527
528
}
528
529
529
530
if acc .Token == "" || acc .Username == "" {
531
+ a .AnilistDataLoaded = true
530
532
return
531
533
}
532
534
Original file line number Diff line number Diff line change 1
1
{
2
2
"productName" : " Seanime Desktop" ,
3
- "version" : " 2.7.3 " ,
3
+ "version" : " 2.7.4 " ,
4
4
"identifier" : " app.seanime.desktop" ,
5
5
"build" : {
6
6
"frontendDist" : " ../../web-desktop" ,
You can’t perform that action at this time.
0 commit comments