Skip to content

Commit 98adad4

Browse files
authored
Merge pull request #808 from project-violet/v1.34.4
version: Update version (1.34.4)
2 parents 86ff631 + dd33ae1 commit 98adad4

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

violet/lib/pages/settings/patchnote_page.dart

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,35 @@ class PatchModel {
1010
bool isMajor;
1111
bool isMinor;
1212
List<String> contents;
13+
List<String>? contentsKorean;
1314

1415
PatchModel({
1516
required this.dateTime,
1617
required this.version,
1718
this.isMajor = false,
1819
this.isMinor = false,
1920
required this.contents,
21+
this.contentsKorean,
2022
});
2123
}
2224

2325
final patches = [
26+
PatchModel(
27+
dateTime: DateTime(2025, 10, 9),
28+
version: '1.34.4 Patch',
29+
contents: [
30+
'add using system theme option',
31+
'fix reload bug when theme switch',
32+
'fix thumbnail slider bug on downloaded article view',
33+
'use skia instead of impeller on android for avoid performance issue',
34+
],
35+
contentsKorean: [
36+
'시스템 테마 사용 옵션 추가',
37+
'테마 스위치 시 리로드 버그 수정',
38+
'다운로드된 작품 뷰어에서 썸네일 슬라이더가 동작하지 않던 버그 수정',
39+
'성능 이슈를 피하기 위해 Android에서 Impeller rendering engine을 임시로 비활성화',
40+
],
41+
),
2442
PatchModel(
2543
dateTime: DateTime(2025, 10, 7),
2644
version: '1.34.3 Patch',

violet/lib/version/update_sync.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class UpdateSyncManager {
1515
// Current version
1616
static const int majorVersion = 1;
1717
static const int minorVersion = 34;
18-
static const int patchVersion = 3;
18+
static const int patchVersion = 4;
1919

2020
static String get currentVersion =>
2121
'$majorVersion.$minorVersion.$patchVersion';

0 commit comments

Comments
 (0)