This commit is contained in:
wanghongenpin
2026-01-30 18:11:16 +08:00
parent 40be67290c
commit 02bc02880c
6 changed files with 24 additions and 20 deletions

View File

@@ -93,7 +93,7 @@ class _DesktopHomePagePageState extends State<DesktopHomePage> implements EventL
proxyServer.addListener(this);
panel = NetworkTabController(tabStyle: const TextStyle(fontSize: 16), proxyServer: proxyServer);
if (widget.appConfiguration.upgradeNoticeV24) {
if (widget.appConfiguration.upgradeNoticeV25) {
WidgetsBinding.instance.addPostFrameCallback((_) {
showUpgradeNotice();
});
@@ -162,7 +162,7 @@ class _DesktopHomePagePageState extends State<DesktopHomePage> implements EventL
actions: [
TextButton(
onPressed: () {
widget.appConfiguration.upgradeNoticeV24 = false;
widget.appConfiguration.upgradeNoticeV25 = false;
widget.appConfiguration.flushConfig();
Navigator.pop(context);
},
@@ -181,8 +181,9 @@ class _DesktopHomePagePageState extends State<DesktopHomePage> implements EventL
'3. 脚本支持远程URL获取执行\n'
'4. HTTP Header 展示增加文本和表格切换;\n'
'5. 增加 Request Param 列表展示;\n'
'6. 应用过滤列表增加是否显示系统应用;\n'
'7. 更新JSON深色主题色以提高可见度和美观度\n'
'6. 添加zlib解码支持\n'
'7. 应用过滤列表增加是否显示系统应用\n'
'8. 更新JSON深色主题色以提高可见度和美观度\n'
: 'Note: HTTPS capture is disabled by default — please install the certificate before enabling HTTPS capture.\n'
'Click the HTTPS capture (lock) icon, choose "Install Root Certificate", and follow the prompts to complete installation.\n\n'
'1. Added import/export for Favorites.\n'
@@ -190,8 +191,9 @@ class _DesktopHomePagePageState extends State<DesktopHomePage> implements EventL
'3. Scripts can now be fetched from remote URLs and executed.\n'
'4. HTTP header view now supports switching between text and table modes.\n'
'5. Added a Request Params list view.\n'
'6. App filter list now includes an option to show system apps.\n'
'7. Updated JSON dark-theme colors for better visibility and appearance.\n',
'6. Add zlib decoding support.\n'
'7. App filter list now includes an option to show system apps.\n'
'8. Updated JSON dark-theme colors for better visibility and appearance.\n',
style: const TextStyle(fontSize: 14))));
});
}