From c33342b20245a1b611dc985dadec1db3df3f7521 Mon Sep 17 00:00:00 2001 From: Berke Viktor Date: Fri, 13 Jul 2012 15:01:54 +0200 Subject: [PATCH] Rename XTM to HTM --- .gitignore | 2 +- src/{xtm => htm}/Main.Designer.cs | 10 +++++----- src/{xtm => htm}/Main.cs | 4 ++-- src/{xtm => htm}/Main.resx | 0 src/{xtm => htm}/Program.cs | 2 +- src/{xtm => htm}/Properties/AssemblyInfo.cs | 0 src/{xtm => htm}/Properties/Resources.Designer.cs | 0 src/{xtm => htm}/Properties/Resources.resources | Bin src/{xtm => htm}/Properties/Resources.resx | 0 src/{xtm => htm}/Properties/Settings.Designer.cs | 0 src/{xtm => htm}/Properties/Settings.settings | 0 src/{xtm => htm}/README.md | 0 .../Resources/xtm.ico => htm/Resources/htm.ico} | Bin src/{xtm => htm}/app.config | 0 src/{xtm/xtm.csproj => htm/htm.csproj} | 6 +++--- src/{xtm/xtm.csproj.user => htm/htm.csproj.user} | 0 win32/hexchat.sln | 2 +- 17 files changed, 13 insertions(+), 13 deletions(-) rename src/{xtm => htm}/Main.Designer.cs (97%) rename src/{xtm => htm}/Main.cs (97%) rename src/{xtm => htm}/Main.resx (100%) rename src/{xtm => htm}/Program.cs (91%) rename src/{xtm => htm}/Properties/AssemblyInfo.cs (100%) rename src/{xtm => htm}/Properties/Resources.Designer.cs (100%) rename src/{xtm => htm}/Properties/Resources.resources (100%) rename src/{xtm => htm}/Properties/Resources.resx (100%) rename src/{xtm => htm}/Properties/Settings.Designer.cs (100%) rename src/{xtm => htm}/Properties/Settings.settings (100%) rename src/{xtm => htm}/README.md (100%) rename src/{xtm/Resources/xtm.ico => htm/Resources/htm.ico} (100%) rename src/{xtm => htm}/app.config (100%) rename src/{xtm/xtm.csproj => htm/htm.csproj} (95%) rename src/{xtm/xtm.csproj.user => htm/htm.csproj.user} (100%) 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 similarity index 97% rename from src/xtm/Main.Designer.cs rename to 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 { /// /// Required designer variable. @@ -28,7 +28,7 @@ /// 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 similarity index 97% rename from src/xtm/Main.cs rename to 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 similarity index 100% rename from src/xtm/Main.resx rename to src/htm/Main.resx diff --git a/src/xtm/Program.cs b/src/htm/Program.cs similarity index 91% rename from src/xtm/Program.cs rename to 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 similarity index 100% rename from src/xtm/Properties/AssemblyInfo.cs rename to src/htm/Properties/AssemblyInfo.cs diff --git a/src/xtm/Properties/Resources.Designer.cs b/src/htm/Properties/Resources.Designer.cs similarity index 100% rename from src/xtm/Properties/Resources.Designer.cs rename to src/htm/Properties/Resources.Designer.cs diff --git a/src/xtm/Properties/Resources.resources b/src/htm/Properties/Resources.resources similarity index 100% rename from src/xtm/Properties/Resources.resources rename to src/htm/Properties/Resources.resources diff --git a/src/xtm/Properties/Resources.resx b/src/htm/Properties/Resources.resx similarity index 100% rename from src/xtm/Properties/Resources.resx rename to src/htm/Properties/Resources.resx diff --git a/src/xtm/Properties/Settings.Designer.cs b/src/htm/Properties/Settings.Designer.cs similarity index 100% rename from src/xtm/Properties/Settings.Designer.cs rename to src/htm/Properties/Settings.Designer.cs diff --git a/src/xtm/Properties/Settings.settings b/src/htm/Properties/Settings.settings similarity index 100% rename from src/xtm/Properties/Settings.settings rename to src/htm/Properties/Settings.settings diff --git a/src/xtm/README.md b/src/htm/README.md similarity index 100% rename from src/xtm/README.md rename to src/htm/README.md diff --git a/src/xtm/Resources/xtm.ico b/src/htm/Resources/htm.ico similarity index 100% rename from src/xtm/Resources/xtm.ico rename to src/htm/Resources/htm.ico diff --git a/src/xtm/app.config b/src/htm/app.config similarity index 100% rename from src/xtm/app.config rename to src/htm/app.config diff --git a/src/xtm/xtm.csproj b/src/htm/htm.csproj similarity index 95% rename from src/xtm/xtm.csproj rename to src/htm/htm.csproj index 10a9ccce..05896218 100644 --- a/src/xtm/xtm.csproj +++ b/src/htm/htm.csproj @@ -42,13 +42,13 @@ false - Resources\xtm.ico + Resources\htm.ico 25412E3EF25458D894050F8209E4D9DCCDF432D7 - xtm_TemporaryKey.pfx + htm_TemporaryKey.pfx false @@ -150,7 +150,7 @@ - +