Changed UpdateDataUrl back to correct url

This commit is contained in:
Ben 2015-07-05 11:14:44 +01:00
parent 544b931477
commit aad34b1407
3 changed files with 2 additions and 5 deletions

View File

@ -1347,8 +1347,6 @@ namespace Filtration.Tests.Translators
Assert.AreEqual(new Color { R = 240, G = 200, B = 150, A = 255}, textColorBlockItem.Color);
}
[Test]
public void ReplaceColorBlockItemsFromString_SingleLine_ReplacesColorBlockBugTest()
{

View File

@ -25,7 +25,7 @@ namespace Filtration
private void Application_Startup(object sender, StartupEventArgs e)
{
//DispatcherUnhandledException += OnDispatcherUnhandledException;
DispatcherUnhandledException += OnDispatcherUnhandledException;
_container = new WindsorContainer();

View File

@ -13,8 +13,7 @@ namespace Filtration.Services
internal class UpdateCheckService : IUpdateCheckService
{
private readonly IHTTPService _httpService;
//private const string UpdateDataUrl = "http://ben-wallis.github.io/Filtration/filtration_version.xml";
private const string UpdateDataUrl = "http://xvar.net/filtration_version.xml";
private const string UpdateDataUrl = "http://ben-wallis.github.io/Filtration/filtration_version.xml";
public UpdateCheckService(IHTTPService httpService)
{