Skip to content

Commit

Permalink
v1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ElektroStudios committed Apr 10, 2024
1 parent 5ba608f commit 29c5b23
Show file tree
Hide file tree
Showing 12 changed files with 3,595 additions and 6,191 deletions.
4 changes: 2 additions & 2 deletions Installer/install_script.iss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


#define Version "1.3.2"
#define Version "1.3.3"
#define AppName "File2Startup"
#define ExeName "File2Startup"
#define StartMenuGroup "• ElektroStudios"
Expand Down Expand Up @@ -44,7 +44,7 @@ AppPublisher=ElektroStudios
DefaultDirName={autopf}\ElektroStudios\{#AppName}
DefaultGroupName=ElektroStudios Installers\{#StartMenuGroup}
UninstallDisplayIcon={app}\{#ExeName}.exe
OutputBaseFilename={#AppName}
OutputBaseFilename={#AppName} v{#Version} AnyCPU Istaller
Compression=zip
InternalCompressLevel=normal
SolidCompression=false
Expand Down
Binary file modified Installer/{app}/File2Startup.exe
Binary file not shown.
3 changes: 3 additions & 0 deletions Installer/{app}/File2Startup.exe.config
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@
<setting name="Culture" serializeAs="String">
<value>en</value>
</setting>
<setting name="CompactMode" serializeAs="String">
<value>True</value>
</setting>
</My.MySettings>
</userSettings>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/></startup></configuration>
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.
4 changes: 2 additions & 2 deletions Installer/{tmp}/install_script.iss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


#define Version "1.3.2"
#define Version "1.3.3"
#define AppName "File2Startup"
#define ExeName "File2Startup"
#define StartMenuGroup "• ElektroStudios"
Expand Down Expand Up @@ -44,7 +44,7 @@ AppPublisher=ElektroStudios
DefaultDirName={autopf}\ElektroStudios\{#AppName}
DefaultGroupName=ElektroStudios Installers\{#StartMenuGroup}
UninstallDisplayIcon={app}\{#ExeName}.exe
OutputBaseFilename={#AppName}
OutputBaseFilename={#AppName} v{#Version} AnyCPU Istaller
Compression=zip
InternalCompressLevel=normal
SolidCompression=false
Expand Down
2,610 changes: 0 additions & 2,610 deletions Source/File2Startup/UserInterface/Main.en-AS.resx

This file was deleted.

930 changes: 468 additions & 462 deletions Source/File2Startup/UserInterface/Main.en.resx

Large diffs are not rendered by default.

932 changes: 466 additions & 466 deletions Source/File2Startup/UserInterface/Main.es.resx

Large diffs are not rendered by default.

5,296 changes: 2,648 additions & 2,648 deletions Source/File2Startup/UserInterface/Main.resx

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion Source/File2Startup/UserInterface/Main.vb
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ Namespace UserInterface
Private msgq4 As String = "Do you really want to overwrite the item?."
Private msgq5 As String = "Item successfully added to Windows startup"
Private msgq6 As String = "Failed to add the item to Windows startup"
Private msgq7 As String = "Compact Mode"

#End Region

Expand Down Expand Up @@ -742,7 +743,6 @@ Namespace UserInterface

resources.ApplyResources(Me.ToolStripButton_ItemBuilder, Me.ToolStripButton_ItemBuilder.Name, culture)
resources.ApplyResources(Me.ToolStripButton_StartupList, Me.ToolStripButton_StartupList.Name, culture)
resources.ApplyResources(Me.ToolStripCheckBox_CompactMode, Me.ToolStripCheckBox_CompactMode.Name, culture)
resources.ApplyResources(Me.ToolStripButton_About, Me.ToolStripButton_About.Name, culture)
resources.ApplyResources(Me.ToolStripDropDownButton2, Me.ToolStripDropDownButton2.Name, culture)
resources.ApplyResources(Me.ToolStripDropDownButton_Recent, Me.ToolStripDropDownButton_Recent.Name, culture)
Expand Down Expand Up @@ -794,6 +794,7 @@ Namespace UserInterface
Me.msgq4 = "Do you really want to overwrite the entry?."
Me.msgq5 = "Item successfully added to Windows startup."
Me.msgq6 = "Failed to add the item to Windows startup."
Me.msgq7 = "Compact Mode"

Me.DataGridView1.Columns(0).HeaderText = "Type"
Me.DataGridView1.Columns(1).HeaderText = "Icon"
Expand All @@ -810,6 +811,7 @@ Namespace UserInterface
Me.msgq4 = "¿Realmente desea sobrescribir la entrada?."
Me.msgq5 = "Elemento agregado exitosamente al inicio de Windows."
Me.msgq6 = "Error al agregar el elemento al inicio de Windows."
Me.msgq7 = "Modo Compacto"

Me.DataGridView1.Columns(0).HeaderText = "Tipo"
Me.DataGridView1.Columns(1).HeaderText = "Icono"
Expand All @@ -826,13 +828,16 @@ Namespace UserInterface
Me.msgq4 = "Deseja realmente substituir a entrada?"
Me.msgq5 = "Item adicionado com sucesso na começar do Windows."
Me.msgq6 = "Erro ao adicionar item na começar do Windows."
Me.msgq7 = "Modo Compacto"

Me.DataGridView1.Columns(0).HeaderText = "Tipo"
Me.DataGridView1.Columns(1).HeaderText = "Ícone"
Me.DataGridView1.Columns(2).HeaderText = "Nome"
Me.DataGridView1.Columns(3).HeaderText = "Valor"

End Select
Me.ToolStripCheckBox_CompactMode.Text = Me.msgq7

Me.SetControlHints()

If Me.TabControl1.SelectedTab.Equals(Me.TabPage1) Then
Expand Down

0 comments on commit 29c5b23

Please sign in to comment.