Skip to content

Commit b1978e6

Browse files
committed
changelog
1 parent f03ee50 commit b1978e6

File tree

3 files changed

+60
-2
lines changed

3 files changed

+60
-2
lines changed

CHANGELOG.md

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

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

5+
## v2.7.0
6+
7+
- ✨ Updated design
8+
- ✨ Command palette (Experimental)
9+
- Quickly browse, search, perform actions, with more options to come
10+
- Allows navigation with keyboard only #46
11+
- ✨ Preview cards
12+
- Preview an anime/manga by right-clicking on a media card
13+
- ✨ Library: Filtering options #210
14+
- Filter to see only anime with unseen episodes and manga with unread chapters #175 (Works if chapters are cached)
15+
- New sorting options: Aired recently, Highest unwatched count, ...
16+
- ✨ New UI Settings
17+
- 'Continue watching' sorting, card customization
18+
- Show unseen count for anime cards #209
19+
- ⚡️ Torrent/Debrid streaming: 'Auto play next episode' now works with manually selected batches #211
20+
- This works only if the user did not select the file manually
21+
- ⚡️ Server: Reduced memory usage, improved performance
22+
- ⚡️ Discord Rich Presence now works with online & media streaming
23+
- ⚡️ 'Continue watching' UI setting options, defaults to 'Aired recently'
24+
- BREAKING: Manga unread count badge needs to be reactivated in settings
25+
- ⚡️ Torrent streaming: Slow seeding mode #200
26+
- ⚡️ Debrid streaming: Auto-select file option
27+
- ⚡️ Quick action menu #197
28+
- Open preview cards, more options to come
29+
- ⚡️ Revamped Settings page
30+
- ⚡️ Anime library: Improved Direct Play performance
31+
- ⚡️ Quickly add media to AniList from its card
32+
- 🦺 Torrent streaming: Fixed auto-selected file from batches not being downloaded #215
33+
- Fixed piece prioritization
34+
- 🦺 Debrid streaming: Fixed streaming shows with no AniDB mapping
35+
- 🦺 Anime library: 'Remove empty directories' now works for other library folders
36+
- 🦺 Anime library: Download destination check now takes all library paths into account
37+
- 🦺 Online streaming: Fixed 'auto next' not playing the last episode
38+
- 🦺 Server: Fixed empty user agent header leading to some failed requests
39+
- 🦺 Anime library: Ignore AppleDouble files on macOS #208
40+
- 🦺 Manga: Fixed synonyms not being taken into account for auto matching
41+
- 🦺 Manga: Fixed genre link opening anime in advanced search
42+
- 🦺 Extension Playground: Fixed anime torrent provider search input empty value
43+
- 🦺 Continuity: Ignore watch history above a certain threshold
44+
- 🦺 Online streaming: Fixed selecting highest quality by default
45+
- 🦺 Fixed Auto Downloader queuing same items
46+
- 🦺 Manga: Fixed pagination when filtering by language/scanlator #217
47+
- 🦺 Manga: Fixed page layout overflowing on mobile
48+
- 🦺 Torrent streaming: Fixed incorrect download/upload speeds
49+
- 🦺 Anime library: Fixed special episode sorting
50+
- 🏗️ Server: Migrated API from Fiber (FastHTTP) to Echo (HTTP)
51+
- 🏗 External media players: Increased retries when streaming
52+
- 🏗 Torrent streaming: Serve stream from main server
53+
- 🏗 Integrated player: Merged both online & media streaming players
54+
- BREAKING: Auto play, Auto next, Auto skip player settings have been reset to 'off'
55+
- 🏗 Renaming and Removals
56+
- Scanner: Renamed 'matching data' checkbox
57+
- Torrent/Debrid streaming: Renamed 'Manually select file' to 'Auto select file'
58+
- Removed 'Use legacy episode cards' option
59+
- 'Fluid' media page header layout is now the default
60+
- ⬆️ Migrated to Go 1.23.5
61+
- ⬆️ Updated dependencies
62+
563
## v2.6.2
664

765
- ⚡️ Advanced search: Maintain search params during navigation #195

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.0-prerelease"
6+
Version = "2.7.0"
77
VersionName = "Ekō"
88
GcTime = time.Minute * 30
99
ConfigFileName = "config.toml"

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.6.2",
3+
"version": "2.7.0",
44
"identifier": "app.seanime.desktop",
55
"build": {
66
"frontendDist": "../../web-desktop",

0 commit comments

Comments
 (0)