Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
share121 committed Sep 7, 2024
1 parent 25c1637 commit 9e0ab7e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.14.0+18

1. 防止换页太快

## 2.13.0+17

1. 优化加载机制
Expand Down
2 changes: 1 addition & 1 deletion lib/pages/notifications_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class NotificationsPage extends StatefulWidget {

class _NotificationsPageState extends State<NotificationsPage>
with AutomaticKeepAliveClientMixin {
final fetchData = retryThrottle(c.fetchData, 3.s);
final fetchData = retryThrottle(c.fetchData);

@override
Widget build(BuildContext context) {
Expand Down
2 changes: 1 addition & 1 deletion lib/pages/search_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class _SearchPageState extends State<SearchPage>
super.dispose();
}

final fetchData = retryThrottle(c.searchData, 3.s);
final fetchData = retryThrottle(c.searchData);

@override
Widget build(BuildContext context) {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: inter_knot
description: 绳网是一个游戏、技术交流平台
publish_to: none
version: 2.13.0+17
version: 2.14.0+18
repository: https://github.com/share121/inter_knot

environment:
Expand Down
3 changes: 2 additions & 1 deletion release-content.md
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
1. 优化加载机制
1. 防止换页太快
2. 优化加载机制

0 comments on commit 9e0ab7e

Please sign in to comment.