Skip to content

Commit

Permalink
Added Icons and Logos
Browse files Browse the repository at this point in the history
Added icon and logo
Locked the window size
New color for the Genuine quality of the RedPill's preset (#008040)
Fixed URL of Changelog and License buttons
  • Loading branch information
AndrSator committed Sep 18, 2014
1 parent 572f01a commit 281dee6
Show file tree
Hide file tree
Showing 15 changed files with 89 additions and 33 deletions.
8 changes: 7 additions & 1 deletion Documentation/Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
 Version 1.0.0.0 (Beta)
 Version 1.0.0.1
- Added icon and logo
- Locked the window size
- New color for the Genuine quality of the RedPill's preset (#008040)
- Fixed URL of Changelog and License buttons

Version 1.0.0.0 (Beta)
- Pre-Release
Binary file added Media/Logo_TF2ColorEdit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
TF2 Color Edit
============
<img align="left" src="/Media/Logo_TF2ColorEdit.png" />
This simple tool allows the user to edit the colors of the [qualities] (http://wiki.teamfortress.com/wiki/Item_quality) and the attributes of the items. Just extrat the file ClientScheme.res from the VPK tf2_misc_dir.vpk, or use the one of your custom HUD, edit, preview, and save.

License
Expand All @@ -8,8 +9,11 @@ TF2 Color Edit by RedPill is licensed under a [Creative Commons Attribution-NonC

Last Changes
============
######Version 1.0.0.0
* Pre-Release
######Version 1.0.0.1
* Added icon and logo
* Locked the window size
* New color for the Genuine quality of the RedPill's preset (#008040)
* Fixed URL of Changelog and License buttons

Screenshots
============
Expand Down
1 change: 1 addition & 0 deletions Source Code/TF2 Quality Color Edit/AboutWindow.Designer.vb

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

7 changes: 5 additions & 2 deletions Source Code/TF2 Quality Color Edit/AboutWindow.resx
Original file line number Diff line number Diff line change
Expand Up @@ -342,11 +342,14 @@
<data name="&gt;&gt;LicenseURL.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="PictureBox2.BackgroundImageLayout" type="System.Windows.Forms.ImageLayout, System.Windows.Forms">
<value>Stretch</value>
</data>
<data name="PictureBox2.Location" type="System.Drawing.Point, System.Drawing">
<value>12, 9</value>
<value>10, 9</value>
</data>
<data name="PictureBox2.Size" type="System.Drawing.Size, System.Drawing">
<value>100, 50</value>
<value>129, 129</value>
</data>
<data name="PictureBox2.TabIndex" type="System.Int32, mscorlib">
<value>20</value>
Expand Down
7 changes: 3 additions & 4 deletions Source Code/TF2 Quality Color Edit/AboutWindow.vb
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,22 @@
Public Class AboutWindow
Private Sub Form2_Load() Handles MyBase.Load
VersionLabel.Text = System.String.Format(VersionLabel.Text, My.Application.Info.Version.Major, My.Application.Info.Version.Minor, My.Application.Info.Version.Build, My.Application.Info.Version.Revision)
'ICON
'Icon = My.Resources.SteamCMDGUI_Icon
Icon = My.Resources.TF2ColorEdit_Icon
End Sub

Private Sub LicenseURL_Click() Handles LicenseURL.Click
If File.Exists("License.txt") Then
Process.Start("License.txt")
Else
Process.Start("https://raw.github.com/DioJoestar/TF2-Color-Edit/master/License.txt")
Process.Start("https://raw.githubusercontent.com/DioJoestar/TF2-Color-Edit/master/Documentation/License.txt")
End If
End Sub

Private Sub ChangelogButton_Click() Handles ChangelogButton.Click
If File.Exists("Changelog.txt") Then
Process.Start("Changelog.txt")
Else
Process.Start("https://raw.github.com/DioJoestar/TF2-Color-Edit/master/Changelog.txt")
Process.Start("https://raw.githubusercontent.com/DioJoestar/TF2-Color-Edit/master/Documentation/Changelog.txt")
End If
End Sub

Expand Down
40 changes: 21 additions & 19 deletions Source Code/TF2 Quality Color Edit/MainMenu.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 Code/TF2 Quality Color Edit/MainMenu.resx
Original file line number Diff line number Diff line change
Expand Up @@ -126,4 +126,7 @@
<metadata name="OpenFileDialog1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>255, 17</value>
</metadata>
<metadata name="$this.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
</root>
9 changes: 6 additions & 3 deletions Source Code/TF2 Quality Color Edit/MainMenu.vb
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ End Module

Public Class MainMenu
Private Sub MainMenu_Load() Handles MyBase.Load
Icon = My.Resources.TF2ColorEdit_Icon
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0F, 13.0F)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
ItemThumbnail.BackColor = ColorTranslator.FromHtml("#3C352E")
ItemNameLabel.BackColor = ColorTranslator.FromHtml("#2A2725")
ItemNameLabel.ForeColor = ColorTranslator.FromHtml("#FFD700")
Expand Down Expand Up @@ -904,9 +907,9 @@ Public Class MainMenu
RGB_R_Normal.Text = "178"
RGB_G_Normal.Text = "178"
RGB_B_Normal.Text = "178"
RGB_R_Genuine.Text = "79"
RGB_G_Genuine.Text = "230"
RGB_B_Genuine.Text = "79"
RGB_R_Genuine.Text = "0"
RGB_G_Genuine.Text = "128"
RGB_B_Genuine.Text = "64"
RGB_R_Vintage.Text = "94"
RGB_G_Vintage.Text = "152"
RGB_B_Vintage.Text = "217"
Expand Down
4 changes: 2 additions & 2 deletions Source Code/TF2 Quality Color Edit/My Project/AssemblyInfo.vb
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' mediante el asterisco ('*'), como se muestra a continuación:
' <Assembly: AssemblyVersion("1.0.*")>

<Assembly: AssemblyVersion("1.0.0.0")>
<Assembly: AssemblyFileVersion("1.0.0.0")>
<Assembly: AssemblyVersion("1.0.0.1")>
<Assembly: AssemblyFileVersion("1.0.0.1")>

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

6 changes: 6 additions & 0 deletions Source Code/TF2 Quality Color Edit/My Project/Resources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,10 @@
<data name="spy_hat" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\spy_hat.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="TF2ColorEdit_Icon" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Icons\TF2ColorEdit_Icon.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="TF2ColorEdit_Logo" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\TF2ColorEdit_Logo.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
</root>
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@
<PropertyGroup>
<ApplicationManifest>My Project\app.manifest</ApplicationManifest>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>Resources\Icons\TF2ColorEdit_Icon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
Expand Down Expand Up @@ -177,6 +180,12 @@
<ItemGroup>
<None Include="Resources\CCLicense.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\TF2ColorEdit_Logo.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\Icons\TF2ColorEdit_Icon.ico" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down

0 comments on commit 281dee6

Please sign in to comment.