Skip to content
This repository has been archived by the owner on Oct 6, 2024. It is now read-only.

Commit

Permalink
Add new logo (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdahlblom authored Mar 10, 2024
1 parent 912cf52 commit b2b8ebe
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 15 deletions.
14 changes: 4 additions & 10 deletions src/BIOSBuddy/BIOSBuddy.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyVersion>1.0.4</AssemblyVersion>
<OutputType>WinExe</OutputType>
Expand All @@ -8,7 +8,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<AssemblyName>BIOSBuddy</AssemblyName>
<PackageIcon>FlightPanels01.png</PackageIcon>
<PackageIcon>biosbuddy_logo2.png</PackageIcon>
<ApplicationIcon>Images\BIOSBuddy.ico</ApplicationIcon>
<PackageProjectUrl>https://github.com/DCS-Skunkworks/BIOSBuddy</PackageProjectUrl>
<Description>DCS-BIOS Buddy</Description>
Expand All @@ -23,10 +23,8 @@
<ItemGroup>
<None Remove="Images\112_RefreshArrow_Green_32x32_72.png" />
<None Remove="Images\arduino_logo_simple.png" />
<None Remove="Images\biosbuddy_logo2.png" />
<None Remove="Images\clear_search_result.png" />
<None Remove="Images\FlightPanels01.png" />
<None Remove="Images\FlightPanels01_128.png" />
<None Remove="Images\flightpanels02_8Rc_icon.ico" />
<None Remove="Images\gear-image.png" />
<None Remove="Images\search_controls.png" />
</ItemGroup>
Expand All @@ -41,12 +39,8 @@
<ProjectReference Include="..\DCSFPCommon\src\ClassLibraryCommon\ClassLibraryCommon.csproj" />
<ProjectReference Include="..\DCSFPCommon\src\DCS-BIOS\DCS-BIOS.csproj" />
<Resource Include="Images\112_RefreshArrow_Green_32x32_72.png" />
<Resource Include="Images\biosbuddy_logo2.png" />
<Resource Include="Images\clear_search_result.png" />
<Resource Include="Images\FlightPanels01.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</Resource>
<Resource Include="Images\FlightPanels01_128.png" />
<Resource Include="Images\gear-image.png" />
<Resource Include="Images\search_controls.png" />
</ItemGroup>
Expand Down
Binary file modified src/BIOSBuddy/Images/BIOSBuddy.ico
Binary file not shown.
Binary file removed src/BIOSBuddy/Images/FlightPanels01.png
Binary file not shown.
Binary file removed src/BIOSBuddy/Images/FlightPanels01_128.png
Binary file not shown.
Binary file added src/BIOSBuddy/Images/biosbuddy_logo2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/BIOSBuddy/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
SizeChanged="MainWindow_OnSizeChanged"
WindowStartupLocation="Manual"
KeyDown="MainWindow_OnKeyDown"
Icon="/BIOSBuddy;component/Images/FlightPanels01.png" >
Icon="/BIOSBuddy;component/Images/biosbuddy_logo2.png" >

<Grid >
<Grid.RowDefinitions>
Expand Down
2 changes: 1 addition & 1 deletion src/BIOSBuddy/Windows/ArduinoWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Title="Arduino code" Height="400" Width="Auto"
Loaded="ArduinoWindow_OnLoaded"
WindowStartupLocation="CenterScreen"
KeyDown="ArduinoWindow_OnKeyDown" KeyUp="ArduinoWindow_OnKeyUp" Icon="/Images/FlightPanels01.png">
KeyDown="ArduinoWindow_OnKeyDown" KeyUp="ArduinoWindow_OnKeyUp" Icon="/Images/biosbuddy_logo2.png">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="30" />
Expand Down
2 changes: 1 addition & 1 deletion src/BIOSBuddy/Windows/GlobalSearchWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Title="Search in all dcs-bios modules" Height="500" Width="600"
Loaded="GlobalSearchWindow_OnLoaded"
WindowStartupLocation="CenterOwner"
KeyDown="GlobalSearchWindow_OnKeyDown" KeyUp="GlobalSearchWindow_OnKeyUp" Icon="/Images/FlightPanels01.png">
KeyDown="GlobalSearchWindow_OnKeyDown" KeyUp="GlobalSearchWindow_OnKeyUp" Icon="/Images/biosbuddy_logo2.png">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="30" />
Expand Down
2 changes: 1 addition & 1 deletion src/BIOSBuddy/Windows/LuaWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Title="Lua code" Height="400" Width="Auto"
Loaded="LuaWindow_OnLoaded"
WindowStartupLocation="CenterScreen"
KeyDown="LuaWindow_OnKeyDown" KeyUp="LuaWindow_OnKeyUp" Icon="/Images/FlightPanels01.png">
KeyDown="LuaWindow_OnKeyDown" KeyUp="LuaWindow_OnKeyUp" Icon="/Images/biosbuddy_logo2.png">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="30" />
Expand Down
2 changes: 1 addition & 1 deletion src/BIOSBuddy/Windows/SettingsWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Title="Settings" Height="450" Width="600"
Loaded="SettingsWindow_OnLoaded"
WindowStartupLocation="CenterScreen"
KeyDown="SettingsWindow_OnKeyDown" Icon="/Images/FlightPanels01.png">
KeyDown="SettingsWindow_OnKeyDown" Icon="/Images/biosbuddy_logo2.png">
<Grid Margin="-4,0,4,0">
<Grid.RowDefinitions>
<RowDefinition Height="20*"/>
Expand Down

0 comments on commit b2b8ebe

Please sign in to comment.