Skip to content

Commit

Permalink
version: Update version (1.16.4)
Browse files Browse the repository at this point in the history
  • Loading branch information
violet-dev committed Oct 10, 2021
1 parent 23e4c8c commit c07d0d1
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 15 deletions.
23 changes: 12 additions & 11 deletions lib/pages/main/info/lab/search_message.dart
Original file line number Diff line number Diff line change
Expand Up @@ -334,22 +334,23 @@ class _LabSearchMessageState extends State<LabSearchMessage> {
itemBuilder:
(context, Tuple3<String, String, int> suggestion) {
return ListTile(
contentPadding: EdgeInsets.symmetric(
vertical: 0.0, horizontal: 16.0),
title: Text(suggestion.item1),
trailing: Text(
suggestion.item3.toString() + '회',
style: TextStyle(color: Colors.grey, fontSize: 10.0),
),
dense: true,
contentPadding:
EdgeInsets.symmetric(vertical: 0.0, horizontal: 16.0),
title: Text(suggestion.item1),
trailing: Text(
suggestion.item3.toString() + '회',
style: TextStyle(color: Colors.grey, fontSize: 10.0),
),
dense: true,
);
},
direction: AxisDirection.up,
onSuggestionSelected: (suggestion) {
text.text = suggestion.item1;
setState(() {});
Future.delayed(Duration(milliseconds: 100)).then((value) async {
_onModifiedText();
Future.delayed(Duration(milliseconds: 100))
.then((value) async {
_onModifiedText();
});
},
hideOnEmpty: true,
Expand All @@ -369,7 +370,7 @@ class _LabSearchMessageState extends State<LabSearchMessage> {
onPressed: () async {
await showOkDialog(
context,
'대사를 검색해 작품을 찾아보세요! 현재 2021.01.01 ~ 2021.09.15 기간에 업로드된 작품만 지원됩니다.',
'대사를 검색해 작품을 찾아보세요! 현재 2019.01.01 ~ 2021.09.15 기간에 업로드된 작품만 지원됩니다.',
'대사 검색기 (베타)');
},
),
Expand Down
5 changes: 4 additions & 1 deletion lib/pages/main/patchnote/patchnote_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,13 @@ class PatchModel {

final patches = [
PatchModel(
dateTime: DateTime(2021, 10, 00),
dateTime: DateTime(2021, 10, 11),
version: '1.16.4 Patch Update <== Latest',
contents: [
'optimize global comments',
'optimize critical widgets',
'add autocomplete to search-message',
'fix viewer 1px missmatch bug',
],
),
PatchModel(
Expand Down
2 changes: 1 addition & 1 deletion lib/pages/settings/version_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class VersionViewPage extends StatelessWidget {
style: TextStyle(fontSize: 30),
),
Text(
'1.16.3',
'1.16.4',
style: TextStyle(fontSize: 20),
),
Text(''),
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 = 16;
static const int patchVersion = 3;
static const int patchVersion = 4;

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.16.3+0
version: 1.16.4+0

publish_to: none

Expand Down

0 comments on commit c07d0d1

Please sign in to comment.