From 7ede940184b46feca1446481a2717d8f87c8cee2 Mon Sep 17 00:00:00 2001 From: violet-dev Date: Sun, 9 Oct 2022 12:51:49 +0900 Subject: [PATCH] version: Update version (1.28.1) --- lib/pages/main/patchnote/patchnote_page.dart | 11 +++++++++++ lib/version/update_sync.dart | 2 +- pubspec.yaml | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/lib/pages/main/patchnote/patchnote_page.dart b/lib/pages/main/patchnote/patchnote_page.dart index 287001e27..75400ce48 100644 --- a/lib/pages/main/patchnote/patchnote_page.dart +++ b/lib/pages/main/patchnote/patchnote_page.dart @@ -21,9 +21,19 @@ class PatchModel { } final patches = [ + PatchModel( + dateTime: DateTime(2022, 10, 9), + version: '1.28.1 Patch (HotFix)', + contents: [ + 'fix bug that built-in script reloader not working on lite mode', + 'fix bug that download retry logic not wokring', + 'fix gray screen bug on zh locale', + ], + ), PatchModel( dateTime: DateTime(2022, 10, 2), version: '1.28 Minor Update', + isMinor: true, contents: [ 'fix article thnumbnail viewer animation bug', 'fix retry when thumbnail loading fail', @@ -37,6 +47,7 @@ final patches = [ PatchModel( dateTime: DateTime(2022, 9, 15), version: '1.27 Minor Update', + isMinor: true, contents: [ 'fix built-in script reloader', 'rollback article item thumbnail implementation', diff --git a/lib/version/update_sync.dart b/lib/version/update_sync.dart index 0c4b0b6cf..bb49ff62d 100644 --- a/lib/version/update_sync.dart +++ b/lib/version/update_sync.dart @@ -15,7 +15,7 @@ class UpdateSyncManager { // Current version static const int majorVersion = 1; static const int minorVersion = 28; - static const int patchVersion = 0; + static const int patchVersion = 1; static String get currentVersion => '$majorVersion.$minorVersion.$patchVersion'; diff --git a/pubspec.yaml b/pubspec.yaml index c5d5ad6b8..34a377ac3 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -11,7 +11,7 @@ description: Open Source Hentai Viewer App # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 1.28.0+0 +version: 1.28.1+0 publish_to: none