Skip to content

Commit

Permalink
# bug修复
Browse files Browse the repository at this point in the history
修复Github跳转链接错误的bug
  • Loading branch information
deretame committed Dec 14, 2024
1 parent 326e7f1 commit b8824a9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions lib/page/home/view/category_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,11 @@ class _CategoryPageState extends State<CategoryPage>
TextButton(
child: Text('前往 GitHub'),
onPressed: () {
launchUrl(Uri.parse(
'https://github.com/deretame/Breeze/releases?page=4'));
launchUrl(
Uri.parse(
'https://github.com/deretame/Breeze/releases/tag/$cloudVersion',
),
);
Navigator.of(context).pop();
},
),
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: zephyr
description: "使用Flutter开发的三方哔咔应用。"
version: 1.9.4+31
version: 1.9.5+32

environment:
sdk: ">=3.0.0"
Expand Down

0 comments on commit b8824a9

Please sign in to comment.