Skip to content

Commit

Permalink
release: v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gvenusleo committed Aug 20, 2023
1 parent 1a1f649 commit 9ac4809
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion lib/global/global.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import 'package:meread/utils/font_manager.dart';
import 'package:shared_preferences/shared_preferences.dart';

late SharedPreferences prefs;
String applicationVersion = 'v0.4.4';
String applicationVersion = 'v0.5.0';

Future<void> init() async {
prefs = await SharedPreferences.getInstance();
Expand Down
2 changes: 1 addition & 1 deletion lib/l10n/app_zh.arb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"feedAlreadyExists": "订阅源已存在",
"unableToParseFeed": "无法解析订阅源",
"updateFailed": "更新失败",
"about": "关于",
"about": "关于应用",
"contactAuthor": "联系作者",
"sourceAddress": "开源地址",
"blockRules": "屏蔽规则",
Expand Down
24 changes: 12 additions & 12 deletions lib/routes/setting_page/setting_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -181,18 +181,6 @@ class _SettingPageState extends State<SettingPage> {
subtitle: Text(AppLocalizations.of(context)!.getLatestVersion),
onTap: checkUpdate,
),
ListTile(
leading: const Icon(Icons.android_outlined),
iconColor: Theme.of(context).textTheme.bodyLarge!.color,
title: Text(AppLocalizations.of(context)!.about),
subtitle:
Text(AppLocalizations.of(context)!.contactAndOpenSource),
onTap: () {
Navigator.push(context, CupertinoPageRoute(builder: (context) {
return const AboutPage();
}));
},
),
ListTile(
leading: const Icon(Icons.privacy_tip_outlined),
iconColor: Theme.of(context).textTheme.bodyLarge!.color,
Expand Down Expand Up @@ -220,6 +208,18 @@ class _SettingPageState extends State<SettingPage> {
'© 2022 - 2023 ${AppLocalizations.of(context)!.meRead}. All Rights Reserved',
),
),
ListTile(
leading: const Icon(Icons.android_outlined),
iconColor: Theme.of(context).textTheme.bodyLarge!.color,
title: Text(AppLocalizations.of(context)!.about),
subtitle:
Text(AppLocalizations.of(context)!.contactAndOpenSource),
onTap: () {
Navigator.push(context, CupertinoPageRoute(builder: (context) {
return const AboutPage();
}));
},
),
],
),
),
Expand Down
4 changes: 2 additions & 2 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -321,10 +321,10 @@ packages:
dependency: transitive
description:
name: platform
sha256: "4a451831508d7d6ca779f7ac6e212b4023dd5a7d08a27a63da33756410e32b76"
sha256: "57c07bf82207aee366dfaa3867b3164e4f03a238a461a11b0e8a3a510d51203d"
url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/"
source: hosted
version: "3.1.0"
version: "3.1.1"
plugin_platform_interface:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix.
version: 0.4.4+20
version: 0.5.0+21

environment:
sdk: ">=2.18.2 <3.0.0"
Expand Down

0 comments on commit 9ac4809

Please sign in to comment.