mirror of
https://github.com/weyne85/rustdesk.git
synced 2025-10-29 17:00:05 +00:00
change download page to https://rustdesk.com/download
This commit is contained in:
@@ -319,7 +319,7 @@ class _DesktopHomePageState extends State<DesktopHomePage>
|
||||
"Status",
|
||||
"There is a newer version of ${bind.mainGetAppNameSync()} ${bind.mainGetNewVersion()} available.",
|
||||
"Click to download", () async {
|
||||
final Uri url = Uri.parse('https://rustdesk.com');
|
||||
final Uri url = Uri.parse('https://rustdesk.com/download');
|
||||
await launchUrl(url);
|
||||
});
|
||||
}
|
||||
|
||||
@@ -94,7 +94,7 @@ class _ConnectionPageState extends State<ConnectionPage> {
|
||||
? const SizedBox(height: 0)
|
||||
: InkWell(
|
||||
onTap: () async {
|
||||
final url = '$_updateUrl.apk';
|
||||
final url = 'https://rustdesk.com/download';
|
||||
if (await canLaunchUrl(Uri.parse(url))) {
|
||||
await launchUrl(Uri.parse(url));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user