Compare commits

..

4 Commits

Author SHA1 Message Date
OlgunR
3f63173feb Enable AutoScroll and restore DevExpress tab icons
Added AutoScroll to frmMain for better content handling. Restored DevExpress SVG tab icon resources and cleaned up redundant TrayLocation metadata in frmMain.resx. Also re-added required DevExpress.Data.v21.2 assembly reference.
2026-03-05 12:02:48 +01:00
OlgunR
91287d75c1 Reset AssemblyFileVersion to 1.0.0.0 in AssemblyInfo.vb
The AssemblyFileVersion attribute was changed from 3.4.0.0 to 1.0.0.0, while keeping AssemblyVersion at 3.4.0.0. This resets the file version metadata without affecting assembly binding.
2026-03-05 11:28:39 +01:00
OlgunR
d46fca1cfa Update assembly info for 2026 and version 3.4.0.0
Updated copyright year to 2026. Changed assembly trademark to "3.4.0.0". Bumped assembly version and file version to 3.4.0.0.
2026-03-05 10:23:18 +01:00
OlgunR
9d66826be9 Add layout save/restore buttons and update tab icons
Added "Save Layout" and "Restore Default Layout" buttons to frmMain, anchored to the top right of the monitoring config panel. Set minimum form size to 800x400. Updated .resx with new tray locations and restored SVG icons for tab pages. Changes are designer-generated and do not affect application logic.
2026-03-05 10:17:25 +01:00
2 changed files with 7 additions and 3 deletions

View File

@@ -12,8 +12,8 @@ Imports System.Runtime.InteropServices
<Assembly: AssemblyDescription("")> <Assembly: AssemblyDescription("")>
<Assembly: AssemblyCompany("Digital Data")> <Assembly: AssemblyCompany("Digital Data")>
<Assembly: AssemblyProduct("EmailProfiler Config")> <Assembly: AssemblyProduct("EmailProfiler Config")>
<Assembly: AssemblyCopyright("Copyright © 2025")> <Assembly: AssemblyCopyright("Copyright © 2026")>
<Assembly: AssemblyTrademark("3.2.0")> <Assembly: AssemblyTrademark("3.4.0.0")>
<Assembly: ComVisible(False)> <Assembly: ComVisible(False)>
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' übernehmen, indem Sie "*" eingeben: ' übernehmen, indem Sie "*" eingeben:
' <Assembly: AssemblyVersion("1.0.*")> ' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("3.2.0.0")> <Assembly: AssemblyVersion("3.4.0.0")>
<Assembly: AssemblyFileVersion("1.0.0.0")> <Assembly: AssemblyFileVersion("1.0.0.0")>

View File

@@ -3469,6 +3469,7 @@ Partial Class frmMain
' '
'btnRestoreDefaultLayout 'btnRestoreDefaultLayout
' '
Me.btnRestoreDefaultLayout.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.btnRestoreDefaultLayout.Location = New System.Drawing.Point(1026, 10) Me.btnRestoreDefaultLayout.Location = New System.Drawing.Point(1026, 10)
Me.btnRestoreDefaultLayout.Name = "btnRestoreDefaultLayout" Me.btnRestoreDefaultLayout.Name = "btnRestoreDefaultLayout"
Me.btnRestoreDefaultLayout.Size = New System.Drawing.Size(183, 23) Me.btnRestoreDefaultLayout.Size = New System.Drawing.Size(183, 23)
@@ -3478,6 +3479,7 @@ Partial Class frmMain
' '
'btnSaveLayout 'btnSaveLayout
' '
Me.btnSaveLayout.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.btnSaveLayout.Location = New System.Drawing.Point(910, 10) Me.btnSaveLayout.Location = New System.Drawing.Point(910, 10)
Me.btnSaveLayout.Name = "btnSaveLayout" Me.btnSaveLayout.Name = "btnSaveLayout"
Me.btnSaveLayout.Size = New System.Drawing.Size(106, 23) Me.btnSaveLayout.Size = New System.Drawing.Size(106, 23)
@@ -3583,12 +3585,14 @@ Partial Class frmMain
Me.Appearance.Options.UseFont = True Me.Appearance.Options.UseFont = True
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.AutoScroll = True
Me.ClientSize = New System.Drawing.Size(1235, 616) Me.ClientSize = New System.Drawing.Size(1235, 616)
Me.Controls.Add(Me.TabControl1) Me.Controls.Add(Me.TabControl1)
Me.Controls.Add(Me.StatusStrip1) Me.Controls.Add(Me.StatusStrip1)
Me.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.IconOptions.Icon = CType(resources.GetObject("frmMain.IconOptions.Icon"), System.Drawing.Icon) Me.IconOptions.Icon = CType(resources.GetObject("frmMain.IconOptions.Icon"), System.Drawing.Icon)
Me.IconOptions.SvgImage = CType(resources.GetObject("frmMain.IconOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage) Me.IconOptions.SvgImage = CType(resources.GetObject("frmMain.IconOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
Me.MinimumSize = New System.Drawing.Size(800, 400)
Me.Name = "frmMain" Me.Name = "frmMain"
Me.Text = "Konfiguration Email-Profiler" Me.Text = "Konfiguration Email-Profiler"
Me.StatusStrip1.ResumeLayout(False) Me.StatusStrip1.ResumeLayout(False)