mirror of
https://github.com/Cateners/tiny_computer.git
synced 2026-05-20 08:35:46 +08:00
Update discussion link, hint for compile/fast command/file access, fix x11, using release keystore, update code to v1.0.99
This commit is contained in:
@@ -444,6 +444,9 @@ sed -i -E "s@^(VNC_RESOLUTION)=.*@\\1=${w}x${h}@" \$(command -v startvnc)""");
|
||||
OutlinedButton(style: D.commandButtonStyle, child: Text(AppLocalizations.of(context)!.requestAllFilesAccess), onPressed: () {
|
||||
Permission.manageExternalStorage.request();
|
||||
}),
|
||||
OutlinedButton(style: D.commandButtonStyle, child: Text(AppLocalizations.of(context)!.fileAccessGuide), onPressed: () {
|
||||
launchUrl(Uri.parse("https://gitee.com/caten/tc-hints/blob/master/pool/fileaccess.md"), mode: LaunchMode.externalApplication);
|
||||
}),
|
||||
]),
|
||||
const SizedBox.square(dimension: 16),
|
||||
],))),
|
||||
@@ -607,6 +610,8 @@ class _InfoPageState extends State<InfoPage> {
|
||||
}),
|
||||
]),
|
||||
const SizedBox.square(dimension: 16),
|
||||
Text(AppLocalizations.of(context)!.updateRequest),
|
||||
const SizedBox.square(dimension: 16),
|
||||
Wrap(alignment: WrapAlignment.center, spacing: 4.0, runSpacing: 4.0, children: D.links
|
||||
.asMap().entries.map<Widget>((e) {
|
||||
return OutlinedButton(style: D.commandButtonStyle, child: Text(Util.getl10nText(e.value["name"]!, context)), onPressed: () {
|
||||
@@ -1193,6 +1198,9 @@ class _FastCommandsState extends State<FastCommands> {
|
||||
command = value;
|
||||
}),
|
||||
])), actions: [
|
||||
TextButton(onPressed:() {
|
||||
launchUrl(Uri.parse("https://gitee.com/caten/tc-hints/blob/master/pool/extracommand.md"), mode: LaunchMode.externalApplication);
|
||||
}, child: Text(AppLocalizations.of(context)!.more)),
|
||||
TextButton(onPressed:() {
|
||||
Navigator.of(context).pop();
|
||||
}, child: Text(AppLocalizations.of(context)!.cancel)),
|
||||
|
||||
Reference in New Issue
Block a user