Skip to content

Commit 5075551

Browse files
committed
v1.0.2 支持web版本前最后一个版本;修复删除文章页面不刷新问题
1 parent 5540e8a commit 5075551

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

mywords-flutter/lib/pages/home.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Home extends StatefulWidget {
1313
State<Home> createState() => _State();
1414
}
1515

16-
const appVersion = "1.0.1";
16+
const appVersion = "1.0.2";
1717

1818
class _State extends State<Home> {
1919
final PageController _pageController =

mywords-flutter/lib/widgets/article_list.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,11 @@ class _State extends State<ArticleListView> {
107107
if (!context.mounted) {
108108
return;
109109
}
110-
addToGlobalEvent(
111-
GlobalEvent(eventType: GlobalEventType.updateArticleList));
112110
myToast(context, respData.message);
113111
return;
114112
}
113+
addToGlobalEvent(
114+
GlobalEvent(eventType: GlobalEventType.updateArticleList));
115115
});
116116
// Then show a snackbar.
117117
ScaffoldMessenger.of(context).showSnackBar(SnackBar(

mywords-flutter/linux-deb/DEBIAN/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: mywords
2-
Version: 1.0.1
2+
Version: 1.0.2
33
Section: NetWork
44
Priority: optional
55
Architecture: amd64

mywords-flutter/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
1616
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
1717
# In Windows, build-name is used as the major, minor, and patch parts
1818
# of the product and file versions while build-number is used as the build suffix.
19-
version: 1.0.1+1
19+
version: 1.0.2+1
2020

2121
environment:
2222
sdk: '>=3.2.3 <4.0.0'

0 commit comments

Comments
 (0)