diff --git a/violet/lib/pages/main/patchnote/patchnote_page.dart b/violet/lib/pages/main/patchnote/patchnote_page.dart index 9a3ab991c..8a5533903 100644 --- a/violet/lib/pages/main/patchnote/patchnote_page.dart +++ b/violet/lib/pages/main/patchnote/patchnote_page.dart @@ -21,6 +21,14 @@ class PatchModel { } final patches = [ + PatchModel( + dateTime: DateTime(2024, 9, 14), + version: '1.32.1 Patch', + contents: [ + 'user crop bookmark', + 'stability and performance optimization', + ], + ), PatchModel( dateTime: DateTime(2024, 5, 26), version: '1.32.0 Minor', diff --git a/violet/lib/version/update_sync.dart b/violet/lib/version/update_sync.dart index 5d9528fe8..d922ef0e0 100644 --- a/violet/lib/version/update_sync.dart +++ b/violet/lib/version/update_sync.dart @@ -15,7 +15,7 @@ class UpdateSyncManager { // Current version static const int majorVersion = 1; static const int minorVersion = 32; - static const int patchVersion = 0; + static const int patchVersion = 1; static String get currentVersion => '$majorVersion.$minorVersion.$patchVersion'; diff --git a/violet/pubspec.yaml b/violet/pubspec.yaml index beb91cb52..892b85efc 100644 --- a/violet/pubspec.yaml +++ b/violet/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.32.0+0 +version: 1.32.1+0 publish_to: none