annotate AboutTextureTool.cs @ 0:a54c09901f4e default tip

Initial commit to Mercurial at v1.9.3 - now GPLed!
author IBBoard <dev@ibboard.co.uk>
date Sat, 06 Oct 2018 19:19:03 +0100
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
1 // This file is a part of the Texture Tool program and is copyright 2006-2018 IBBoard.
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
2 //
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
3 // The file and the library/program it is in are licensed under the GNU GPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license.
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
4
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
5 using System;
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
6 using System.Drawing;
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
7 using System.Collections;
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
8 using System.ComponentModel;
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
9 using System.Windows.Forms;
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
10
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
11 namespace IBBoard.Relic.TextureTool
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
12 {
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
13 /// <summary>
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
14 /// Summary description for AboutTextureTool.
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
15 /// </summary>
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
16 public class AboutTextureTool : System.Windows.Forms.Form
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
17 {
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
18 private System.Windows.Forms.Button bttnClose;
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
19 private System.Windows.Forms.Label label1;
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
20 private System.Windows.Forms.Label label2;
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
21 private System.Windows.Forms.Label label3;
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
22 /// <summary>
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
23 /// Required designer variable.
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
24 /// </summary>
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
25 private System.ComponentModel.Container components = null;
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
26
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
27 public AboutTextureTool()
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
28 {
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
29 //
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
30 // Required for Windows Form Designer support
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
31 //
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
32 InitializeComponent();
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
33
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
34 string version = Application.ProductVersion.Substring(0, Application.ProductVersion.LastIndexOf('.'));
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
35
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
36 if (version.EndsWith(".0"))
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
37 {
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
38 version = version.Substring(0, version.Length-2);
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
39 }
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
40
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
41 label2.Text = "Dawn of War Texture Tool v"+version;
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
42 }
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
43
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
44 /// <summary>
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
45 /// Clean up any resources being used.
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
46 /// </summary>
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
47 protected override void Dispose( bool disposing )
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
48 {
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
49 if( disposing )
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
50 {
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
51 if(components != null)
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
52 {
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
53 components.Dispose();
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
54 }
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
55 }
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
56 base.Dispose( disposing );
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
57 }
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
58
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
59 #region Windows Form Designer generated code
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
60 /// <summary>
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
61 /// Required method for Designer support - do not modify
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
62 /// the contents of this method with the code editor.
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
63 /// </summary>
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
64 private void InitializeComponent()
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
65 {
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
66 this.bttnClose = new System.Windows.Forms.Button();
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
67 this.label1 = new System.Windows.Forms.Label();
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
68 this.label2 = new System.Windows.Forms.Label();
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
69 this.label3 = new System.Windows.Forms.Label();
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
70 this.SuspendLayout();
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
71 //
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
72 // bttnClose
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
73 //
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
74 this.bttnClose.Location = new System.Drawing.Point(200, 120);
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
75 this.bttnClose.Name = "bttnClose";
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
76 this.bttnClose.TabIndex = 0;
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
77 this.bttnClose.Text = "Close";
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
78 this.bttnClose.Click += new System.EventHandler(this.bttnClose_Click);
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
79 //
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
80 // label1
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
81 //
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
82 this.label1.Location = new System.Drawing.Point(8, 40);
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
83 this.label1.Name = "label1";
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
84 this.label1.Size = new System.Drawing.Size(272, 32);
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
85 this.label1.TabIndex = 1;
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
86 this.label1.Text = "Created by IBBoard for Skins @ Hive World Terra (http://skins.hiveworldterra.co." +
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
87 "uk)";
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
88 //
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
89 // label2
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
90 //
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
91 this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
92 this.label2.Location = new System.Drawing.Point(8, 8);
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
93 this.label2.Name = "label2";
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
94 this.label2.Size = new System.Drawing.Size(264, 23);
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
95 this.label2.TabIndex = 2;
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
96 this.label2.Text = "Dawn of War Texture Tool v1.6";
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
97 //
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
98 // label3
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
99 //
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
100 this.label3.Location = new System.Drawing.Point(8, 80);
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
101 this.label3.Name = "label3";
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
102 this.label3.Size = new System.Drawing.Size(272, 32);
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
103 this.label3.TabIndex = 3;
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
104 this.label3.Text = "WTP, RSH and RTX Compiler and Extractor, and DDS to TGA and TGA to DDS converter";
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
105 //
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
106 // AboutTextureTool
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
107 //
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
108 this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
109 this.ClientSize = new System.Drawing.Size(282, 145);
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
110 this.Controls.Add(this.label3);
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
111 this.Controls.Add(this.label2);
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
112 this.Controls.Add(this.label1);
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
113 this.Controls.Add(this.bttnClose);
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
114 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
115 this.Name = "AboutTextureTool";
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
116 this.ShowInTaskbar = false;
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
117 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
118 this.Text = "About";
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
119 this.ResumeLayout(false);
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
120
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
121 }
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
122 #endregion
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
123
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
124 private void bttnClose_Click(object sender, System.EventArgs e)
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
125 {
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
126 this.Close();
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
127 }
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
128 }
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
129 }