mirror of
https://mirror.ghproxy.com/https://github.com/StarCitizenToolBox/app.git
synced 2024-12-23 01:53:41 +08:00
fix
This commit is contained in:
parent
3a63f1acfa
commit
8db2766c19
@ -129,6 +129,12 @@ class SystemHelper {
|
|||||||
return r.stdout.toString().trim();
|
return r.stdout.toString().trim();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static Future<String> getCpuName() async {
|
||||||
|
final r = await Process.run(
|
||||||
|
"powershell", ["(Get-WmiObject -Class Win32_Processor).Name"]);
|
||||||
|
return r.stdout.toString().trim();
|
||||||
|
}
|
||||||
|
|
||||||
static Future<String> getGpuInfo() async {
|
static Future<String> getGpuInfo() async {
|
||||||
const cmd = r"""
|
const cmd = r"""
|
||||||
$adapterMemory = (Get-ItemProperty -Path "HKLM:\SYSTEM\ControlSet001\Control\Class\{4d36e968-e325-11ce-bfc1-08002be10318}\0*" -Name "HardwareInformation.AdapterString", "HardwareInformation.qwMemorySize" -Exclude PSPath -ErrorAction SilentlyContinue)
|
$adapterMemory = (Get-ItemProperty -Path "HKLM:\SYSTEM\ControlSet001\Control\Class\{4d36e968-e325-11ce-bfc1-08002be10318}\0*" -Name "HardwareInformation.AdapterString", "HardwareInformation.qwMemorySize" -Exclude PSPath -ErrorAction SilentlyContinue)
|
||||||
|
@ -84,7 +84,7 @@ class DownloaderDialogUIModel extends BaseUIModel {
|
|||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e is DioException && e.type != DioExceptionType.cancel) {
|
if (e is DioException && e.type != DioExceptionType.cancel) {
|
||||||
if (mounted) showToast(context!, "下载失败:$e");
|
Navigator.pop(context!, e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import 'dart:convert';
|
import 'dart:convert';
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
|
|
||||||
|
import 'package:dio/dio.dart';
|
||||||
import 'package:flutter/foundation.dart';
|
import 'package:flutter/foundation.dart';
|
||||||
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
||||||
import 'package:starcitizen_doctor/base/ui_model.dart';
|
import 'package:starcitizen_doctor/base/ui_model.dart';
|
||||||
@ -33,6 +34,7 @@ class ToolsUIModel extends BaseUIModel {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
Future loadData({bool skipPathScan = false}) async {
|
Future loadData({bool skipPathScan = false}) async {
|
||||||
|
if (isItemLoading) return;
|
||||||
items.clear();
|
items.clear();
|
||||||
notifyListeners();
|
notifyListeners();
|
||||||
if (!skipPathScan) {
|
if (!skipPathScan) {
|
||||||
@ -244,7 +246,7 @@ class ToolsUIModel extends BaseUIModel {
|
|||||||
|
|
||||||
Future<String> getSystemInfo() async {
|
Future<String> getSystemInfo() async {
|
||||||
return "系统:${await SystemHelper.getSystemName()}\n\n"
|
return "系统:${await SystemHelper.getSystemName()}\n\n"
|
||||||
"处理器:${await SystemHelper.getSystemCimInstance("Win32_Processor")}\n\n"
|
"处理器:${await SystemHelper.getCpuName()}\n\n"
|
||||||
"内存大小:${await SystemHelper.getSystemMemorySizeGB()}GB\n\n"
|
"内存大小:${await SystemHelper.getSystemMemorySizeGB()}GB\n\n"
|
||||||
"显卡信息:\n${await SystemHelper.getGpuInfo()}\n\n"
|
"显卡信息:\n${await SystemHelper.getGpuInfo()}\n\n"
|
||||||
"硬盘信息:\n${await SystemHelper.getDiskInfo()}\n\n";
|
"硬盘信息:\n${await SystemHelper.getDiskInfo()}\n\n";
|
||||||
@ -359,8 +361,11 @@ class ToolsUIModel extends BaseUIModel {
|
|||||||
if (r != null) {
|
if (r != null) {
|
||||||
if (r == "cancel") {
|
if (r == "cancel") {
|
||||||
return showToast(context!, "下载已取消,下载进度已保留,如果您无需恢复下载,请手动删除下载临时文件。");
|
return showToast(context!, "下载已取消,下载进度已保留,如果您无需恢复下载,请手动删除下载临时文件。");
|
||||||
|
} else if (r is DioException) {
|
||||||
|
showToast(context!, "下载失败:$r");
|
||||||
|
} else {
|
||||||
|
showToast(context!, "下载完毕,文件已保存到:$r");
|
||||||
}
|
}
|
||||||
showToast(context!, "下载完毕,文件已保存到:$r");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user