summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-07-13 15:01:54 +0200
committerBerke Viktor <bviktor@hexchat.org>2012-07-13 15:01:54 +0200
commitc33342b20245a1b611dc985dadec1db3df3f7521 (patch)
tree8baf1fbbb3a9adc9302834e4a70ab24db9fecabd
parentc95481a85b077e3b4e2846f63342377f0bf65026 (diff)
Rename XTM to HTM
-rw-r--r--.gitignore2
-rw-r--r--src/htm/Main.Designer.cs (renamed from src/xtm/Main.Designer.cs)10
-rw-r--r--src/htm/Main.cs (renamed from src/xtm/Main.cs)4
-rw-r--r--src/htm/Main.resx (renamed from src/xtm/Main.resx)0
-rw-r--r--src/htm/Program.cs (renamed from src/xtm/Program.cs)2
-rw-r--r--src/htm/Properties/AssemblyInfo.cs (renamed from src/xtm/Properties/AssemblyInfo.cs)0
-rw-r--r--src/htm/Properties/Resources.Designer.cs (renamed from src/xtm/Properties/Resources.Designer.cs)0
-rw-r--r--src/htm/Properties/Resources.resources (renamed from src/xtm/Properties/Resources.resources)bin180 -> 180 bytes
-rw-r--r--src/htm/Properties/Resources.resx (renamed from src/xtm/Properties/Resources.resx)0
-rw-r--r--src/htm/Properties/Settings.Designer.cs (renamed from src/xtm/Properties/Settings.Designer.cs)0
-rw-r--r--src/htm/Properties/Settings.settings (renamed from src/xtm/Properties/Settings.settings)0
-rw-r--r--src/htm/README.md (renamed from src/xtm/README.md)0
-rw-r--r--src/htm/Resources/htm.ico (renamed from src/xtm/Resources/xtm.ico)bin9662 -> 9662 bytes
-rw-r--r--src/htm/app.config (renamed from src/xtm/app.config)0
-rw-r--r--src/htm/htm.csproj (renamed from src/xtm/xtm.csproj)6
-rw-r--r--src/htm/htm.csproj.user (renamed from src/xtm/xtm.csproj.user)0
-rw-r--r--win32/hexchat.sln2
17 files changed, 13 insertions, 13 deletions
diff --git a/.gitignore b/.gitignore
index bf5022b6..c88057db 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,7 +2,7 @@
 plugins/wmpa/wmpa_h.h

 plugins/wmpa/wmpa_i.c

 src/pixmaps/inline_pngs.h

-src/xtm/obj/*

+src/htm/obj/*

 win32/build/*

 win32/ipch/*

 win32/hexchat.opensdf

diff --git a/src/xtm/Main.Designer.cs b/src/htm/Main.Designer.cs
index 6a7c9cf1..87fdc396 100644
--- a/src/xtm/Main.Designer.cs
+++ b/src/htm/Main.Designer.cs
@@ -1,6 +1,6 @@
 namespace thememan
 {
-    partial class XTM
+    partial class HTM
     {
         /// <summary>
         /// Required designer variable.
@@ -28,7 +28,7 @@
         /// </summary>
         private void InitializeComponent()
         {
-            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(XTM));

+            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HTM));

             this.themelist = new System.Windows.Forms.ListBox();

             this.themecolor0 = new System.Windows.Forms.Label();

             this.themecolor1 = new System.Windows.Forms.Label();

@@ -247,7 +247,7 @@
             this.deleteButton.UseVisualStyleBackColor = true;

             this.deleteButton.Click += new System.EventHandler(this.deleteButton_Click);

             // 

-            // XTM

+            // HTM

             // 

             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);

             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;

@@ -278,9 +278,9 @@
             this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;

             this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));

             this.MaximizeBox = false;

-            this.Name = "XTM";

+            this.Name = "HTM";

             this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;

-            this.Text = "XChat Theme Manager";

+            this.Text = "HexChat Theme Manager";

             this.ResumeLayout(false);

             this.PerformLayout();

 

diff --git a/src/xtm/Main.cs b/src/htm/Main.cs
index 2e10c650..5572ff76 100644
--- a/src/xtm/Main.cs
+++ b/src/htm/Main.cs
@@ -34,7 +34,7 @@ using System.Net;
 

 namespace thememan

 {

-    public partial class XTM : Form

+    public partial class HTM : Form

     {

         public string appdata = (Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\X-Chat 2\\");

         public string home = (Environment.GetFolderPath(Environment.SpecialFolder.Personal) + "/.xchat2/");

@@ -44,7 +44,7 @@ namespace thememan
 

         OpenFileDialog importDialog;

 

-        public XTM ()

+        public HTM ()

 		{

 			InitializeComponent ();

             

diff --git a/src/xtm/Main.resx b/src/htm/Main.resx
index 75c99568..75c99568 100644
--- a/src/xtm/Main.resx
+++ b/src/htm/Main.resx
diff --git a/src/xtm/Program.cs b/src/htm/Program.cs
index c9bb7144..ac350f91 100644
--- a/src/xtm/Program.cs
+++ b/src/htm/Program.cs
@@ -15,7 +15,7 @@ namespace thememan
         {
             Application.EnableVisualStyles();
             Application.SetCompatibleTextRenderingDefault(false);
-            Application.Run(new XTM());
+            Application.Run(new HTM());
         }
     }
 }
diff --git a/src/xtm/Properties/AssemblyInfo.cs b/src/htm/Properties/AssemblyInfo.cs
index 75d92f87..75d92f87 100644
--- a/src/xtm/Properties/AssemblyInfo.cs
+++ b/src/htm/Properties/AssemblyInfo.cs
diff --git a/src/xtm/Properties/Resources.Designer.cs b/src/htm/Properties/Resources.Designer.cs
index 829857ee..829857ee 100644
--- a/src/xtm/Properties/Resources.Designer.cs
+++ b/src/htm/Properties/Resources.Designer.cs
diff --git a/src/xtm/Properties/Resources.resources b/src/htm/Properties/Resources.resources
index 6c05a977..6c05a977 100644
--- a/src/xtm/Properties/Resources.resources
+++ b/src/htm/Properties/Resources.resources
Binary files differdiff --git a/src/xtm/Properties/Resources.resx b/src/htm/Properties/Resources.resx
index 1af7de15..1af7de15 100644
--- a/src/xtm/Properties/Resources.resx
+++ b/src/htm/Properties/Resources.resx
diff --git a/src/xtm/Properties/Settings.Designer.cs b/src/htm/Properties/Settings.Designer.cs
index 35939b71..35939b71 100644
--- a/src/xtm/Properties/Settings.Designer.cs
+++ b/src/htm/Properties/Settings.Designer.cs
diff --git a/src/xtm/Properties/Settings.settings b/src/htm/Properties/Settings.settings
index 39645652..39645652 100644
--- a/src/xtm/Properties/Settings.settings
+++ b/src/htm/Properties/Settings.settings
diff --git a/src/xtm/README.md b/src/htm/README.md
index 7f837263..7f837263 100644
--- a/src/xtm/README.md
+++ b/src/htm/README.md
diff --git a/src/xtm/Resources/xtm.ico b/src/htm/Resources/htm.ico
index f5cac031..f5cac031 100644
--- a/src/xtm/Resources/xtm.ico
+++ b/src/htm/Resources/htm.ico
Binary files differdiff --git a/src/xtm/app.config b/src/htm/app.config
index 2f7cce78..2f7cce78 100644
--- a/src/xtm/app.config
+++ b/src/htm/app.config
diff --git a/src/xtm/xtm.csproj b/src/htm/htm.csproj
index 10a9ccce..05896218 100644
--- a/src/xtm/xtm.csproj
+++ b/src/htm/htm.csproj
@@ -42,13 +42,13 @@
     <CodeAnalysisIgnoreGeneratedCode>false</CodeAnalysisIgnoreGeneratedCode>

   </PropertyGroup>

   <PropertyGroup>

-    <ApplicationIcon>Resources\xtm.ico</ApplicationIcon>

+    <ApplicationIcon>Resources\htm.ico</ApplicationIcon>

   </PropertyGroup>

   <PropertyGroup>

     <ManifestCertificateThumbprint>25412E3EF25458D894050F8209E4D9DCCDF432D7</ManifestCertificateThumbprint>

   </PropertyGroup>

   <PropertyGroup>

-    <ManifestKeyFile>xtm_TemporaryKey.pfx</ManifestKeyFile>

+    <ManifestKeyFile>htm_TemporaryKey.pfx</ManifestKeyFile>

   </PropertyGroup>

   <PropertyGroup>

     <GenerateManifests>false</GenerateManifests>

@@ -150,7 +150,7 @@
     </BootstrapperPackage>

   </ItemGroup>

   <ItemGroup>

-    <Content Include="Resources\xtm.ico" />

+    <Content Include="Resources\htm.ico" />

   </ItemGroup>

   <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

   <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
diff --git a/src/xtm/xtm.csproj.user b/src/htm/htm.csproj.user
index 1f4a1d77..1f4a1d77 100644
--- a/src/xtm/xtm.csproj.user
+++ b/src/htm/htm.csproj.user
diff --git a/win32/hexchat.sln b/win32/hexchat.sln
index 30333ab2..3f223bad 100644
--- a/win32/hexchat.sln
+++ b/win32/hexchat.sln
@@ -119,7 +119,7 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "installer", "installer\inst
 		{C9B735E4-75BC-45AC-A5E3-39A6D076F912} = {C9B735E4-75BC-45AC-A5E3-39A6D076F912}

 	EndProjectSection

 EndProject

-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "xtm", "..\src\xtm\xtm.csproj", "{DE87FFCA-9606-4116-B747-062D88A56A28}"

+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "htm", "..\src\htm\htm.csproj", "{DE87FFCA-9606-4116-B747-062D88A56A28}"

 EndProject

 Global

 	GlobalSection(SolutionConfigurationPlatforms) = preSolution