Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# Dependencies Installer 2.1.1.3
# Dependencies Installer 2.1.1.4

# Stack Upgrades
- **EAC Core (v. January 2026, be2efb9dd6ee25).**
- **EAC Core (v. January 2026, v2601.1).**

# New Features
[97cb308] Added icons into the Context Menu.

# Bug Fixes
[f0e929e] Some small Performance Improvements.
[90e9ce3] Removed "Info" context menu and moved into "Help" section.
[d85d403] Fixed ContextMenu into "About" section.
8 changes: 8 additions & 0 deletions Configurator/Configurator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -165,13 +165,21 @@
</ItemGroup>
<ItemGroup>
<Content Include="src\images\addFolder.png" />
<Content Include="src\images\bugIcon.png" />
<Content Include="src\images\exit.png" />
<Content Include="src\images\information.png" />
<Content Include="src\images\websiteIcon.png" />
<Content Include="src\images\hammer.png" />
<Content Include="src\images\suggestionIcon.png" />
<Content Include="src\images\updatesIcon.png" />
<Content Include="src\images\settingsIcon_black.png" />
<Content Include="src\images\versionsIcon.png" />
<Content Include="src\images\settingsIcon.png" />
<Content Include="src\images\warning.png" />
<Content Include="src\images\dependencies.png" />
<Content Include="src\images\icon.png" />
<Content Include="src\images\infoIcon.png" />
<Content Include="src\images\minimizeIcon.png" />
<Content Include="tools.ico" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
4 changes: 2 additions & 2 deletions Configurator/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@

[assembly: Guid("e8b39fab-c858-4a69-88bc-cfe8005069b7")]

[assembly: AssemblyVersion("2.1.1.3")]
[assembly: AssemblyFileVersion("2.1.1.3")]
[assembly: AssemblyVersion("2.1.1.4")]
[assembly: AssemblyFileVersion("2.1.1.4")]
15 changes: 1 addition & 14 deletions Configurator/forms/AboutDialog.Designer.cs

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

3 changes: 0 additions & 3 deletions Configurator/forms/AboutDialog.resx
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,6 @@
<metadata name="toolTipAbout.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>143, 17</value>
</metadata>
<metadata name="toolStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
Expand Down
104 changes: 58 additions & 46 deletions Configurator/forms/Config.Designer.cs

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

5 changes: 3 additions & 2 deletions Configurator/forms/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ private void checkForUpdatesToolStripMenuItem_Click(object sender, EventArgs e)
else
Application.Exit();
}
private void aboutToolStripMenuItem1_Click(object sender, EventArgs e) {using (var f = new AboutDialog()) {f.ShowDialog();}}
private void visitWebsiteToolStripMenuItem_Click(object sender, EventArgs e) {Process.Start("https://play-epik-incorporation.netlify.app/developers#dependenciesInstaller");}

private void aboutToolStripMenuItem2_Click(object sender, EventArgs e) { using (var f = new AboutDialog()) { f.ShowDialog(); } }
private void websiteToolStripMenuItem_Click(object sender, EventArgs e) { Process.Start("https://play-epik-incorporation.netlify.app/developers#dependenciesInstaller"); }
private void bugReportToolStripMenuItem_Click(object sender, EventArgs e) {Process.Start("https://github.com/Andrea-Filice/DependenciesInstaller/issues/new?labels=bug");}
private void suggestionToolStripMenuItem_Click(object sender, EventArgs e) { Process.Start("https://github.com/Andrea-Filice/DependenciesInstaller/issues/new?labels=enhancement"); }
private void minimizeToolStripMenuItem_Click(object sender, EventArgs e) { this.WindowState = FormWindowState.Minimized; }
Expand Down
Loading