Fixed Needed Data wont download, Updated Teaser

This commit is contained in:
NicoAICP 2020-10-17 14:54:24 +02:00
parent df2bc0b76f
commit 49f1c491ea
3 changed files with 9 additions and 3 deletions

View file

@ -1807,7 +1807,7 @@ namespace UWUVCI_AIO_WPF
}
else
{
return $@"https://github.com/Hotbrawl20/UWUVCI-VCB/raw/master/" + toolname;
return $@"https://github.com/Hotbrawl20/UWUVCI-VCB/raw/master/" + toolname.Replace("bin\\bases\\", "");
}
}
@ -1821,7 +1821,7 @@ namespace UWUVCI_AIO_WPF
}
else
{
return $@"https://github.com/Hotbrawl20/UWUVCI-VCB/raw/master/" + toolname;
return $@"https://github.com/Hotbrawl20/UWUVCI-VCB/raw/master/" + toolname.Replace("bin\\bases\\","");
}
}

View file

@ -9,7 +9,7 @@
Title="Teaser" >
<Grid>
<TextBlock x:Name="tb" TextWrapping="Wrap" Text="Under Construction " FontSize="20" Height="29" HorizontalAlignment="Center" VerticalAlignment="Center" TextAlignment="Center" Width="1110" />
<TextBlock x:Name="tb" TextWrapping="Wrap" Text="Under Construction " FontSize="20" Height="28" HorizontalAlignment="Center" VerticalAlignment="Center" TextAlignment="Center" Width="179" PreviewMouseLeftButtonDown="tb_PreviewMouseLeftButtonDown" Margin="467,282,489,290" Cursor="Hand"/>
<Image Source="/UI/Images/rarch.png" Opacity="0.1" Margin="997,473,23,10"/>
</Grid>

View file

@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
@ -24,5 +25,10 @@ namespace UWUVCI_AIO_WPF.UI.Frames
{
InitializeComponent();
}
private void tb_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
Process.Start("https://www.reddit.com/r/WiiUHacks/comments/jchcls/poc_retroarch_autoboot_starts_rom_automatically/");
}
}
}