diff --git a/lib/pages/main/patchnote/patchnote_page.dart b/lib/pages/main/patchnote/patchnote_page.dart index 75400ce48..26f2f1b76 100644 --- a/lib/pages/main/patchnote/patchnote_page.dart +++ b/lib/pages/main/patchnote/patchnote_page.dart @@ -21,6 +21,17 @@ class PatchModel { } final patches = [ + PatchModel( + dateTime: DateTime(2022, 10, 24), + version: '1.28.2 Patch', + contents: [ + 'fix hiyobi router', + 'fix bug that built-in script reloader is not work properly', + 'fix bug that ultra detail view uses a lot of raster resource', + 'add tag viewer', + 'add artists search experimentally (currently only supports cosine distance)', + ], + ), PatchModel( dateTime: DateTime(2022, 10, 9), version: '1.28.1 Patch (HotFix)', diff --git a/lib/version/update_sync.dart b/lib/version/update_sync.dart index bb49ff62d..0e69394b5 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 = 1; + static const int patchVersion = 2; static String get currentVersion => '$majorVersion.$minorVersion.$patchVersion'; diff --git a/pubspec.yaml b/pubspec.yaml index bb8b301c5..05066dd2c 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.1+0 +version: 1.28.2+0 publish_to: none