Skip to content

Commit 9ac4809

Browse files
committed
release: v0.5.0
1 parent 1a1f649 commit 9ac4809

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

lib/global/global.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import 'package:meread/utils/font_manager.dart';
22
import 'package:shared_preferences/shared_preferences.dart';
33

44
late SharedPreferences prefs;
5-
String applicationVersion = 'v0.4.4';
5+
String applicationVersion = 'v0.5.0';
66

77
Future<void> init() async {
88
prefs = await SharedPreferences.getInstance();

lib/l10n/app_zh.arb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"feedAlreadyExists": "订阅源已存在",
2727
"unableToParseFeed": "无法解析订阅源",
2828
"updateFailed": "更新失败",
29-
"about": "关于",
29+
"about": "关于应用",
3030
"contactAuthor": "联系作者",
3131
"sourceAddress": "开源地址",
3232
"blockRules": "屏蔽规则",

lib/routes/setting_page/setting_page.dart

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -181,18 +181,6 @@ class _SettingPageState extends State<SettingPage> {
181181
subtitle: Text(AppLocalizations.of(context)!.getLatestVersion),
182182
onTap: checkUpdate,
183183
),
184-
ListTile(
185-
leading: const Icon(Icons.android_outlined),
186-
iconColor: Theme.of(context).textTheme.bodyLarge!.color,
187-
title: Text(AppLocalizations.of(context)!.about),
188-
subtitle:
189-
Text(AppLocalizations.of(context)!.contactAndOpenSource),
190-
onTap: () {
191-
Navigator.push(context, CupertinoPageRoute(builder: (context) {
192-
return const AboutPage();
193-
}));
194-
},
195-
),
196184
ListTile(
197185
leading: const Icon(Icons.privacy_tip_outlined),
198186
iconColor: Theme.of(context).textTheme.bodyLarge!.color,
@@ -220,6 +208,18 @@ class _SettingPageState extends State<SettingPage> {
220208
'© 2022 - 2023 ${AppLocalizations.of(context)!.meRead}. All Rights Reserved',
221209
),
222210
),
211+
ListTile(
212+
leading: const Icon(Icons.android_outlined),
213+
iconColor: Theme.of(context).textTheme.bodyLarge!.color,
214+
title: Text(AppLocalizations.of(context)!.about),
215+
subtitle:
216+
Text(AppLocalizations.of(context)!.contactAndOpenSource),
217+
onTap: () {
218+
Navigator.push(context, CupertinoPageRoute(builder: (context) {
219+
return const AboutPage();
220+
}));
221+
},
222+
),
223223
],
224224
),
225225
),

pubspec.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -321,10 +321,10 @@ packages:
321321
dependency: transitive
322322
description:
323323
name: platform
324-
sha256: "4a451831508d7d6ca779f7ac6e212b4023dd5a7d08a27a63da33756410e32b76"
324+
sha256: "57c07bf82207aee366dfaa3867b3164e4f03a238a461a11b0e8a3a510d51203d"
325325
url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/"
326326
source: hosted
327-
version: "3.1.0"
327+
version: "3.1.1"
328328
plugin_platform_interface:
329329
dependency: transitive
330330
description:

pubspec.yaml

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

2222
environment:
2323
sdk: ">=2.18.2 <3.0.0"

0 commit comments

Comments
 (0)