mirror of
https://github.com/Cateners/tiny_computer.git
synced 2026-05-20 16:35:47 +08:00
Update code to v1.0.24, fix hant, update hangover
This commit is contained in:
@@ -4,8 +4,8 @@ echo "正在更新软件包..."
|
||||
sudo apt update
|
||||
sudo apt upgrade -y
|
||||
|
||||
hangover_url="https://github.com/AndreRH/hangover/releases/download/hangover-9.20.1/hangover_9.20.1_debian12_bookworm_arm64.tar"
|
||||
latest_version="10.6.1"
|
||||
hangover_url="https://github.com/AndreRH/hangover/releases/download/hangover-10.10.1/hangover_10.10.1_debian12_bookworm_arm64.tar"
|
||||
latest_version="10.10.1"
|
||||
|
||||
mirror_sites=(
|
||||
"https://gh.llkk.cc/"
|
||||
|
||||
@@ -72,7 +72,7 @@
|
||||
"installHangoverLatest": "Install Hangover Latest (may fail)",
|
||||
"uninstallHangover": "Uninstall Hangover",
|
||||
"clearWineData": "Clear Wine Data",
|
||||
"wineCommandsHint": "Common Wine commands. Click to launch GUI and wait patiently.\n\nTypical launch times:\nTiger T7510 6GB: over 1 minute\nSnapdragon 870 12GB: ~10 seconds",
|
||||
"wineCommandsHint": "Common Wine commands. Click to launch GUI and wait patiently.\n\nNote: DXVK is enabled by default. If the program crashes, try disabling it.\n\nTypical launch times:\nTiger T7510 6GB: over 1 minute\nSnapdragon 870 12GB: ~10 seconds",
|
||||
"switchToJapanese": "Switch System to Japanese",
|
||||
"userManual": "User Manual",
|
||||
"openSourceLicenses": "Open Source Licenses",
|
||||
|
||||
@@ -72,7 +72,7 @@
|
||||
"installHangoverLatest": "安装Hangover最新版(可能出错)",
|
||||
"uninstallHangover": "卸载Hangover",
|
||||
"clearWineData": "清空Wine数据",
|
||||
"wineCommandsHint": "Wine的常用指令。点击后前往图形界面耐心等待。\n\n任意程序启动参考时间:\n虎贲T7510 6GB 超过一分钟\n骁龙870 12GB 约10秒\n",
|
||||
"wineCommandsHint": "Wine的常用指令。点击后前往图形界面耐心等待。\n\n注:DXVK默认为开启状态,如程序崩溃可尝试关闭\n\n任意程序启动参考时间:\n虎贲T7510 6GB 超过一分钟\n骁龙870 12GB 约10秒\n",
|
||||
"switchToJapanese": "切换系统到日语",
|
||||
"userManual": "使用说明",
|
||||
"openSourceLicenses": "开源许可",
|
||||
|
||||
@@ -72,7 +72,7 @@
|
||||
"installHangoverLatest": "安裝 Hangover 最新版(可能有錯誤)",
|
||||
"uninstallHangover": "解除安裝 Hangover",
|
||||
"clearWineData": "清除 Wine 資料",
|
||||
"wineCommandsHint": "Wine 常用指令。點擊後進入圖形介面,請耐心等候。\n\n不同裝置啟動程式參考時間:\n虎賁 T7510 6GB 超過一分鐘\n驍龍 870 12GB 約 10 秒\n",
|
||||
"wineCommandsHint": "Wine 常用指令。點擊後進入圖形介面,請耐心等候。\n\n註:DXVK預設為開啟狀態,如程式崩潰可嘗試關閉\n\n不同裝置啟動程式參考時間:\n虎賁 T7510 6GB 超過一分鐘\n驍龍 870 12GB 約 10 秒\n",
|
||||
"switchToJapanese": "切換系統為日語",
|
||||
"userManual": "使用說明",
|
||||
"openSourceLicenses": "開源授權",
|
||||
|
||||
@@ -55,8 +55,30 @@ class MyApp extends StatelessWidget {
|
||||
],
|
||||
supportedLocales: const [
|
||||
Locale('en'),
|
||||
Locale('zh'), // 简体
|
||||
Locale('zh', 'Hant'), // 繁體
|
||||
Locale.fromSubtags(languageCode: 'zh'), // generic Chinese 'zh'
|
||||
Locale.fromSubtags(
|
||||
languageCode: 'zh',
|
||||
scriptCode: 'Hans',
|
||||
), // generic simplified Chinese 'zh_Hans'
|
||||
Locale.fromSubtags(
|
||||
languageCode: 'zh',
|
||||
scriptCode: 'Hant',
|
||||
), // generic traditional Chinese 'zh_Hant'
|
||||
Locale.fromSubtags(
|
||||
languageCode: 'zh',
|
||||
scriptCode: 'Hans',
|
||||
countryCode: 'CN',
|
||||
), // 'zh_Hans_CN'
|
||||
Locale.fromSubtags(
|
||||
languageCode: 'zh',
|
||||
scriptCode: 'Hant',
|
||||
countryCode: 'TW',
|
||||
), // 'zh_Hant_TW'
|
||||
Locale.fromSubtags(
|
||||
languageCode: 'zh',
|
||||
scriptCode: 'Hant',
|
||||
countryCode: 'HK',
|
||||
), // 'zh_Hant_HK'
|
||||
],
|
||||
theme: ThemeData(
|
||||
colorScheme: lightDynamic,
|
||||
@@ -486,7 +508,7 @@ sed -i -E "s@^(VNC_RESOLUTION)=.*@\\1=${w}x${h}@" \$(command -v startvnc)""");
|
||||
Text(AppLocalizations.of(context)!.hangoverDescription),
|
||||
const SizedBox.square(dimension: 8),
|
||||
Wrap(alignment: WrapAlignment.center, spacing: 4.0, runSpacing: 4.0, children: [
|
||||
OutlinedButton(style: D.commandButtonStyle, child: Text("${AppLocalizations.of(context)!.installHangoverStable}(10.6.1)"), onPressed: () async {
|
||||
OutlinedButton(style: D.commandButtonStyle, child: Text("${AppLocalizations.of(context)!.installHangoverStable}(10.10.1)"), onPressed: () async {
|
||||
Util.termWrite("bash ~/.local/share/tiny/extra/install-hangover-stable");
|
||||
G.pageIndex.value = 0;
|
||||
}),
|
||||
|
||||
10
pubspec.lock
10
pubspec.lock
@@ -77,18 +77,18 @@ packages:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
name: device_info_plus
|
||||
sha256: "0c6396126421b590089447154c5f98a5de423b70cfb15b1578fd018843ee6f53"
|
||||
sha256: "98f28b42168cc509abc92f88518882fd58061ea372d7999aecc424345c7bff6a"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "11.4.0"
|
||||
version: "11.5.0"
|
||||
device_info_plus_platform_interface:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: device_info_plus_platform_interface
|
||||
sha256: "0b04e02b30791224b31969eb1b50d723498f402971bff3630bca2ba839bd1ed2"
|
||||
sha256: e1ea89119e34903dca74b883d0dd78eb762814f97fb6c76f35e9ff74d261a18f
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "7.0.2"
|
||||
version: "7.0.3"
|
||||
dynamic_color:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
@@ -732,4 +732,4 @@ packages:
|
||||
version: "0.0.6"
|
||||
sdks:
|
||||
dart: ">=3.8.0 <4.0.0"
|
||||
flutter: ">=3.27.0"
|
||||
flutter: ">=3.29.0"
|
||||
|
||||
@@ -16,7 +16,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: 1.0.23+18
|
||||
version: 1.0.24+19
|
||||
|
||||
environment:
|
||||
sdk: '>=3.1.0 <4.0.0'
|
||||
@@ -43,7 +43,7 @@ dependencies:
|
||||
wakelock_plus: ^1.3.2
|
||||
dynamic_color: ^1.7.0
|
||||
network_info_plus: ^6.1.4
|
||||
device_info_plus: ^11.4.0
|
||||
device_info_plus: ^11.5.0
|
||||
flutter_localizations:
|
||||
sdk: flutter
|
||||
intl: any
|
||||
|
||||
Reference in New Issue
Block a user