Skip to content

Commit d6d9778

Browse files
authored
Merge pull request #15 from 7a6163/fix/non-utf8-subtitle-encoding
chore: bump version to 2.4.1 and update changelog
2 parents cc57855 + a96ba63 commit d6d9778

6 files changed

Lines changed: 12 additions & 6 deletions

File tree

CHANGELOG.md

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

33
本檔案記錄繁化姬 Tauri 版的所有重要變更。格式基於 [Keep a Changelog](https://keepachangelog.com/)
44

5+
## [2.4.1] - 2026-07-06
6+
7+
### Fixed
8+
9+
- 修復無法讀取非 UTF-8 編碼字幕檔的問題:`convert_file``preview_convert` 原先以 `read_to_string` 讀檔,遇到 Big5、GBK/GB18030、Shift_JIS、UTF-16 等編碼會直接以 `FILE_READ_FAILED` 失敗;改為讀取原始位元組並自動偵測編碼(BOM 優先,其餘以 `chardetng` 猜測)後解碼為 UTF-8
10+
511
## [2.3.0] - 2026-04-17
612

713
### Added

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fanhuaji-tauri",
3-
"version": "2.4.0",
3+
"version": "2.4.1",
44
"private": true,
55
"scripts": {
66
"dev": "vite",

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fanhuaji-tauri"
3-
version = "2.4.0"
3+
version = "2.4.1"
44
edition = "2024"
55

66
[lib]

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "Fanhuaji",
4-
"version": "2.4.0",
4+
"version": "2.4.1",
55
"identifier": "org.zhconvert.fanhuaji",
66
"build": {
77
"frontendDist": "../dist",

0 commit comments

Comments
 (0)