From eae1d47ba6c2ae22bd1b73c03f560ecef810b535 Mon Sep 17 00:00:00 2001 From: Travis Nickles Date: Fri, 28 Dec 2018 19:02:56 -0600 Subject: [PATCH] Changed remote URL for update file check --- DS4Windows/DS4Forms/DS4Form.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DS4Windows/DS4Forms/DS4Form.cs b/DS4Windows/DS4Forms/DS4Form.cs index 7f48315..21a9c31 100644 --- a/DS4Windows/DS4Forms/DS4Form.cs +++ b/DS4Windows/DS4Forms/DS4Form.cs @@ -288,7 +288,7 @@ namespace DS4Windows nUDUpdateTime.Value = checkwhen; } - Uri url = new Uri("http://23.239.26.40/ds4windows/files/builds/newest.txt"); // Sorry other devs, gonna have to find your own server + Uri url = new Uri("https://raw.githubusercontent.com/Ryochan7/DS4Windows/jay/DS4Windows/newest.txt"); // Sorry other devs, gonna have to find your own server if (checkwhen > 0 && DateTime.Now >= LastChecked + TimeSpan.FromHours(checkwhen)) { @@ -2058,7 +2058,7 @@ Properties.Resources.DS4Update, MessageBoxButtons.YesNo, MessageBoxIcon.Question private void lLBUpdate_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { // Sorry other devs, gonna have to find your own server - Uri url = new Uri("http://23.239.26.40/ds4windows/files/builds/newest.txt"); + Uri url = new Uri("https://raw.githubusercontent.com/Ryochan7/DS4Windows/jay/DS4Windows/newest.txt"); WebClient wct = new WebClient(); wct.DownloadFileAsync(url, appdatapath + "\\version.txt"); wct.DownloadFileCompleted += (sender2, e2) => TaskRunner.Run(() => wct_DownloadFileCompleted(sender2, e2));