Skip to content

Commit

Permalink
Completed last bug fixes for the day. satisfied.
Browse files Browse the repository at this point in the history
plugins work later
  • Loading branch information
BigSpice committed Oct 21, 2023
1 parent 4907ec0 commit 79a8b71
Show file tree
Hide file tree
Showing 15 changed files with 17 additions and 4 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
10 changes: 7 additions & 3 deletions VTOL_2.0.0/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@
</Window.Resources>
<Window.Background>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="#FF003125" Offset="0.957"/>
<GradientStop Color="#FF000603" Offset="0.31"/>
<GradientStop Color="#FF00312E" Offset="1"/>
<GradientStop Color="#FF000603" Offset="0.2"/>
</LinearGradientBrush>
</Window.Background>

Expand Down Expand Up @@ -170,7 +170,11 @@
</ContextMenu>
</ui:NotifyIcon.Menu>
</ui:NotifyIcon>

<Border Opacity="0.92">
<Border.Background>
<ImageBrush ImageSource="/Resources/Backgrounds/Home_Nav.png" Stretch="UniformToFill" TileMode="Tile"/>
</Border.Background>
</Border>
<Border x:Name="Content_Container_Pages"
Grid.Column="1"
CornerRadius="8,0,0,0" Margin="0,35,0,-5" Height="660">
Expand Down
3 changes: 3 additions & 0 deletions VTOL_2.0.0/Pages/Page_Home.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,9 @@
</TextBlock.RenderTransform>
</TextBlock>
<Image Width="118" Source="/Resources/Icons/Titanfall2_Icon.ico" Stretch="Uniform" RenderTransformOrigin="0.5,0.5" Margin="4,0,0,0" Height="27">
<Image.CacheMode>
<BitmapCache EnableClearType="False"/>
</Image.CacheMode>
<Image.RenderTransform>
<TransformGroup>
<ScaleTransform ScaleX="1.1" ScaleY="1.3"/>
Expand Down
1 change: 1 addition & 0 deletions VTOL_2.0.0/Pages/Page_Home.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,7 @@ public Page_Home()
BitmapImage bitmap = new BitmapImage();

bitmap.BeginInit();
bitmap.CacheOption = BitmapCacheOption.OnLoad;
bitmap.UriSource = new Uri(_Images[random.Next(0, _Images.Count - 1)]);
bitmap.EndInit();
Image.Source = bitmap;
Expand Down
3 changes: 2 additions & 1 deletion VTOL_2.0.0/Pages/Page_Thunderstore.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3312,7 +3312,8 @@ public async Task Unpack_To_Location_Custom(string Target_Zip, string Destinatio

}

////////////////////For Pluuuugins///////////////////////////
//todo plugins
////////////////////For Pluuuugins///////////////////////////
//else if (Script.Length == 0)
//{
// Update_ActionCard_Progress(Action_Card_, 40);
Expand Down
Binary file added VTOL_2.0.0/Resources/Backgrounds/Home_Nav.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions VTOL_2.0.0/VTOL.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,7 @@
<None Remove="Resources\Backgrounds\DBG5Qi9U0AEphM7.jpg" />
<None Remove="Resources\Backgrounds\FAqBg.png" />
<None Remove="Resources\Backgrounds\HD-wallpaper-titanfall-2-colony-reborn-dlc-titanfall-2-games-2016-games-xbox-games.jpg" />
<None Remove="Resources\Backgrounds\Home_Nav.png" />
<None Remove="Resources\Backgrounds\jack.jpg" />
<None Remove="Resources\Backgrounds\profiles_bg.png" />
<None Remove="Resources\Backgrounds\Skin_How_To_BG.png" />
Expand Down Expand Up @@ -766,6 +767,9 @@
<Resource Include="Resources\Backgrounds\Backgrounds_Home_Page\wallpaper(6).jpg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\Backgrounds\Home_Nav.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\Backgrounds\profiles_bg.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Resource>
Expand Down

0 comments on commit 79a8b71

Please sign in to comment.