diff --git a/AutoConnect/AutoConnect.cs b/AutoConnect/AutoConnect.cs new file mode 100644 index 0000000..ef48315 --- /dev/null +++ b/AutoConnect/AutoConnect.cs @@ -0,0 +1,75 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using Virtuoso.Miranda.Plugins; +using Miranda; +using Virtuoso.Miranda.Plugins.Collections; + +[assembly: ExposingPluginAttribute(typeof(AutoConnect))] +namespace Miranda +{ + public class AutoConnect : MirandaPlugin + { + #region -= [ Plugin Info ]=- + public override Version Version + { + get { return new Version(0, 0, 0, 1); } + } + public override string Name + { + get { return "AutoConnect"; } + } + public override string Author + { + get { return "BlubbFish"; } + } + public override string Description + { + get { return "Plugin to Reconnect Miranda"; } + } + public override bool HasOptions + { + get { return true; } + } + public override Uri HomePage + { + get { return new Uri("http://www.blubbfish.net/miranda/autoconnect"); } + } + #endregion + + public AutoConnect() + { + } + + protected override void AfterPluginInitialization() + { + base.AfterPluginInitialization(); + } + + protected override void AfterPluginEnable() + { + base.AfterPluginEnable(); + } + + protected override void AfterMenuItemsPopulation(MenuItemDeclarationCollection items) + { + base.AfterMenuItemsPopulation(items); + } + + protected override void BeforePluginDisable() + { + base.BeforePluginDisable(); + } + + protected override void BeforeMirandaShutdown() + { + base.BeforeMirandaShutdown(); + } + + public override object InitializeLifetimeService() + { + return base.InitializeLifetimeService(); + } + } +} diff --git a/AutoConnect/AutoConnect.csproj b/AutoConnect/AutoConnect.csproj new file mode 100644 index 0000000..7e91266 --- /dev/null +++ b/AutoConnect/AutoConnect.csproj @@ -0,0 +1,58 @@ + + + + Debug + AnyCPU + 8.0.30703 + 2.0 + {70C2891E-C542-4F0D-8FBD-865351B7A718} + Library + Properties + AutoConnect + AutoConnect + v4.0 + 512 + + + true + full + false + ..\library\Managed\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + ..\library\Managed\ + TRACE + prompt + 4 + + + + ..\library\Hyphen.dll + False + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/AutoConnect/Properties/AssemblyInfo.cs b/AutoConnect/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..f860252 --- /dev/null +++ b/AutoConnect/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// Allgemeine Informationen über eine Assembly werden über die folgenden +// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, +// die mit einer Assembly verknüpft sind. +[assembly: AssemblyTitle("AutoConnect")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("AutoConnect")] +[assembly: AssemblyCopyright("Copyright © 2011")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar +// für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von +// COM zugreifen müssen, legen Sie das ComVisible-Attribut für diesen Typ auf "true" fest. +[assembly: ComVisible(false)] + +// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird +[assembly: Guid("db4c565e-8b5d-4cd3-b4f7-93cc035d198f")] + +// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: +// +// Hauptversion +// Nebenversion +// Buildnummer +// Revision +// +// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern +// übernehmen, indem Sie "*" eingeben: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Miranda.sln b/Miranda.sln new file mode 100644 index 0000000..f2ed4ec --- /dev/null +++ b/Miranda.sln @@ -0,0 +1,20 @@ + +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutoConnect", "AutoConnect\AutoConnect.csproj", "{70C2891E-C542-4F0D-8FBD-865351B7A718}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {70C2891E-C542-4F0D-8FBD-865351B7A718}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {70C2891E-C542-4F0D-8FBD-865351B7A718}.Debug|Any CPU.Build.0 = Debug|Any CPU + {70C2891E-C542-4F0D-8FBD-865351B7A718}.Release|Any CPU.ActiveCfg = Release|Any CPU + {70C2891E-C542-4F0D-8FBD-865351B7A718}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/library/Hyphen.dll b/library/Hyphen.dll new file mode 120000 index 0000000..1a51ee0 Binary files /dev/null and b/library/Hyphen.dll differ diff --git a/library/TabStripControlLibrary.dll b/library/TabStripControlLibrary.dll new file mode 120000 index 0000000..92448f0 Binary files /dev/null and b/library/TabStripControlLibrary.dll differ