Skip to content

Commit ac92383

Browse files
committed
Added many stuffs & fixes
- New NSToolStripMenu - Added Controls & Auto Resize - Fixed Width & Height not update when Open an existing save file
1 parent 9d380b7 commit ac92383

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+733
-505
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.
9 KB
Binary file not shown.

SignalRGB-CompGen/.vs/SignalRGB-CompGen/v17/DocumentLayout.json

Lines changed: 111 additions & 66 deletions
Large diffs are not rendered by default.

SignalRGB-CompGen/Class/MySettings.vb

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,6 @@ Public Class Localization
9696
Public Console As String = "Console"
9797
Public SettingSaveMsg As String = "Some setting changes will not take effect until you restart SignalRGB Custom Component Editor."
9898

99-
Public FileWidth As Integer = 32
100-
Public SettingsWidth As Integer = 55
101-
Public HelpWidth As Integer = 38
99+
Public AutoResize As String = "AutoResize"
102100

103101
End Class

SignalRGB-CompGen/Class/NetSealEx.vb

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
Imports System.ComponentModel
22
Imports System.Drawing.Drawing2D
3+
Imports System.Drawing.Text
34

45
<DefaultEvent("ValueChanged")>
56
Class NSNumericUpDown
@@ -308,4 +309,20 @@ Class NSNumericUpDown
308309
MyBase.OnLeave(e)
309310
End Sub
310311

312+
End Class
313+
314+
Class NSMenuStrip
315+
Inherits MenuStrip
316+
317+
Sub New()
318+
Renderer = New ToolStripProfessionalRenderer(New NSColorTable())
319+
BackColor = Color.FromArgb(50, 50, 50)
320+
ForeColor = Color.White
321+
End Sub
322+
323+
Protected Overrides Sub OnPaint(e As PaintEventArgs)
324+
e.Graphics.TextRenderingHint = TextRenderingHint.ClearTypeGridFit
325+
MyBase.OnPaint(e)
326+
End Sub
327+
311328
End Class

SignalRGB-CompGen/My Project/PublishProfiles/FolderProfile.pubxml.user

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
44
-->
55
<Project>
66
<PropertyGroup>
7-
<History>True|2024-06-22T10:10:37.7445723Z;True|2024-06-17T01:37:21.0918122+08:00;True|2024-06-09T21:18:57.2685493+08:00;True|2024-06-05T23:58:49.9321488+08:00;True|2024-06-05T00:57:39.0888880+08:00;True|2024-06-05T00:55:45.6306878+08:00;True|2024-06-05T00:53:15.0344017+08:00;True|2024-06-05T00:52:38.3559013+08:00;True|2024-06-04T23:52:22.0299558+08:00;</History>
7+
<History>True|2024-06-24T15:39:03.8475950Z;True|2024-06-24T23:34:28.1022342+08:00;True|2024-06-22T18:10:37.7445723+08:00;True|2024-06-17T01:37:21.0918122+08:00;True|2024-06-09T21:18:57.2685493+08:00;True|2024-06-05T23:58:49.9321488+08:00;True|2024-06-05T00:57:39.0888880+08:00;True|2024-06-05T00:55:45.6306878+08:00;True|2024-06-05T00:53:15.0344017+08:00;True|2024-06-05T00:52:38.3559013+08:00;True|2024-06-04T23:52:22.0299558+08:00;</History>
88
<LastFailureDetails />
99
</PropertyGroup>
1010
</Project>

SignalRGB-CompGen/SignalRGB-CompGen.vbproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
<MyType>WindowsForms</MyType>
1010
<AssemblyName>compeditor</AssemblyName>
1111
<ApplicationIcon>1.ico</ApplicationIcon>
12-
<Version>1.5</Version>
12+
<Version>1.6</Version>
1313
<Authors>I'm Not MentaL</Authors>
1414
<Company>Haikou Nuoli Trading Co., Ltd.</Company>
1515
<PackageProjectUrl>https://nolliergb.cn</PackageProjectUrl>
1616
<PackageIcon>nollie.png</PackageIcon>
1717
<RepositoryUrl>https://github.com/qiangqiang101/SignalRGB-CompGen</RepositoryUrl>
1818
<RepositoryType>git</RepositoryType>
19-
<AssemblyVersion>1.5</AssemblyVersion>
20-
<FileVersion>1.5</FileVersion>
19+
<AssemblyVersion>1.6</AssemblyVersion>
20+
<FileVersion>1.6</FileVersion>
2121
</PropertyGroup>
2222

2323
<ItemGroup>

0 commit comments

Comments
 (0)