Skip to content

Commit

Permalink
Fixed bad url
Browse files Browse the repository at this point in the history
  • Loading branch information
BigSpice committed Jan 24, 2024
1 parent 926db0a commit e8bbff6
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
6 changes: 3 additions & 3 deletions VTOL_2.0.0/Pages/Page_Tools.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -709,12 +709,12 @@

<Label Margin="10,180,0,88" Content="NINJA RIPPER" FontSize="22" Foreground="White" HorizontalContentAlignment="Left" HorizontalAlignment="Left" Width="297" Background="{x:Null}"/>
<Border CornerRadius="5,5,9,9" Margin="0,0,0,127">
<ui:Button ToolTip="{x:Static properties:Language.Page_Tools_WebPage_}" x:Name="NINJA_RP_PAGE" Margin="447,0,0,0" VerticalAlignment="Top" Background="#CC3E3E3E" BorderBrush="{x:Null}" Height="24" Icon="BookInformation24" Padding="0,0,0,0" Width="24" ClickMode="Press" </ui:Button>
<ui:Button ToolTip="{x:Static properties:Language.Page_Tools_WebPage_}" x:Name="NINJA_RP_PAGE" Margin="447,0,0,0" VerticalAlignment="Top" Background="#CC3E3E3E" BorderBrush="{x:Null}" Height="24" Icon="BookInformation24" Padding="0,0,0,0" Width="24" ClickMode="Press" Click="NINJA_RP_PAGE_Click"></ui:Button>
<Border.Background>
<ImageBrush Stretch="UniformToFill" ImageSource="/Resources/Resource_Static/NINJA_RP.png" TileMode="None"/>
</Border.Background>
</Border>
<ui:Button x:Name="NINJA_RP_FOLDER" VerticalAlignment="Top" Icon="Open24" HorizontalAlignment="Stretch" Background="#FFAF7800" Margin="312,161,10,0" Content="{x:Static properties:Language.Page_Tools_OpenFolder}" Foreground="White" BorderBrush="#029C9C9C" OverridesDefaultStyle="False" ClickMode="Press" Appearance="Primary" IconFilled="True" >
<ui:Button x:Name="NINJA_RP_FOLDER" VerticalAlignment="Top" Icon="Open24" HorizontalAlignment="Stretch" Background="#FFAF7800" Margin="312,161,10,0" Content="{x:Static properties:Language.Page_Tools_OpenFolder}" Foreground="White" BorderBrush="#029C9C9C" OverridesDefaultStyle="False" ClickMode="Press" Appearance="Primary" IconFilled="True" Click="NINJA_RP_FOLDER_Click" >
<ui:Button.MouseOverBackground>
<SolidColorBrush Color="#FF795300" Opacity="0.9"/>
</ui:Button.MouseOverBackground>
Expand All @@ -723,7 +723,7 @@
</ui:Button.PressedBackground>

</ui:Button>
<ui:Button x:Name="NINJA_RP_INSTALL" VerticalAlignment="Top" Icon="ArrowDown32" HorizontalAlignment="Stretch" Background="#FF5B0606" Margin="10,237,10,0" Height="55" Content="Install" BorderBrush="{x:Null}" ClickMode="Press" />
<ui:Button x:Name="NINJA_RP_INSTALL" VerticalAlignment="Top" Icon="ArrowDown32" HorizontalAlignment="Stretch" Background="#FF5B0606" Margin="10,237,10,0" Height="55" Content="Install" BorderBrush="{x:Null}" ClickMode="Press" Click="NINJA_RP_INSTALL_Click"/>
<Label Margin="10,211,421,68" Content="V1.7.1" FontSize="14" Foreground="#FFB7B7B7" HorizontalContentAlignment="Center" Background="{x:Null}"/>

</Grid >
Expand Down
2 changes: 1 addition & 1 deletion VTOL_2.0.0/Pages/Page_Tools.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3627,7 +3627,7 @@ private void NINJA_RP_INSTALL_Click(object sender, RoutedEventArgs e)
}
else
{
Download_Zip_To_Path("NINJA_RIP", "https://github.com/BigSpice/MISC_STORE/raw/main/NINJA_RIP.zip");
Download_Zip_To_Path("NINJA_RIP", "https://github.com/BigSpice/VTOL/raw/master/%5BTitanfall2_Downloadable_Tools%5D/NINJA_RIP.zip");


}
Expand Down

0 comments on commit e8bbff6

Please sign in to comment.