diff --git a/lib/pages/main/patchnote/patchnote_page.dart b/lib/pages/main/patchnote/patchnote_page.dart index 39720b54c..ede5ab066 100644 --- a/lib/pages/main/patchnote/patchnote_page.dart +++ b/lib/pages/main/patchnote/patchnote_page.dart @@ -21,6 +21,15 @@ class PatchModel { } final patches = [ + PatchModel( + dateTime: DateTime(2023, 2, 12), + version: '1.28.3 Patch', + contents: [ + 'fix hitomi script cdn cache update too long (use direct)', + 'and so many changes that cannot be traced', + '* some features may not work normally', + ], + ), PatchModel( dateTime: DateTime(2022, 10, 24), version: '1.28.2 Patch', diff --git a/lib/version/update_sync.dart b/lib/version/update_sync.dart index c9d46473c..7fbc91fcb 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 = 2; + static const int patchVersion = 3; static String get currentVersion => '$majorVersion.$minorVersion.$patchVersion'; diff --git a/pubspec.yaml b/pubspec.yaml index 18b2e69b7..e4da868dc 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.2+0 +version: 1.28.3+0 publish_to: none