Skip to content

Commit f190dae

Browse files
committed
v1.2.5
- Added a "already running" warning if you try to open more than one launcher at once, which asks if you wish to continue or exit. - Made all custom controls double buffered, UI elements should now be a lot smoother. - Changed the font size of the changelog box to be slightly smaller to fit more text. - Fixed some popups being in dark mode despite having the light mode setting enabled. - Fixed the installer popup not having any fancy graphics like all of the other popups. - Fixed the news tab not defaulting to display the very first news article downloaded. - Additional safety improvements regarding reading and writing to file paths.
1 parent a612e31 commit f190dae

38 files changed

+767
-244
lines changed

CodeRedLauncher.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
<ApplicationIcon>Icon.ico</ApplicationIcon>
99
<StartupObject>CodeRedLauncher.Program</StartupObject>
1010
<SupportedOSPlatformVersion>10.0.17763.0</SupportedOSPlatformVersion>
11-
<ApplicationManifest>app.manifest</ApplicationManifest>
1211
</PropertyGroup>
1312

1413
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
@@ -20,6 +19,9 @@
2019
</ItemGroup>
2120

2221
<ItemGroup>
22+
<Compile Update="Controls\CRDuplicate.cs">
23+
<SubType>UserControl</SubType>
24+
</Compile>
2325
<Compile Update="Controls\CRTextbox.cs" />
2426
<Compile Update="Properties\Resources.Designer.cs">
2527
<DesignTime>True</DesignTime>

Controls/CRButton.Designer.cs

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Controls/CRButton.resx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
1919
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
2020
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
21-
<data name="Color1" type="System.Drawing.Color, System.Drawing"">Blue</data>
21+
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
2222
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
2323
<value>[base64 mime encoded serialized .NET Framework object]</value>
2424
</data>
@@ -123,4 +123,7 @@
123123
<metadata name="ButtonImg.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
124124
<value>True</value>
125125
</metadata>
126+
<metadata name="$this.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
127+
<value>True</value>
128+
</metadata>
126129
</root>

Controls/CRChangelog.Designer.cs

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Controls/CRCheckbox.Designer.cs

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Controls/CRCheckbox.resx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
1919
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
2020
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
21-
<data name="Color1" type="System.Drawing.Color, System.Drawing"">Blue</data>
21+
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
2222
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
2323
<value>[base64 mime encoded serialized .NET Framework object]</value>
2424
</data>

Controls/CRDuplicate.Designer.cs

Lines changed: 159 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)