Skip to content

Commit

Permalink
Add new icon and update form start positions
Browse files Browse the repository at this point in the history
- Updated `AIDemon.csproj` to include `fox.ico` as the application icon.
- Modified `AIDemon.sln` to add a new project configuration for `AIDemon.Setup`.
- Set `StartPosition` of `MainForm` to `FormStartPosition.CenterScreen` in `MainForm.Designer.cs`.
- Set `StartPosition` of `QueryResultForm` to `FormStartPosition.CenterParent` in `QueryResultForm.Designer.cs`.
- Set `StartPosition` of `SettingsForm` to `FormStartPosition.CenterParent` in `SettingsForm.Designer.cs`.
  • Loading branch information
Mysttic committed Jul 25, 2024
1 parent 9ef7b67 commit 53c3a0a
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 1 deletion.
5 changes: 5 additions & 0 deletions AIDemon.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,13 @@
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<PackageIcon>fox_white_128x128.png</PackageIcon>
<ApplicationIcon>fox.ico</ApplicationIcon>
</PropertyGroup>

<ItemGroup>
<Content Include="fox.ico" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="OpenAI" Version="2.0.0-beta.7" />
</ItemGroup>
Expand Down
6 changes: 5 additions & 1 deletion AIDemon.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.10.35013.160
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AIDemon", "AIDemon.csproj", "{02C0F26A-AB3B-439D-A5B2-62B8FCF300A9}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AIDemon", "AIDemon.csproj", "{02C0F26A-AB3B-439D-A5B2-62B8FCF300A9}"
EndProject
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "AIDemon.Setup", "..\AIDemon.Setup\AIDemon.Setup.vdproj", "{63866A2B-D07E-4176-ABB1-BC896CC0019C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -15,6 +17,8 @@ Global
{02C0F26A-AB3B-439D-A5B2-62B8FCF300A9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{02C0F26A-AB3B-439D-A5B2-62B8FCF300A9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{02C0F26A-AB3B-439D-A5B2-62B8FCF300A9}.Release|Any CPU.Build.0 = Release|Any CPU
{63866A2B-D07E-4176-ABB1-BC896CC0019C}.Debug|Any CPU.ActiveCfg = Debug
{63866A2B-D07E-4176-ABB1-BC896CC0019C}.Release|Any CPU.ActiveCfg = Release
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
1 change: 1 addition & 0 deletions Forms/MainForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Forms/QueryResultForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Forms/SettingsForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added fox.ico
Binary file not shown.

0 comments on commit 53c3a0a

Please sign in to comment.