Skip to content

Commit

Permalink
v1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ElektroStudios committed Apr 10, 2024
1 parent 944707e commit d44f270
Show file tree
Hide file tree
Showing 16 changed files with 643 additions and 499 deletions.
7 changes: 6 additions & 1 deletion Docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# File2Startup Change Log 📋

## v1.3.1 *(current)* 🆕
## v1.3.2 *(current)* 🆕

🛠️ Fixes:
- Added a 'Compact Mode' check box to hide/show tabs; whose main purpose is to serve as a final workaround for issue [#2](https://github.com/ElektroStudios/File2Startup/issues/2#issuecomment-2041072015)

## v1.3.1 🔄

🛠️ Fixes:
- Layout logic was interrupted for DataGridView control. Fixes issue [#2](https://github.com/ElektroStudios/File2Startup/issues/2#issuecomment-2041072015)
Expand Down
2 changes: 1 addition & 1 deletion Installer/install_script.iss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


#define Version "1.3.1"
#define Version "1.3.2"
#define AppName "File2Startup"
#define ExeName "File2Startup"
#define StartMenuGroup "• ElektroStudios"
Expand Down
Binary file modified Installer/{app}/File2Startup.exe
Binary file not shown.
Binary file modified Installer/{app}/en/File2Startup.resources.dll
Binary file not shown.
Binary file modified Installer/{app}/es/File2Startup.resources.dll
Binary file not shown.
Binary file modified Installer/{app}/pt/File2Startup.resources.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion Installer/{tmp}/install_script.iss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


#define Version "1.3.1"
#define Version "1.3.2"
#define AppName "File2Startup"
#define ExeName "File2Startup"
#define StartMenuGroup "• ElektroStudios"
Expand Down
4 changes: 4 additions & 0 deletions Source/File2Startup/File2Startup.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@
<Import Include="System.Xml.Linq" />
</ItemGroup>
<ItemGroup>
<Compile Include="UserInterface\ToolStripCheckBox.vb">
<SubType>Component</SubType>
</Compile>
<Compile Include="Tools\Core\CenteredMessageBox.vb" />
<Compile Include="Tools\Interop\Delegates.vb" />
<Compile Include="Tools\Interop\NativeMethods.vb" />
Expand Down Expand Up @@ -146,6 +149,7 @@
</EmbeddedResource>
<EmbeddedResource Include="UserInterface\Main.resx">
<DependentUpon>Main.vb</DependentUpon>
<SubType>Designer</SubType>
</EmbeddedResource>
<EmbeddedResource Include="My Project\Resources.resx">
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
Expand Down
4 changes: 2 additions & 2 deletions Source/File2Startup/My Project/AssemblyInfo.vb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
' <Assembly: AssemblyVersion("1.0.*")>

<Assembly: AssemblyVersion("1.3.1.0")>
<Assembly: AssemblyFileVersion("1.3.1.0")>
<Assembly: AssemblyVersion("1.3.2.0")>
<Assembly: AssemblyFileVersion("1.3.2.0")>

<Assembly: NeutralResourcesLanguageAttribute("en")>
12 changes: 12 additions & 0 deletions Source/File2Startup/My Project/Settings.Designer.vb

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

3 changes: 3 additions & 0 deletions Source/File2Startup/My Project/Settings.settings
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,8 @@
<Setting Name="Culture" Type="System.String" Scope="User">
<Value Profile="(Default)">en</Value>
</Setting>
<Setting Name="CompactMode" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">True</Value>
</Setting>
</Settings>
</SettingsFile>
36 changes: 23 additions & 13 deletions Source/File2Startup/UserInterface/Main.Designer.vb

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

Loading

0 comments on commit d44f270

Please sign in to comment.