Skip to content

Commit

Permalink
version: Update version (1.28.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
violet-dev committed Oct 9, 2022
1 parent bd24f3b commit 7ede940
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions lib/pages/main/patchnote/patchnote_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion lib/version/update_sync.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 7ede940

Please sign in to comment.