From 1ec35060229b49e5c9ce1c213dea53351a56e7ef Mon Sep 17 00:00:00 2001 From: Jaex Date: Sat, 18 Mar 2017 03:43:38 +0300 Subject: [PATCH] Amazon S3 custom domain support --- ShareX.UploadersLib/FileUploaders/AmazonS3.cs | 15 +- .../Forms/UploadersConfigForm.Designer.cs | 52 +- .../Forms/UploadersConfigForm.resx | 10472 ++++------------ 3 files changed, 2353 insertions(+), 8186 deletions(-) diff --git a/ShareX.UploadersLib/FileUploaders/AmazonS3.cs b/ShareX.UploadersLib/FileUploaders/AmazonS3.cs index 28a979837..7723b6248 100644 --- a/ShareX.UploadersLib/FileUploaders/AmazonS3.cs +++ b/ShareX.UploadersLib/FileUploaders/AmazonS3.cs @@ -181,8 +181,19 @@ public string GenerateURL(string fileName) if (!string.IsNullOrEmpty(Settings.RegionHostname) && !string.IsNullOrEmpty(Settings.Bucket)) { string uploadPath = GetUploadPath(fileName); - string url = URLHelpers.CombineURL(Settings.RegionHostname, Settings.Bucket, uploadPath); - return URLHelpers.ForcePrefix(url, "https://"); + + string url; + + if (Settings.UseCustomCNAME && !string.IsNullOrEmpty(Settings.CustomDomain)) + { + url = URLHelpers.CombineURL(Settings.CustomDomain, uploadPath); + } + else + { + url = URLHelpers.CombineURL(Settings.RegionHostname, Settings.Bucket, uploadPath); + } + + return URLHelpers.FixPrefix(url, "https://"); } return ""; diff --git a/ShareX.UploadersLib/Forms/UploadersConfigForm.Designer.cs b/ShareX.UploadersLib/Forms/UploadersConfigForm.Designer.cs index 33b7554db..e377014df 100644 --- a/ShareX.UploadersLib/Forms/UploadersConfigForm.Designer.cs +++ b/ShareX.UploadersLib/Forms/UploadersConfigForm.Designer.cs @@ -222,6 +222,10 @@ private void InitializeComponent() this.btnBoxRefreshFolders = new System.Windows.Forms.Button(); this.oauth2Box = new ShareX.UploadersLib.OAuthControl(); this.tpAmazonS3 = new System.Windows.Forms.TabPage(); + this.lblAmazonS3Hostname = new System.Windows.Forms.Label(); + this.txtAmazonS3Hostname = new System.Windows.Forms.TextBox(); + this.lblAmazonS3Identifier = new System.Windows.Forms.Label(); + this.txtAmazonS3Identifier = new System.Windows.Forms.TextBox(); this.txtAmazonS3CustomDomain = new System.Windows.Forms.TextBox(); this.lblAmazonS3PathPreviewLabel = new System.Windows.Forms.Label(); this.lblAmazonS3PathPreview = new System.Windows.Forms.Label(); @@ -593,11 +597,7 @@ private void InitializeComponent() this.lblWidthHint = new System.Windows.Forms.Label(); this.ttlvMain = new ShareX.HelpersLib.TabToListView(); this.actRapidShareAccountType = new ShareX.UploadersLib.AccountTypeControl(); - this.txtAmazonS3Identifier = new System.Windows.Forms.TextBox(); - this.lblAmazonS3Identifier = new System.Windows.Forms.Label(); this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); - this.txtAmazonS3Hostname = new System.Windows.Forms.TextBox(); - this.lblAmazonS3Hostname = new System.Windows.Forms.Label(); this.tpOtherUploaders.SuspendLayout(); this.tcOtherUploaders.SuspendLayout(); this.tpTwitter.SuspendLayout(); @@ -2161,6 +2161,28 @@ private void InitializeComponent() this.tpAmazonS3.Name = "tpAmazonS3"; this.tpAmazonS3.UseVisualStyleBackColor = true; // + // lblAmazonS3Hostname + // + resources.ApplyResources(this.lblAmazonS3Hostname, "lblAmazonS3Hostname"); + this.lblAmazonS3Hostname.Name = "lblAmazonS3Hostname"; + // + // txtAmazonS3Hostname + // + resources.ApplyResources(this.txtAmazonS3Hostname, "txtAmazonS3Hostname"); + this.txtAmazonS3Hostname.Name = "txtAmazonS3Hostname"; + this.txtAmazonS3Hostname.TextChanged += new System.EventHandler(this.txtAmazonS3Hostname_TextChanged); + // + // lblAmazonS3Identifier + // + resources.ApplyResources(this.lblAmazonS3Identifier, "lblAmazonS3Identifier"); + this.lblAmazonS3Identifier.Name = "lblAmazonS3Identifier"; + // + // txtAmazonS3Identifier + // + resources.ApplyResources(this.txtAmazonS3Identifier, "txtAmazonS3Identifier"); + this.txtAmazonS3Identifier.Name = "txtAmazonS3Identifier"; + this.txtAmazonS3Identifier.TextChanged += new System.EventHandler(this.txtAmazonS3Identifier_TextChanged); + // // txtAmazonS3CustomDomain // resources.ApplyResources(this.txtAmazonS3CustomDomain, "txtAmazonS3CustomDomain"); @@ -4798,28 +4820,6 @@ private void InitializeComponent() this.actRapidShareAccountType.Name = "actRapidShareAccountType"; this.actRapidShareAccountType.SelectedAccountType = ShareX.UploadersLib.AccountType.Anonymous; // - // txtAmazonS3Identifier - // - resources.ApplyResources(this.txtAmazonS3Identifier, "txtAmazonS3Identifier"); - this.txtAmazonS3Identifier.Name = "txtAmazonS3Identifier"; - this.txtAmazonS3Identifier.TextChanged += new System.EventHandler(this.txtAmazonS3Identifier_TextChanged); - // - // lblAmazonS3Identifier - // - resources.ApplyResources(this.lblAmazonS3Identifier, "lblAmazonS3Identifier"); - this.lblAmazonS3Identifier.Name = "lblAmazonS3Identifier"; - // - // txtAmazonS3Hostname - // - resources.ApplyResources(this.txtAmazonS3Hostname, "txtAmazonS3Hostname"); - this.txtAmazonS3Hostname.Name = "txtAmazonS3Hostname"; - this.txtAmazonS3Hostname.TextChanged += new System.EventHandler(this.txtAmazonS3Hostname_TextChanged); - // - // lblAmazonS3Hostname - // - resources.ApplyResources(this.lblAmazonS3Hostname, "lblAmazonS3Hostname"); - this.lblAmazonS3Hostname.Name = "lblAmazonS3Hostname"; - // // UploadersConfigForm // resources.ApplyResources(this, "$this"); diff --git a/ShareX.UploadersLib/Forms/UploadersConfigForm.resx b/ShareX.UploadersLib/Forms/UploadersConfigForm.resx index ff39fe5ac..3a8abcfee 100644 --- a/ShareX.UploadersLib/Forms/UploadersConfigForm.resx +++ b/ShareX.UploadersLib/Forms/UploadersConfigForm.resx @@ -145,7 +145,7 @@ NoControl - 16, 346 + 16, 360 184, 17 @@ -180,7 +180,7 @@ This means that they may be lost from Amazon S3 at some point. NoControl - 16, 298 + 16, 306 122, 17 @@ -250,237 +250,6 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ 0 - - tcOtherUploaders - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOtherUploaders - - - 0 - - - 4, 22 - - - 3, 3, 3, 3 - - - 986, 525 - - - 6 - - - Other uploaders - - - tpOtherUploaders - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcUploaders - - - 4 - - - tpTwitter - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcOtherUploaders - - - 0 - - - tpCustomUploaders - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcOtherUploaders - - - 1 - - - Fill - - - 3, 3 - - - 980, 519 - - - 0 - - - tcOtherUploaders - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOtherUploaders - - - 0 - - - btnTwitterNameUpdate - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTwitter - - - 0 - - - lbTwitterAccounts - - - System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTwitter - - - 1 - - - lblTwitterDefaultMessage - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTwitter - - - 2 - - - txtTwitterDefaultMessage - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTwitter - - - 3 - - - cbTwitterSkipMessageBox - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTwitter - - - 4 - - - oauthTwitter - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpTwitter - - - 5 - - - txtTwitterDescription - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTwitter - - - 6 - - - lblTwitterDescription - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTwitter - - - 7 - - - btnTwitterRemove - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTwitter - - - 8 - - - btnTwitterAdd - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTwitter - - - 9 - - - 4, 22 - - - 972, 493 - - - 0 - - - Twitter - - - tpTwitter - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcOtherUploaders - - - 0 - NoControl @@ -748,595 +517,28 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ 9 - - tcCustomUploaderResponseParse - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 0 - - - tcCustomUploaderArguments - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 1 - - - btnCustomUploaderExamples - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 2 - - - btnCustomUploaderHelp - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 3 - - - btnCustomUploaderClear - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 4 - - - lblCustomUploaderImageUploader - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 5 - - - btnCustomUploaderFileUploaderTest - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 6 - - - lblCustomUploaderFileUploader - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 7 - - - btnCustomUploaderImageUploaderTest - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 8 - - - lblCustomUploaderTestResult - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 9 - - - txtCustomUploaderDeletionURL - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 10 - - - cbCustomUploaderFileUploader - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 11 - - - lblCustomUploaderDeletionURL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 12 - - - btnCustomUploaderShowLastResponse - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 13 - - - lblCustomUploaderResponseType - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 14 - - - cbCustomUploaderURLShortener - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 15 - - - gbCustomUploaders - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 16 - - - lblCustomUploaderTextUploader - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 17 - - - lblCustomUploaderRequestURL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 18 - - - btnCustomUploaderURLShortenerTest - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 19 - - - cbCustomUploaderTextUploader - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 20 - - - txtCustomUploaderThumbnailURL - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 21 - - - lblCustomUploaderURLShortener - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 22 - - - cbCustomUploaderResponseType - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 23 - - - btnCustomUploaderTextUploaderTest - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 24 - - - txtCustomUploaderURL - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 25 - - - cbCustomUploaderImageUploader - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 26 - - - txtCustomUploaderRequestURL - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 27 - - - txtCustomUploaderLog - - - System.Windows.Forms.RichTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 28 - - - lblCustomUploaderThumbnailURL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 29 - - - lblCustomUploaderFileForm - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 30 - - - lblCustomUploaderRequestType - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 31 - - - cbCustomUploaderRequestType - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 32 - - - txtCustomUploaderFileForm - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 33 - - - lblCustomUploaderURL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 34 - - + 4, 22 - - 3, 3, 3, 3 - - + 972, 493 - - 5 + + 0 - - Custom uploaders + + Twitter - - tpCustomUploaders + + tpTwitter - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcOtherUploaders - - 1 - - - tpCustomUploaderJsonParse - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcCustomUploaderResponseParse - - - 0 - - - tpCustomUploaderXmlParse - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcCustomUploaderResponseParse - - - 1 - - - tpCustomUploaderRegexParse - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcCustomUploaderResponseParse - - - 2 - - - 536, 88 - - - 256, 184 - - - 36 - - - tcCustomUploaderResponseParse - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 0 - - - btnCustomUploaderJsonAddSyntax - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderJsonParse - - - 0 - - - btnCustomUploadJsonPathHelp - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderJsonParse - - - 1 - - - lblCustomUploaderJsonPathExample - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderJsonParse - - - 2 - - - lblCustomUploaderJsonPath - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderJsonParse - - - 3 - - - txtCustomUploaderJsonPath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderJsonParse - - - 4 - - - 4, 22 - - - 3, 3, 3, 3 - - - 248, 158 - - - 1 - - - JSON - - - tpCustomUploaderJsonParse - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcCustomUploaderResponseParse - - + 0 @@ -1480,92 +682,32 @@ store.book[0].title 4 - - btnCustomUploaderXmlSyntaxAdd - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderXmlParse - - - 0 - - - btnCustomUploaderXPathHelp - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderXmlParse - - - 1 - - - lblCustomUploaderXPathExample - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderXmlParse - - - 2 - - - lblCustomUploaderXPath - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderXmlParse - - - 3 - - - txtCustomUploaderXPath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderXmlParse - - - 4 - - + 4, 22 - + 3, 3, 3, 3 - + 248, 158 - - 2 + + 1 - - XML + + JSON - - tpCustomUploaderXmlParse + + tpCustomUploaderJsonParse - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcCustomUploaderResponseParse - - 1 + + 0 False @@ -1708,116 +850,32 @@ store.book[0].title 4 - - btnCustomUploaderRegexHelp - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderRegexParse - - - 0 - - - btnCustomUploaderRegexAddSyntax - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderRegexParse - - - 1 - - - txtCustomUploaderRegexp - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderRegexParse - - - 2 - - - btnCustomUploaderRegexpUpdate - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderRegexParse - - - 3 - - - btnCustomUploaderRegexpAdd - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderRegexParse - - - 4 - - - btnCustomUploaderRegexpRemove - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderRegexParse - - - 5 - - - lvCustomUploaderRegexps - - - ShareX.HelpersLib.MyListView, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpCustomUploaderRegexParse - - - 6 - - + 4, 22 - + 3, 3, 3, 3 - + 248, 158 - - 0 + + 2 - - Regex + + XML - - tpCustomUploaderRegexParse + + tpCustomUploaderXmlParse - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcCustomUploaderResponseParse - - 2 + + 1 NoControl @@ -1978,6 +1036,9 @@ store.book[0].title 5 + + 227 + 8, 64 @@ -1999,151 +1060,52 @@ store.book[0].title 6 - - 227 - - - tpCustomUploaderArguments - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcCustomUploaderArguments - - - 0 - - - tpCustomUploaderHeaders - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcCustomUploaderArguments - - - 1 - - - 272, 160 - - - 256, 240 - - - 34 - - - tcCustomUploaderArguments - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 1 - - - btnCustomUploaderArgUpdate - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderArguments - - - 0 - - - txtCustomUploaderArgName - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderArguments - - - 1 - - - txtCustomUploaderArgValue - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderArguments - - - 2 - - - btnCustomUploaderArgAdd - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderArguments - - - 3 - - - btnCustomUploaderArgRemove - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderArguments - - - 4 - - - lvCustomUploaderArguments - - - ShareX.HelpersLib.MyListView, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpCustomUploaderArguments - - - 5 - - + 4, 22 - + 3, 3, 3, 3 - - 248, 214 + + 248, 158 - + 0 - - Arguments + + Regex - - tpCustomUploaderArguments + + tpCustomUploaderRegexParse - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tcCustomUploaderArguments + + tcCustomUploaderResponseParse - + + 2 + + + 536, 88 + + + 256, 184 + + + 36 + + + tcCustomUploaderResponseParse + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpCustomUploaders + + 0 @@ -2269,6 +1231,18 @@ store.book[0].title 4 + + Name + + + 114 + + + Value + + + 114 + 8, 64 @@ -2290,116 +1264,32 @@ store.book[0].title 5 - - Name - - - 114 - - - Value - - - 114 - - - btnCustomUploaderHeaderUpdate - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderHeaders - - - 0 - - - txtCustomUploaderHeaderName - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderHeaders - - - 1 - - - txtCustomUploaderHeaderValue - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderHeaders - - - 2 - - - btnCustomUploaderHeaderAdd - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderHeaders - - - 3 - - - btnCustomUploaderHeaderRemove - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderHeaders - - - 4 - - - lvCustomUploaderHeaders - - - ShareX.HelpersLib.MyListView, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpCustomUploaderHeaders - - - 5 - - + 4, 22 - + 3, 3, 3, 3 - + 248, 214 - - 1 + + 0 - - Headers + + Arguments - - tpCustomUploaderHeaders + + tpCustomUploaderArguments - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcCustomUploaderArguments - - 1 + + 0 NoControl @@ -2524,6 +1414,18 @@ store.book[0].title 4 + + Name + + + 114 + + + Value + + + 114 + 8, 64 @@ -2545,17 +1447,53 @@ store.book[0].title 5 - - Name + + 4, 22 - - 114 + + 3, 3, 3, 3 - - Value + + 248, 214 - - 114 + + 1 + + + Headers + + + tpCustomUploaderHeaders + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcCustomUploaderArguments + + + 1 + + + 272, 160 + + + 256, 240 + + + 34 + + + tcCustomUploaderArguments + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpCustomUploaders + + + 1 NoControl @@ -2935,126 +1873,6 @@ store.book[0].title 15 - - btnCustomUploadersExportAll - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbCustomUploaders - - - 1 - - - btnCustomUploaderClearUploaders - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbCustomUploaders - - - 2 - - - eiCustomUploaders - - - ShareX.HelpersLib.ExportImportControl, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - gbCustomUploaders - - - 3 - - - lbCustomUploaderList - - - System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbCustomUploaders - - - 4 - - - btnCustomUploaderRemove - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbCustomUploaders - - - 5 - - - btnCustomUploaderUpdate - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbCustomUploaders - - - 6 - - - txtCustomUploaderName - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbCustomUploaders - - - 7 - - - btnCustomUploaderAdd - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbCustomUploaders - - - 8 - - - 8, 8 - - - 248, 344 - - - 0 - - - Uploaders - - - gbCustomUploaders - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 16 - NoControl @@ -3259,6 +2077,30 @@ store.book[0].title 8 + + 8, 8 + + + 248, 344 + + + 0 + + + Uploaders + + + gbCustomUploaders + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpCustomUploaders + + + 16 + True @@ -3715,204 +2557,84 @@ store.book[0].title 34 - - tcURLShorteners - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpURLShorteners - - - 0 - - + 4, 22 - + 3, 3, 3, 3 - - 986, 525 - - - 3 - - - URL shorteners - - - tpURLShorteners - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcUploaders - - - 3 - - - tpBitly - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcURLShorteners - - - 0 - - - tpGoogleURLShortener - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcURLShorteners - - - 1 - - - tpYourls - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcURLShorteners - - - 2 - - - tpAdFly - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcURLShorteners - - - 3 - - - tpCoinURL - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcURLShorteners - - - 4 - - - tpPolr - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcURLShorteners - - - 5 - - - Fill - - - 3, 3 - - - 980, 519 - - - 0 - - - tcURLShorteners - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpURLShorteners - - - 0 - - - txtBitlyDomain - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpBitly - - - 0 - - - lblBitlyDomain - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpBitly - - - 1 - - - oauth2Bitly - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpBitly - - - 2 - - - 4, 22 - - - 3, 3, 3, 3 - - + 972, 493 - - 1 + + 5 - - bit.ly + + Custom uploaders - - tpBitly + + tpCustomUploaders - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tcURLShorteners + + tcOtherUploaders - + + 1 + + + Fill + + + 3, 3 + + + 980, 519 + + 0 + + tcOtherUploaders + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpOtherUploaders + + + 0 + + + 4, 22 + + + 3, 3, 3, 3 + + + 986, 525 + + + 6 + + + Other uploaders + + + tpOtherUploaders + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcUploaders + + + 4 + 16, 248 @@ -3985,56 +2707,32 @@ store.book[0].title 2 - - oauth2GoogleURLShortener - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpGoogleURLShortener - - - 0 - - - atcGoogleURLShortenerAccountType - - - ShareX.UploadersLib.AccountTypeControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpGoogleURLShortener - - - 1 - - + 4, 22 - + 3, 3, 3, 3 - + 972, 493 - - 0 + + 1 - - Google + + bit.ly - - tpGoogleURLShortener + + tpBitly - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcURLShorteners - - 1 + + 0 16, 64 @@ -4078,140 +2776,32 @@ store.book[0].title 1 - - txtYourlsPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpYourls - - - 0 - - - txtYourlsUsername - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpYourls - - - 1 - - - txtYourlsSignature - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpYourls - - - 2 - - - lblYourlsNote - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpYourls - - - 3 - - - lblYourlsPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpYourls - - - 4 - - - lblYourlsUsername - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpYourls - - - 5 - - - lblYourlsSignature - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpYourls - - - 6 - - - txtYourlsAPIURL - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpYourls - - - 7 - - - lblYourlsAPIURL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpYourls - - - 8 - - + 4, 22 - + 3, 3, 3, 3 - + 972, 493 - - 2 + + 0 - - YOURLS + + Google - - tpYourls + + tpGoogleURLShortener - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcURLShorteners - - 2 + + 1 16, 200 @@ -4447,92 +3037,32 @@ store.book[0].title 8 - - llAdflyLink - - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAdFly - - - 0 - - - txtAdflyAPIUID - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAdFly - - - 1 - - - lblAdflyAPIUID - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAdFly - - - 2 - - - txtAdflyAPIKEY - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAdFly - - - 3 - - - lblAdflyAPIKEY - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAdFly - - - 4 - - + 4, 22 - + 3, 3, 3, 3 - + 972, 493 - - 3 + + 2 - - adf.ly + + YOURLS - - tpAdFly + + tpYourls - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcURLShorteners - - 3 + + 2 True @@ -4666,53 +3196,32 @@ store.book[0].title 4 - - txtCoinURLUUID - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCoinURL - - - 0 - - - lblCoinURLUUID - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCoinURL - - - 1 - - + 4, 22 - + + 3, 3, 3, 3 + + 972, 493 - - 5 + + 3 - - CoinURL + + adf.ly - - tpCoinURL + + tpAdFly - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcURLShorteners - - 4 + + 3 16, 32 @@ -4765,101 +3274,29 @@ store.book[0].title 1 - - cbPolrUseAPIv1 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPolr - - - 0 - - - cbPolrIsSecret - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPolr - - - 1 - - - txtPolrAPIKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPolr - - - 2 - - - lblPolrAPIKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPolr - - - 3 - - - txtPolrAPIHostname - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPolr - - - 4 - - - lblPolrAPIHostname - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPolr - - - 5 - - + 4, 22 - + 972, 493 - - 6 + + 5 - - Polr + + CoinURL - - tpPolr + + tpCoinURL - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcURLShorteners - - 5 + + 4 True @@ -5023,6 +3460,90 @@ store.book[0].title 5 + + 4, 22 + + + 972, 493 + + + 6 + + + Polr + + + tpPolr + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcURLShorteners + + + 5 + + + Fill + + + 3, 3 + + + 980, 519 + + + 0 + + + tcURLShorteners + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpURLShorteners + + + 0 + + + 4, 22 + + + 3, 3, 3, 3 + + + 986, 525 + + + 3 + + + URL shorteners + + + tpURLShorteners + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcUploaders + + + 3 + + + 608, 48 + + + 192, 24 + + + 8 + eiFTP @@ -5035,6 +3556,21 @@ store.book[0].title 0 + + NoControl + + + 512, 48 + + + 88, 24 + + + 7 + + + Client... + btnFtpClient @@ -5047,6 +3583,24 @@ store.book[0].title 1 + + True + + + NoControl + + + 544, 16 + + + 26, 13 + + + 4 + + + File: + lblFtpFiles @@ -5059,6 +3613,24 @@ store.book[0].title 2 + + True + + + NoControl + + + 280, 16 + + + 31, 13 + + + 2 + + + Text: + lblFtpText @@ -5071,6 +3643,24 @@ store.book[0].title 3 + + True + + + NoControl + + + 16, 16 + + + 39, 13 + + + 0 + + + Image: + lblFtpImages @@ -5083,6 +3673,15 @@ store.book[0].title 4 + + 80, 12 + + + 184, 21 + + + 1 + cboFtpImages @@ -5095,6 +3694,15 @@ store.book[0].title 5 + + 608, 12 + + + 184, 21 + + + 5 + cboFtpFiles @@ -5107,6 +3715,15 @@ store.book[0].title 6 + + 344, 12 + + + 184, 21 + + + 3 + cboFtpText @@ -5119,6 +3736,21 @@ store.book[0].title 7 + + Top, Bottom, Left + + + 8, 40 + + + 4, 4, 4, 4 + + + 792, 424 + + + 6 + ucFTPAccounts @@ -5158,6 +3790,15 @@ store.book[0].title 0 + + 16, 88 + + + 328, 200 + + + 1 + oauth2Dropbox @@ -5170,6 +3811,15 @@ store.book[0].title 0 + + 16, 368 + + + 128, 21 + + + 7 + cbDropboxURLType @@ -5182,6 +3832,24 @@ store.book[0].title 1 + + True + + + NoControl + + + 16, 344 + + + 134, 17 + + + 6 + + + Create shareable URL: + cbDropboxAutoCreateShareableLink @@ -5194,6 +3862,134 @@ store.book[0].title 2 + + + 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 + + + + NoControl + + + 16, 16 + + + 248, 64 + + + 19 + pbDropboxLogo @@ -5206,6 +4002,24 @@ store.book[0].title 3 + + True + + + NoControl + + + 13, 296 + + + 68, 13 + + + 2 + + + Upload path: + lblDropboxPath @@ -5218,6 +4032,15 @@ store.book[0].title 4 + + 16, 312 + + + 320, 20 + + + 3 + txtDropboxPath @@ -5257,6 +4080,18 @@ store.book[0].title 1 + + False + + + 352, 40 + + + 440, 339 + + + 10 + tvOneDrive @@ -5269,6 +4104,24 @@ store.book[0].title 0 + + True + + + NoControl + + + 349, 16 + + + 81, 13 + + + 7 + + + Selected folder: + lblOneDriveFolderID @@ -5281,6 +4134,24 @@ store.book[0].title 1 + + True + + + NoControl + + + 16, 264 + + + 125, 17 + + + 3 + + + Create shareable link + cbOneDriveCreateShareableLink @@ -5293,6 +4164,15 @@ store.book[0].title 2 + + 16, 16 + + + 328, 240 + + + 2 + oAuth2OneDrive @@ -5332,6 +4212,24 @@ store.book[0].title 2 + + True + + + NoControl + + + 16, 287 + + + 93, 17 + + + 13 + + + Use direct link + cbGoogleDriveDirectLink @@ -5344,6 +4242,24 @@ store.book[0].title 0 + + True + + + NoControl + + + 352, 16 + + + 165, 17 + + + 12 + + + Upload files to selected folder + cbGoogleDriveUseFolder @@ -5356,6 +4272,15 @@ store.book[0].title 1 + + 352, 88 + + + 256, 20 + + + 9 + txtGoogleDriveFolderID @@ -5368,6 +4293,24 @@ store.book[0].title 2 + + True + + + NoControl + + + 349, 71 + + + 53, 13 + + + 8 + + + Folder ID: + lblGoogleDriveFolderID @@ -5380,6 +4323,27 @@ store.book[0].title 3 + + Title + + + 200 + + + Description + + + 228 + + + 352, 112 + + + 432, 352 + + + 11 + lvGoogleDriveFoldersList @@ -5392,6 +4356,24 @@ store.book[0].title 4 + + False + + + NoControl + + + 352, 40 + + + 168, 23 + + + 10 + + + Refresh folders list + btnGoogleDriveRefreshFolders @@ -5404,6 +4386,24 @@ store.book[0].title 5 + + True + + + NoControl + + + 16, 264 + + + 106, 17 + + + 1 + + + Is public upload? + cbGoogleDriveIsPublic @@ -5416,6 +4416,15 @@ store.book[0].title 6 + + 16, 16 + + + 328, 240 + + + 0 + oauth2GoogleDrive @@ -5455,6 +4464,21 @@ store.book[0].title 3 + + NoControl + + + 8, 8 + + + 256, 86 + + + AutoSize + + + 18 + pbPuush @@ -5467,6 +4491,24 @@ store.book[0].title 0 + + True + + + NoControl + + + 13, 288 + + + 47, 13 + + + 17 + + + API key: + lblPuushAPIKey @@ -5479,6 +4521,15 @@ store.book[0].title 1 + + 16, 304 + + + 248, 20 + + + 16 + txtPuushAPIKey @@ -5491,6 +4542,24 @@ store.book[0].title 2 + + True + + + NoControl + + + 13, 104 + + + 104, 13 + + + 15 + + + Create an account... + llPuushCreateAccount @@ -5503,6 +4572,24 @@ store.book[0].title 3 + + True + + + NoControl + + + 13, 224 + + + 106, 13 + + + 14 + + + Forgotten password? + llPuushForgottenPassword @@ -5515,6 +4602,21 @@ store.book[0].title 4 + + NoControl + + + 16, 248 + + + 248, 32 + + + 13 + + + Login + btnPuushLogin @@ -5527,6 +4629,15 @@ store.book[0].title 5 + + 16, 192 + + + 248, 20 + + + 12 + txtPuushPassword @@ -5539,6 +4650,15 @@ store.book[0].title 6 + + 16, 144 + + + 248, 20 + + + 11 + txtPuushEmail @@ -5551,6 +4671,24 @@ store.book[0].title 7 + + True + + + NoControl + + + 13, 128 + + + 35, 13 + + + 10 + + + Email: + lblPuushEmail @@ -5563,6 +4701,24 @@ store.book[0].title 8 + + True + + + NoControl + + + 13, 176 + + + 56, 13 + + + 9 + + + Password: + lblPuushPassword @@ -5602,6 +4758,24 @@ store.book[0].title 4 + + True + + + NoControl + + + 349, 425 + + + 304, 13 + + + 5 + + + Note: You can double click folder name to go inside that folder. + lblBoxFolderTip @@ -5614,6 +4788,24 @@ store.book[0].title 0 + + True + + + NoControl + + + 16, 256 + + + 125, 17 + + + 1 + + + Create shareable link + cbBoxShare @@ -5626,6 +4818,21 @@ store.book[0].title 1 + + Folder name + + + 435 + + + 352, 72 + + + 440, 344 + + + 4 + lvBoxFolders @@ -5638,6 +4845,24 @@ store.book[0].title 2 + + True + + + NoControl + + + 349, 50 + + + 81, 13 + + + 3 + + + Selected folder: + lblBoxFolderID @@ -5650,6 +4875,24 @@ store.book[0].title 3 + + False + + + NoControl + + + 352, 16 + + + 152, 23 + + + 2 + + + Refresh folders list + btnBoxRefreshFolders @@ -5662,6 +4905,15 @@ store.book[0].title 4 + + 16, 16 + + + 328, 240 + + + 0 + oauth2Box @@ -5798,7 +5050,7 @@ store.book[0].title 3 - 16, 320 + 16, 328 352, 20 @@ -5825,7 +5077,7 @@ store.book[0].title NoControl - 13, 370 + 13, 392 72, 13 @@ -5855,7 +5107,7 @@ store.book[0].title NoControl - 13, 391 + 13, 413 45, 13 @@ -6214,3488 +5466,6 @@ store.book[0].title 6 - - btnAzureStoragePortal - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAzureStorage - - - 0 - - - txtAzureStorageContainer - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAzureStorage - - - 1 - - - lblAzureStorageContainer - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAzureStorage - - - 2 - - - txtAzureStorageAccessKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAzureStorage - - - 3 - - - lblAzureStorageAccessKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAzureStorage - - - 4 - - - txtAzureStorageAccountName - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAzureStorage - - - 5 - - - lblAzureStorageAccountName - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAzureStorage - - - 6 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 28 - - - Azure Storage - - - tpAzureStorage - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 7 - - - btnMegaRefreshFolders - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMega - - - 0 - - - lblMegaStatus - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMega - - - 1 - - - btnMegaRegister - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMega - - - 2 - - - lblMegaFolder - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMega - - - 3 - - - lblMegaStatusTitle - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMega - - - 4 - - - cbMegaFolder - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMega - - - 5 - - - lblMegaEmail - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMega - - - 6 - - - btnMegaLogin - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMega - - - 7 - - - txtMegaEmail - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMega - - - 8 - - - txtMegaPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMega - - - 9 - - - lblMegaPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMega - - - 10 - - - 4, 40 - - - 972, 475 - - - 12 - - - Mega - - - tpMega - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 8 - - - lblOwnCloudHostExample - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 0 - - - cbOwnCloud81Compatibility - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 1 - - - cbOwnCloudDirectLink - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 2 - - - cbOwnCloudCreateShare - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 3 - - - txtOwnCloudPath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 4 - - - txtOwnCloudPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 5 - - - txtOwnCloudUsername - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 6 - - - txtOwnCloudHost - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 7 - - - lblOwnCloudPath - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 8 - - - lblOwnCloudPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 9 - - - lblOwnCloudUsername - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 10 - - - lblOwnCloudHost - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 11 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 15 - - - ownCloud - - - tpOwnCloud - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 9 - - - cbMediaFireUseLongLink - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMediaFire - - - 0 - - - txtMediaFirePath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMediaFire - - - 1 - - - lblMediaFirePath - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMediaFire - - - 2 - - - txtMediaFirePassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMediaFire - - - 3 - - - txtMediaFireEmail - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMediaFire - - - 4 - - - lblMediaFirePassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMediaFire - - - 5 - - - lblMediaFireEmail - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMediaFire - - - 6 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 16 - - - MediaFire - - - tpMediaFire - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 10 - - - lblPushbulletDevices - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPushbullet - - - 0 - - - cboPushbulletDevices - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPushbullet - - - 1 - - - btnPushbulletGetDeviceList - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPushbullet - - - 2 - - - lblPushbulletUserKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPushbullet - - - 3 - - - txtPushbulletUserKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPushbullet - - - 4 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 14 - - - Pushbullet - - - tpPushbullet - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 11 - - - btnSendSpaceRegister - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSendSpace - - - 0 - - - lblSendSpacePassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSendSpace - - - 1 - - - lblSendSpaceUsername - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSendSpace - - - 2 - - - txtSendSpacePassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSendSpace - - - 3 - - - txtSendSpaceUserName - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSendSpace - - - 4 - - - atcSendSpaceAccountType - - - ShareX.UploadersLib.AccountTypeControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpSendSpace - - - 5 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 6 - - - SendSpace - - - tpSendSpace - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 12 - - - lblGe_ttStatus - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGe_tt - - - 0 - - - lblGe_ttPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGe_tt - - - 1 - - - lblGe_ttEmail - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGe_tt - - - 2 - - - btnGe_ttLogin - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGe_tt - - - 3 - - - txtGe_ttPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGe_tt - - - 4 - - - txtGe_ttEmail - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGe_tt - - - 5 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 7 - - - Ge.tt - - - tpGe_tt - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 13 - - - cbLocalhostrDirectURL - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpHostr - - - 0 - - - lblLocalhostrPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpHostr - - - 1 - - - lblLocalhostrEmail - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpHostr - - - 2 - - - txtLocalhostrPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpHostr - - - 3 - - - txtLocalhostrEmail - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpHostr - - - 4 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 8 - - - Hostr - - - tpHostr - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 14 - - - lblMinusURLType - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMinus - - - 0 - - - cbMinusURLType - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMinus - - - 1 - - - gbMinusUserPass - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMinus - - - 2 - - - gbMinusUpload - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMinus - - - 3 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 3 - - - Minus - - - tpMinus - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 15 - - - txtJiraIssuePrefix - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpJira - - - 0 - - - lblJiraIssuePrefix - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpJira - - - 1 - - - gpJiraServer - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpJira - - - 2 - - - oAuthJira - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpJira - - - 3 - - - 4, 40 - - - 972, 475 - - - 11 - - - Atlassian Jira - - - tpJira - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 16 - - - lblLambdaInfo - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpLambda - - - 0 - - - lblLambdaApiKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpLambda - - - 1 - - - txtLambdaApiKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpLambda - - - 2 - - - lblLambdaUploadURL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpLambda - - - 3 - - - cbLambdaUploadURL - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpLambda - - - 4 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 20 - - - Lambda - - - tpLambda - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 17 - - - btnPomfTest - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPomf - - - 0 - - - txtPomfResultURL - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPomf - - - 1 - - - txtPomfUploadURL - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPomf - - - 2 - - - lblPomfResultURL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPomf - - - 3 - - - lblPomfUploadURL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPomf - - - 4 - - - lblPomfUploaders - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPomf - - - 5 - - - cbPomfUploaders - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPomf - - - 6 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 22 - - - Pomf - - - tpPomf - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 18 - - - cbSeafileAPIURL - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 0 - - - grpSeafileShareSettings - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 1 - - - btnSeafileLibraryPasswordValidate - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 2 - - - txtSeafileLibraryPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 3 - - - lblSeafileLibraryPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 4 - - - lvSeafileLibraries - - - ShareX.HelpersLib.MyListView, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpSeafile - - - 5 - - - btnSeafilePathValidate - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 6 - - - txtSeafileDirectoryPath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 7 - - - lblSeafileWritePermNotif - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 8 - - - lblSeafilePath - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 9 - - - txtSeafileUploadLocationRefresh - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 10 - - - lblSeafileSelectLibrary - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 11 - - - grpSeafileAccInfo - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 12 - - - btnSeafileCheckAuthToken - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 13 - - - btnSeafileCheckAPIURL - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 14 - - - grpSeafileObtainAuthToken - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 15 - - - cbSeafileIgnoreInvalidCert - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 16 - - - cbSeafileCreateShareableURL - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 17 - - - txtSeafileAuthToken - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 18 - - - lblSeafileAuthToken - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 19 - - - lblSeafileAPIURL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 20 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 23 - - - Seafile - - - tpSeafile - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 19 - - - cbStreamableUseDirectURL - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpStreamable - - - 0 - - - txtStreamablePassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpStreamable - - - 1 - - - txtStreamableUsername - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpStreamable - - - 2 - - - lblStreamableUsername - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpStreamable - - - 3 - - - lblStreamablePassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpStreamable - - - 4 - - - cbStreamableAnonymous - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpStreamable - - - 5 - - - 4, 40 - - - 972, 475 - - - 24 - - - Streamable - - - tpStreamable - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 20 - - - txtSulAPIKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSul - - - 0 - - - lblSulAPIKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSul - - - 1 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 25 - - - s-ul - - - tpSul - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 21 - - - btnLithiioGetAPIKey - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpLithiio - - - 0 - - - lblLithiioApiKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpLithiio - - - 1 - - - txtLithiioApiKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpLithiio - - - 2 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 20 - - - Lithiio - - - tpLithiio - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 22 - - - gbUpleaLoginCredentials - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUplea - - - 0 - - - gbUpleaUserInformation - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUplea - - - 1 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 27 - - - Uplea - - - tpUplea - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 23 - - - gpPlikSettings - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPlik - - - 0 - - - gpPlikLoginCredentials - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPlik - - - 1 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 29 - - - Plik - - - tpPlik - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 24 - - - lblSharedFolderFiles - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSharedFolder - - - 0 - - - lblSharedFolderText - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSharedFolder - - - 1 - - - cboSharedFolderFiles - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSharedFolder - - - 2 - - - lblSharedFolderImages - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSharedFolder - - - 3 - - - cboSharedFolderText - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSharedFolder - - - 4 - - - cboSharedFolderImages - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSharedFolder - - - 5 - - - ucLocalhostAccounts - - - ShareX.UploadersLib.AccountsControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpSharedFolder - - - 6 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 9 - - - Shared folder - - - tpSharedFolder - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 25 - - - txtEmailAutomaticSendTo - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 0 - - - cbEmailAutomaticSend - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 1 - - - lblEmailSmtpServer - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 2 - - - lblEmailPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 3 - - - cbEmailRememberLastTo - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 4 - - - txtEmailFrom - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 5 - - - txtEmailPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 6 - - - txtEmailDefaultBody - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 7 - - - lblEmailFrom - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 8 - - - txtEmailSmtpServer - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 9 - - - lblEmailDefaultSubject - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 10 - - - lblEmailDefaultBody - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 11 - - - nudEmailSmtpPort - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 12 - - - lblEmailSmtpPort - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 13 - - - txtEmailDefaultSubject - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 14 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 10 - - - Email - - - tpEmail - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 26 - - - Fill - - - 3, 3 - - - 980, 519 - - - 0 - - - tcFileUploaders - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFileUploaders - - - 0 - - - 4, 22 - - - 3, 3, 3, 3 - - - 986, 525 - - - 2 - - - File uploaders - - - tpFileUploaders - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcUploaders - - - 2 - - - 608, 48 - - - 192, 24 - - - 8 - - - eiFTP - - - ShareX.HelpersLib.ExportImportControl, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpFTP - - - 0 - - - NoControl - - - 512, 48 - - - 88, 24 - - - 7 - - - Client... - - - btnFtpClient - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFTP - - - 1 - - - True - - - NoControl - - - 544, 16 - - - 26, 13 - - - 4 - - - File: - - - lblFtpFiles - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFTP - - - 2 - - - True - - - NoControl - - - 280, 16 - - - 31, 13 - - - 2 - - - Text: - - - lblFtpText - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFTP - - - 3 - - - True - - - NoControl - - - 16, 16 - - - 39, 13 - - - 0 - - - Image: - - - lblFtpImages - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFTP - - - 4 - - - 80, 12 - - - 184, 21 - - - 1 - - - cboFtpImages - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFTP - - - 5 - - - 608, 12 - - - 184, 21 - - - 5 - - - cboFtpFiles - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFTP - - - 6 - - - 344, 12 - - - 184, 21 - - - 3 - - - cboFtpText - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFTP - - - 7 - - - Top, Bottom, Left - - - 8, 40 - - - 4, 4, 4, 4 - - - 792, 424 - - - 6 - - - ucFTPAccounts - - - ShareX.UploadersLib.AccountsControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpFTP - - - 8 - - - 16, 88 - - - 328, 200 - - - 1 - - - oauth2Dropbox - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpDropbox - - - 0 - - - 16, 368 - - - 128, 21 - - - 7 - - - cbDropboxURLType - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpDropbox - - - 1 - - - True - - - NoControl - - - 16, 344 - - - 134, 17 - - - 6 - - - Create shareable URL: - - - cbDropboxAutoCreateShareableLink - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpDropbox - - - 2 - - - - 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 - - - - NoControl - - - 16, 16 - - - 248, 64 - - - 19 - - - pbDropboxLogo - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpDropbox - - - 3 - - - True - - - NoControl - - - 13, 296 - - - 68, 13 - - - 2 - - - Upload path: - - - lblDropboxPath - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpDropbox - - - 4 - - - 16, 312 - - - 320, 20 - - - 3 - - - txtDropboxPath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpDropbox - - - 5 - - - False - - - 352, 40 - - - 440, 339 - - - 10 - - - tvOneDrive - - - System.Windows.Forms.TreeView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOneDrive - - - 0 - - - True - - - NoControl - - - 349, 16 - - - 81, 13 - - - 7 - - - Selected folder: - - - lblOneDriveFolderID - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOneDrive - - - 1 - - - True - - - NoControl - - - 16, 264 - - - 125, 17 - - - 3 - - - Create shareable link - - - cbOneDriveCreateShareableLink - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOneDrive - - - 2 - - - 16, 16 - - - 328, 240 - - - 2 - - - oAuth2OneDrive - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpOneDrive - - - 3 - - - True - - - NoControl - - - 16, 287 - - - 93, 17 - - - 13 - - - Use direct link - - - cbGoogleDriveDirectLink - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGoogleDrive - - - 0 - - - True - - - NoControl - - - 352, 16 - - - 165, 17 - - - 12 - - - Upload files to selected folder - - - cbGoogleDriveUseFolder - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGoogleDrive - - - 1 - - - 352, 88 - - - 256, 20 - - - 9 - - - txtGoogleDriveFolderID - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGoogleDrive - - - 2 - - - True - - - NoControl - - - 349, 71 - - - 53, 13 - - - 8 - - - Folder ID: - - - lblGoogleDriveFolderID - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGoogleDrive - - - 3 - - - 352, 112 - - - 432, 352 - - - 11 - - - lvGoogleDriveFoldersList - - - ShareX.HelpersLib.MyListView, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpGoogleDrive - - - 4 - - - Title - - - 200 - - - Description - - - 228 - - - False - - - NoControl - - - 352, 40 - - - 168, 23 - - - 10 - - - Refresh folders list - - - btnGoogleDriveRefreshFolders - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGoogleDrive - - - 5 - - - True - - - NoControl - - - 16, 264 - - - 106, 17 - - - 1 - - - Is public upload? - - - cbGoogleDriveIsPublic - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGoogleDrive - - - 6 - - - 16, 16 - - - 328, 240 - - - 0 - - - oauth2GoogleDrive - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpGoogleDrive - - - 7 - - - NoControl - - - 8, 8 - - - 256, 86 - - - AutoSize - - - 18 - - - pbPuush - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPuush - - - 0 - - - True - - - NoControl - - - 13, 288 - - - 47, 13 - - - 17 - - - API key: - - - lblPuushAPIKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPuush - - - 1 - - - 16, 304 - - - 248, 20 - - - 16 - - - txtPuushAPIKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPuush - - - 2 - - - True - - - NoControl - - - 13, 104 - - - 104, 13 - - - 15 - - - Create an account... - - - llPuushCreateAccount - - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPuush - - - 3 - - - True - - - NoControl - - - 13, 224 - - - 106, 13 - - - 14 - - - Forgotten password? - - - llPuushForgottenPassword - - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPuush - - - 4 - - - NoControl - - - 16, 248 - - - 248, 32 - - - 13 - - - Login - - - btnPuushLogin - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPuush - - - 5 - - - 16, 192 - - - 248, 20 - - - 12 - - - txtPuushPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPuush - - - 6 - - - 16, 144 - - - 248, 20 - - - 11 - - - txtPuushEmail - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPuush - - - 7 - - - True - - - NoControl - - - 13, 128 - - - 35, 13 - - - 10 - - - Email: - - - lblPuushEmail - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPuush - - - 8 - - - True - - - NoControl - - - 13, 176 - - - 56, 13 - - - 9 - - - Password: - - - lblPuushPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPuush - - - 9 - - - True - - - NoControl - - - 349, 425 - - - 304, 13 - - - 5 - - - Note: You can double click folder name to go inside that folder. - - - lblBoxFolderTip - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpBox - - - 0 - - - True - - - NoControl - - - 16, 256 - - - 125, 17 - - - 1 - - - Create shareable link - - - cbBoxShare - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpBox - - - 1 - - - 352, 72 - - - 440, 344 - - - 4 - - - lvBoxFolders - - - ShareX.HelpersLib.MyListView, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpBox - - - 2 - - - Folder name - - - 435 - - - True - - - NoControl - - - 349, 50 - - - 81, 13 - - - 3 - - - Selected folder: - - - lblBoxFolderID - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpBox - - - 3 - - - False - - - NoControl - - - 352, 16 - - - 152, 23 - - - 2 - - - Refresh folders list - - - btnBoxRefreshFolders - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpBox - - - 4 - - - 16, 16 - - - 328, 240 - - - 0 - - - oauth2Box - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpBox - - - 5 - NoControl @@ -9882,6 +5652,33 @@ store.book[0].title 6 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 28 + + + Azure Storage + + + tpAzureStorage + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 7 + NoControl @@ -10176,6 +5973,30 @@ store.book[0].title 10 + + 4, 40 + + + 972, 475 + + + 12 + + + Mega + + + tpMega + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 8 + True @@ -10500,6 +6321,33 @@ store.book[0].title 11 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 15 + + + ownCloud + + + tpOwnCloud + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 9 + True @@ -10686,6 +6534,33 @@ store.book[0].title 6 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 16 + + + MediaFire + + + tpMediaFire + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 10 + True @@ -10821,6 +6696,33 @@ store.book[0].title 4 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 14 + + + Pushbullet + + + tpPushbullet + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 11 + NoControl @@ -10971,6 +6873,33 @@ store.book[0].title 5 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 6 + + + SendSpace + + + tpSendSpace + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 12 + True @@ -11130,6 +7059,33 @@ store.book[0].title 5 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 7 + + + Ge.tt + + + tpGe_tt + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 13 + True @@ -11262,6 +7218,33 @@ store.book[0].title 4 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 8 + + + Hostr + + + tpHostr + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 14 + True @@ -11313,114 +7296,6 @@ store.book[0].title 1 - - lblMinusAuthStatus - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbMinusUserPass - - - 0 - - - btnMinusRefreshAuth - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbMinusUserPass - - - 1 - - - lblMinusPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbMinusUserPass - - - 2 - - - lblMinusUsername - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbMinusUserPass - - - 3 - - - txtMinusPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbMinusUserPass - - - 4 - - - txtMinusUsername - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbMinusUserPass - - - 5 - - - btnMinusAuth - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbMinusUserPass - - - 6 - - - 16, 16 - - - 712, 200 - - - 0 - - - Authentication - - - gbMinusUserPass - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMinus - - - 2 - True @@ -11607,89 +7482,29 @@ store.book[0].title 6 - - btnMinusReadFolderList + + 16, 16 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 712, 200 - - gbMinusUpload - - + 0 - - cbMinusPublic + + Authentication - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gbMinusUserPass - - gbMinusUpload - - - 1 - - - btnMinusFolderAdd - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbMinusUpload - - - 2 - - - btnMinusFolderRemove - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbMinusUpload - - - 3 - - - cboMinusFolders - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbMinusUpload - - - 4 - - - 16, 224 - - - 712, 88 - - - 1 - - - Upload images to - - - gbMinusUpload - - + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tpMinus - - 3 + + 2 True @@ -11829,6 +7644,57 @@ store.book[0].title 4 + + 16, 224 + + + 712, 88 + + + 1 + + + Upload images to + + + gbMinusUpload + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpMinus + + + 3 + + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 3 + + + Minus + + + tpMinus + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 15 + 472, 277 @@ -11883,66 +7749,6 @@ store.book[0].title 1 - - txtJiraConfigHelp - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gpJiraServer - - - 0 - - - txtJiraHost - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gpJiraServer - - - 1 - - - lblJiraHost - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gpJiraServer - - - 2 - - - 13, 13 - - - 451, 358 - - - 0 - - - Jira server - - - gpJiraServer - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpJira - - - 2 - 8, 64 @@ -12027,6 +7833,30 @@ store.book[0].title 2 + + 13, 13 + + + 451, 358 + + + 0 + + + Jira server + + + gpJiraServer + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpJira + + + 2 + 473, 13 @@ -12048,6 +7878,30 @@ store.book[0].title 3 + + 4, 40 + + + 972, 475 + + + 11 + + + Atlassian Jira + + + tpJira + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 16 + True @@ -12180,6 +8034,33 @@ store.book[0].title 4 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 20 + + + Lambda + + + tpLambda + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 17 + NoControl @@ -12363,6 +8244,33 @@ store.book[0].title 6 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 22 + + + Pomf + + + tpPomf + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 18 + https://seacloud.cc/api2/ @@ -12390,78 +8298,6 @@ store.book[0].title 0 - - txtSeafileSharePassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - grpSeafileShareSettings - - - 0 - - - lblSeafileSharePassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - grpSeafileShareSettings - - - 1 - - - nudSeafileExpireDays - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - grpSeafileShareSettings - - - 2 - - - lblSeafileDaysToExpire - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - grpSeafileShareSettings - - - 3 - - - 406, 346 - - - 227, 115 - - - 24 - - - Seafile share settings - - - grpSeafileShareSettings - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 1 - 19, 79 @@ -12564,6 +8400,30 @@ store.book[0].title 3 + + 406, 346 + + + 227, 115 + + + 24 + + + Seafile share settings + + + grpSeafileShareSettings + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpSeafile + + + 1 + NoControl @@ -12642,6 +8502,21 @@ store.book[0].title 4 + + Name + + + 217 + + + Size + + + 74 + + + Encrypted + 16, 162 @@ -12663,21 +8538,6 @@ store.book[0].title 5 - - Name - - - 217 - - - Size - - - 74 - - - Encrypted - NoControl @@ -12844,90 +8704,6 @@ Using an encrypted library disables sharing. 11 - - btnRefreshSeafileAccInfo - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - grpSeafileAccInfo - - - 0 - - - txtSeafileAccInfoUsage - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - grpSeafileAccInfo - - - 1 - - - txtSeafileAccInfoEmail - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - grpSeafileAccInfo - - - 2 - - - lblSeafileAccInfoEmail - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - grpSeafileAccInfo - - - 3 - - - lblSeafileAccInfoUsage - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - grpSeafileAccInfo - - - 4 - - - 406, 181 - - - 227, 149 - - - 17 - - - Account information - - - grpSeafileAccInfo - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 12 - NoControl @@ -13057,6 +8833,30 @@ Using an encrypted library disables sharing. 4 + + 406, 181 + + + 227, 149 + + + 17 + + + Account information + + + grpSeafileAccInfo + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpSeafile + + + 12 + NoControl @@ -13111,90 +8911,6 @@ Using an encrypted library disables sharing. 14 - - btnSeafileGetAuthToken - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - grpSeafileObtainAuthToken - - - 0 - - - txtSeafilePassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - grpSeafileObtainAuthToken - - - 1 - - - txtSeafileUsername - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - grpSeafileObtainAuthToken - - - 2 - - - lblSeafileUsername - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - grpSeafileObtainAuthToken - - - 3 - - - lblSeafilePassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - grpSeafileObtainAuthToken - - - 4 - - - 406, 16 - - - 227, 149 - - - 12 - - - Obtain auth token - - - grpSeafileObtainAuthToken - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 15 - NoControl @@ -13324,6 +9040,30 @@ Using an encrypted library disables sharing. 4 + + 406, 16 + + + 227, 149 + + + 12 + + + Obtain auth token + + + grpSeafileObtainAuthToken + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpSeafile + + + 15 + True @@ -13465,6 +9205,33 @@ Using an encrypted library disables sharing. 20 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 23 + + + Seafile + + + tpSeafile + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 19 + True @@ -13642,6 +9409,30 @@ Using an encrypted library disables sharing. 5 + + 4, 40 + + + 972, 475 + + + 24 + + + Streamable + + + tpStreamable + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 20 + 16, 32 @@ -13693,6 +9484,33 @@ Using an encrypted library disables sharing. 1 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 25 + + + s-ul + + + tpSul + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 21 + NoControl @@ -13771,113 +9589,32 @@ Using an encrypted library disables sharing. 2 - - btnUpleaLogin + + 4, 40 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3, 3, 3, 3 - - gbUpleaLoginCredentials + + 972, 475 - - 0 + + 20 - - lblUpleaApiKey + + Lithiio - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tpLithiio - - gbUpleaLoginCredentials + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 + + tcFileUploaders - - txtUpleaApiKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbUpleaLoginCredentials - - - 2 - - - lblUpleaPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbUpleaLoginCredentials - - - 3 - - - lblUpleaUsername - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbUpleaLoginCredentials - - - 4 - - - txtUpleaPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbUpleaLoginCredentials - - - 5 - - - txtUpleaUsername - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbUpleaLoginCredentials - - - 6 - - - 16, 14 - - - 428, 205 - - - 12 - - - Login Credentials - - - gbUpleaLoginCredentials - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUplea - - - 0 + + 22 NoControl @@ -14062,77 +9799,29 @@ Using an encrypted library disables sharing. 6 - - lblUpleaEmailAddress + + 16, 14 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 428, 205 - - gbUpleaUserInformation + + 12 - - 0 + + Login Credentials - - cbUpleaInstantDownloadEnabled + + gbUpleaLoginCredentials - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbUpleaUserInformation - - - 1 - - - cbUpleaIsPremium - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbUpleaUserInformation - - - 2 - - - txtUpleaEmailAddress - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbUpleaUserInformation - - - 3 - - - 16, 225 - - - 428, 120 - - - 11 - - - User Information - - - gbUpleaUserInformation - - + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tpUplea - - 1 + + 0 True @@ -14254,77 +9943,56 @@ Using an encrypted library disables sharing. 3 - - cbPlikOneShot + + 16, 225 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 428, 120 - - gpPlikSettings + + 11 - - 0 + + User Information - - txtPlikComment + + gbUpleaUserInformation - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gpPlikSettings - - - 1 - - - cbPlikComment - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gpPlikSettings - - - 2 - - - cbPlikRemovable - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gpPlikSettings - - - 3 - - - 292, 19 - - - 344, 247 - - - 14 - - - Other settings - - - gpPlikSettings - - + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tpPlik + + tpUplea - - 0 + + 1 + + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 27 + + + Uplea + + + tpUplea + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 23 True @@ -14440,173 +10108,29 @@ Using an encrypted library disables sharing. 3 - - nudPlikTTL + + 292, 19 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 344, 247 - - gpPlikLoginCredentials + + 14 - - 0 + + Other settings - - cbxPlikTTLUnit + + gpPlikSettings - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gpPlikLoginCredentials - - - 1 - - - lblPlikTTL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gpPlikLoginCredentials - - - 2 - - - txtPlikURL - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gpPlikLoginCredentials - - - 3 - - - lblPlikURL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gpPlikLoginCredentials - - - 4 - - - cbPlikIsSecured - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gpPlikLoginCredentials - - - 5 - - - lblPlikAPIKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gpPlikLoginCredentials - - - 6 - - - txtPlikAPIKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gpPlikLoginCredentials - - - 7 - - - lblPlikPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gpPlikLoginCredentials - - - 8 - - - lblPlikUsername - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gpPlikLoginCredentials - - - 9 - - - txtPlikPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gpPlikLoginCredentials - - - 10 - - - txtPlikLogin - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gpPlikLoginCredentials - - - 11 - - - 15, 19 - - - 271, 247 - - - 13 - - - Login Credentials - - - gpPlikLoginCredentials - - + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tpPlik - - 1 + + 0 9, 217 @@ -14926,6 +10450,57 @@ Using an encrypted library disables sharing. 11 + + 15, 19 + + + 271, 247 + + + 13 + + + Login Credentials + + + gpPlikLoginCredentials + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpPlik + + + 1 + + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 29 + + + Plik + + + tpPlik + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 24 + True @@ -15106,6 +10681,33 @@ Using an encrypted library disables sharing. 6 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 9 + + + Shared folder + + + tpSharedFolder + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 25 + 16, 408 @@ -15499,6 +11101,84 @@ Using an encrypted library disables sharing. 14 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 10 + + + Email + + + tpEmail + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 26 + + + Fill + + + 3, 3 + + + 980, 519 + + + 0 + + + tcFileUploaders + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpFileUploaders + + + 0 + + + 4, 22 + + + 3, 3, 3, 3 + + + 986, 525 + + + 2 + + + File uploaders + + + tpFileUploaders + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcUploaders + + + 2 + NoControl @@ -15517,372 +11197,6 @@ Using an encrypted library disables sharing. System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tcTextUploaders - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTextUploaders - - - 0 - - - 4, 22 - - - 3, 3, 3, 3 - - - 986, 525 - - - 1 - - - Text uploaders - - - tpTextUploaders - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcUploaders - - - 1 - - - tpPastebin - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcTextUploaders - - - 0 - - - tpPaste_ee - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcTextUploaders - - - 1 - - - tpGist - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcTextUploaders - - - 2 - - - tpUpaste - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcTextUploaders - - - 3 - - - tpHastebin - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcTextUploaders - - - 4 - - - tpOneTimeSecret - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcTextUploaders - - - 5 - - - tpPastie - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcTextUploaders - - - 6 - - - Fill - - - 3, 3 - - - 980, 519 - - - 0 - - - tcTextUploaders - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTextUploaders - - - 0 - - - cbPastebinRaw - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 0 - - - cbPastebinSyntax - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 1 - - - btnPastebinRegister - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 2 - - - lblPastebinSyntax - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 3 - - - lblPastebinExpiration - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 4 - - - lblPastebinPrivacy - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 5 - - - lblPastebinTitle - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 6 - - - lblPastebinPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 7 - - - lblPastebinUsername - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 8 - - - cbPastebinExpiration - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 9 - - - cbPastebinPrivacy - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 10 - - - txtPastebinTitle - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 11 - - - txtPastebinPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 12 - - - txtPastebinUsername - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 13 - - - lblPastebinLoginStatus - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 14 - - - btnPastebinLogin - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 15 - - - 4, 22 - - - 3, 3, 3, 3 - - - 972, 493 - - - 0 - - - Pastebin - - - tpPastebin - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcTextUploaders - - - 0 - True @@ -16303,56 +11617,32 @@ Using an encrypted library disables sharing. 15 - - lblPaste_eeUserAPIKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPaste_ee - - - 0 - - - txtPaste_eeUserAPIKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPaste_ee - - - 1 - - + 4, 22 - + 3, 3, 3, 3 - + 972, 493 - - 1 + + 0 - - Paste.ee + + Pastebin - - tpPaste_ee + + tpPastebin - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcTextUploaders - - 1 + + 0 True @@ -16405,125 +11695,32 @@ Using an encrypted library disables sharing. 1 - - lblGistCustomURLExample - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGist - - - 0 - - - lblGistOAuthInfo - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGist - - - 1 - - - lblGistCustomURL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGist - - - 2 - - - txtGistCustomURL - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGist - - - 3 - - - cbGistUseRawURL - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGist - - - 4 - - - cbGistPublishPublic - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGist - - - 5 - - - oAuth2Gist - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpGist - - - 6 - - - atcGistAccountType - - - ShareX.UploadersLib.AccountTypeControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpGist - - - 7 - - + 4, 22 - + + 3, 3, 3, 3 + + 972, 493 - - 2 + + 1 - - GitHub Gist + + Paste.ee - - tpGist + + tpPaste_ee - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcTextUploaders - - 2 + + 1 True @@ -16735,68 +11932,29 @@ Using an encrypted library disables sharing. 7 - - cbUpasteIsPublic - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUpaste - - - 0 - - - lblUpasteUserKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUpaste - - - 1 - - - txtUpasteUserKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUpaste - - - 2 - - + 4, 22 - - 3, 3, 3, 3 - - + 972, 493 - - 3 + + 2 - - uPaste + + GitHub Gist - - tpUpaste + + tpGist - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcTextUploaders - - 3 + + 2 True @@ -16879,92 +12037,32 @@ Using an encrypted library disables sharing. 2 - - cbHastebinUseFileExtension - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpHastebin - - - 0 - - - txtHastebinSyntaxHighlighting - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpHastebin - - - 1 - - - txtHastebinCustomDomain - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpHastebin - - - 2 - - - lblHastebinSyntaxHighlighting - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpHastebin - - - 3 - - - lblHastebinCustomDomain - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpHastebin - - - 4 - - + 4, 22 - + 3, 3, 3, 3 - + 972, 493 - - 4 + + 3 - - Hastebin + + uPaste - - tpHastebin + + tpUpaste - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcTextUploaders - - 4 + + 3 True @@ -17098,80 +12196,32 @@ Using an encrypted library disables sharing. 4 - - lblOneTimeSecretAPIKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOneTimeSecret - - - 0 - - - lblOneTimeSecretEmail - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOneTimeSecret - - - 1 - - - txtOneTimeSecretAPIKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOneTimeSecret - - - 2 - - - txtOneTimeSecretEmail - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOneTimeSecret - - - 3 - - + 4, 22 - + 3, 3, 3, 3 - + 972, 493 - - 5 + + 4 - - OneTimeSecret + + Hastebin - - tpOneTimeSecret + + tpHastebin - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcTextUploaders - - 5 + + 4 True @@ -17275,6 +12325,51 @@ Using an encrypted library disables sharing. 3 + + 4, 22 + + + 3, 3, 3, 3 + + + 972, 493 + + + 5 + + + OneTimeSecret + + + tpOneTimeSecret + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcTextUploaders + + + 5 + + + True + + + NoControl + + + 17, 22 + + + 106, 17 + + + 0 + + + Is public upload? + cbPastieIsPublic @@ -17314,356 +12409,56 @@ Using an encrypted library disables sharing. 6 - - True - - - NoControl - - - 17, 22 - - - 106, 17 - - - 0 - - - Is public upload? - - - cbPastieIsPublic - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastie - - - 0 - - - tcImageUploaders - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImageUploaders - - - 0 - - - 4, 22 - - - 3, 3, 3, 3 - - - 986, 525 - - - 0 - - - Image uploaders - - - tpImageUploaders - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcUploaders - - - 0 - - - tpImgur - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcImageUploaders - - - 0 - - - tpImageShack - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcImageUploaders - - - 1 - - - tpTinyPic - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcImageUploaders - - - 2 - - - tpFlickr - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcImageUploaders - - - 3 - - - tpPhotobucket - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcImageUploaders - - - 4 - - - tpPicasa - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcImageUploaders - - - 5 - - - tpChevereto - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcImageUploaders - - - 6 - - - tpVgyme - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcImageUploaders - - - 7 - - - tpSomeImage - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcImageUploaders - - - 8 - - + Fill - + 3, 3 - - 780, 480 - - + 980, 519 - + 0 - - tcImageUploaders + + tcTextUploaders - + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tpImageUploaders + + tpTextUploaders - + 0 - - cbImgurUseHTTPS - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImgur - - - 0 - - - cbImgurUseGIFV - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImgur - - - 1 - - - cbImgurUploadSelectedAlbum - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImgur - - - 2 - - - cbImgurDirectLink - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImgur - - - 3 - - - atcImgurAccountType - - - ShareX.UploadersLib.AccountTypeControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpImgur - - - 4 - - - oauth2Imgur - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpImgur - - - 5 - - - lvImgurAlbumList - - - System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImgur - - - 6 - - - btnImgurRefreshAlbumList - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImgur - - - 7 - - - cbImgurThumbnailType - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImgur - - - 8 - - - lblImgurThumbnailType - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImgur - - - 9 - - + 4, 22 - + 3, 3, 3, 3 - - 972, 493 + + 986, 525 - - 2 + + 1 - - Imgur + + Text uploaders - - tpImgur + + tpTextUploaders - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tcImageUploaders + + tcUploaders - - 0 + + 1 True @@ -17827,6 +12622,21 @@ Using an encrypted library disables sharing. 5 + + ID + + + Title + + + 150 + + + Description + + + 226 + 352, 48 @@ -17848,21 +12658,6 @@ Using an encrypted library disables sharing. 6 - - ID - - - Title - - - 150 - - - Description - - - 226 - False @@ -17944,128 +12739,32 @@ Using an encrypted library disables sharing. 9 - - btnImageShackLogin - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImageShack - - - 0 - - - btnImageShackOpenPublicProfile - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImageShack - - - 1 - - - cbImageShackIsPublic - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImageShack - - - 2 - - - btnImageShackOpenMyImages - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImageShack - - - 3 - - - lblImageShackUsername - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImageShack - - - 4 - - - txtImageShackUsername - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImageShack - - - 5 - - - txtImageShackPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImageShack - - - 6 - - - lblImageShackPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImageShack - - - 7 - - + 4, 22 - + 3, 3, 3, 3 - + 972, 493 - - 0 + + 2 - - ImageShack + + Imgur - - tpImageShack + + tpImgur - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcImageUploaders - - 1 + + 0 NoControl @@ -18280,116 +12979,32 @@ Using an encrypted library disables sharing. 7 - - atcTinyPicAccountType - - - ShareX.UploadersLib.AccountTypeControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpTinyPic - - - 0 - - - btnTinyPicLogin - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTinyPic - - - 1 - - - txtTinyPicPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTinyPic - - - 2 - - - lblTinyPicPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTinyPic - - - 3 - - - txtTinyPicUsername - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTinyPic - - - 4 - - - lblTinyPicUsername - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTinyPic - - - 5 - - - btnTinyPicOpenMyImages - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTinyPic - - - 6 - - + 4, 22 - + 3, 3, 3, 3 - + 972, 493 - - 1 + + 0 - - TinyPic + + ImageShack - - tpTinyPic + + tpImageShack - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcImageUploaders - - 2 + + 1 16, 16 @@ -18568,104 +13183,32 @@ Using an encrypted library disables sharing. 6 - - btnFlickrOpenImages - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFlickr - - - 0 - - - pgFlickrAuthInfo - - - System.Windows.Forms.PropertyGrid, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFlickr - - - 1 - - - pgFlickrSettings - - - System.Windows.Forms.PropertyGrid, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFlickr - - - 2 - - - btnFlickrCheckToken - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFlickr - - - 3 - - - btnFlickrCompleteAuth - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFlickr - - - 4 - - - btnFlickrOpenAuthorize - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFlickr - - - 5 - - + 4, 22 - + 3, 3, 3, 3 - + 972, 493 - - 3 + + 1 - - Flickr + + TinyPic - - tpFlickr + + tpTinyPic - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcImageUploaders - - 3 + + 2 NoControl @@ -18820,128 +13363,32 @@ Using an encrypted library disables sharing. 5 - - gbPhotobucketAlbumPath - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPhotobucket - - - 0 - - - gbPhotobucketAlbums - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPhotobucket - - - 1 - - - gbPhotobucketUserAccount - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPhotobucket - - - 2 - - + 4, 22 - + 3, 3, 3, 3 - + 972, 493 - - 4 + + 3 - - Photobucket + + Flickr - - tpPhotobucket + + tpFlickr - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcImageUploaders - - 4 - - - btnPhotobucketAddAlbum - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbPhotobucketAlbumPath - - - 0 - - - btnPhotobucketRemoveAlbum - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbPhotobucketAlbumPath - - - 1 - - - cboPhotobucketAlbumPaths - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbPhotobucketAlbumPath - - - 2 - - - 16, 208 - - - 712, 64 - - - 1 - - - Upload images to - - - gbPhotobucketAlbumPath - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPhotobucket - - - 0 + + 3 NoControl @@ -19021,89 +13468,29 @@ Using an encrypted library disables sharing. 2 - - lblPhotobucketNewAlbumName + + 16, 208 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 712, 64 - - gbPhotobucketAlbums - - - 0 - - - lblPhotobucketParentAlbumPath - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbPhotobucketAlbums - - + 1 - - txtPhotobucketNewAlbumName + + Upload images to - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gbPhotobucketAlbumPath - - gbPhotobucketAlbums - - - 2 - - - txtPhotobucketParentAlbumPath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbPhotobucketAlbums - - - 3 - - - btnPhotobucketCreateAlbum - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbPhotobucketAlbums - - - 4 - - - 16, 280 - - - 712, 128 - - - 2 - - - Create new album - - - gbPhotobucketAlbums - - + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tpPhotobucket - - 1 + + 0 True @@ -19234,113 +13621,29 @@ Using an encrypted library disables sharing. 4 - - lblPhotobucketDefaultAlbumName + + 16, 280 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 712, 128 - - gbPhotobucketUserAccount - - - 0 - - - btnPhotobucketAuthOpen - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbPhotobucketUserAccount - - - 1 - - - txtPhotobucketDefaultAlbumName - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbPhotobucketUserAccount - - + 2 - - lblPhotobucketVerificationCode + + Create new album - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gbPhotobucketAlbums - - gbPhotobucketUserAccount - - - 3 - - - btnPhotobucketAuthComplete - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbPhotobucketUserAccount - - - 4 - - - txtPhotobucketVerificationCode - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbPhotobucketUserAccount - - - 5 - - - lblPhotobucketAccountStatus - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbPhotobucketUserAccount - - - 6 - - - 16, 16 - - - 712, 184 - - - 0 - - - User account - - - gbPhotobucketUserAccount - - + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tpPhotobucket - - 2 + + 1 True @@ -19528,92 +13831,56 @@ Using an encrypted library disables sharing. 6 - - txtPicasaAlbumID + + 16, 16 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 712, 184 - - tpPicasa - - + 0 - - lblPicasaAlbumID + + User account - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gbPhotobucketUserAccount - - tpPicasa + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 + + tpPhotobucket - - lvPicasaAlbumList - - - System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPicasa - - + 2 - - btnPicasaRefreshAlbumList - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPicasa - - - 3 - - - oauth2Picasa - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpPicasa - - - 4 - - + 4, 22 - + 3, 3, 3, 3 - + 972, 493 - - 8 + + 4 - - Google Photos (Picasa) + + Photobucket - - tpPicasa + + tpPhotobucket - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcImageUploaders - - 5 + + 4 352, 64 @@ -19666,6 +13933,24 @@ Using an encrypted library disables sharing. 1 + + ID + + + 135 + + + Name + + + 150 + + + Description + + + 143 + 352, 88 @@ -19687,24 +13972,6 @@ Using an encrypted library disables sharing. 2 - - ID - - - 135 - - - Name - - - 150 - - - Description - - - 143 - False @@ -19756,140 +14023,32 @@ Using an encrypted library disables sharing. 4 - - btnCheveretoTestAll - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpChevereto - - - 0 - - - lblCheveretoUploadURLExample - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpChevereto - - - 1 - - - lblCheveretoUploaders - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpChevereto - - - 2 - - - cbCheveretoUploaders - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpChevereto - - - 3 - - - cbCheveretoDirectURL - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpChevereto - - - 4 - - - lblCheveretoUploadURL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpChevereto - - - 5 - - - txtCheveretoUploadURL - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpChevereto - - - 6 - - - txtCheveretoAPIKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpChevereto - - - 7 - - - lblCheveretoAPIKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpChevereto - - - 8 - - + 4, 22 - + 3, 3, 3, 3 - + 972, 493 - - 9 + + 8 - - Chevereto + + Google Photos (Picasa) - - tpChevereto + + tpPicasa - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcImageUploaders - - 6 + + 5 NoControl @@ -20134,68 +14293,32 @@ Using an encrypted library disables sharing. 8 - - llVgymeAccountDetailsPage - - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpVgyme - - - 0 - - - txtVgymeUserKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpVgyme - - - 1 - - - lvlVgymeUserKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpVgyme - - - 2 - - + 4, 22 - + 3, 3, 3, 3 - + 972, 493 - - 10 + + 9 - - vgy.me + + Chevereto - - tpVgyme + + tpChevereto - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcImageUploaders - - 7 + + 6 True @@ -20278,83 +14401,32 @@ Using an encrypted library disables sharing. 2 - - llSomeImageAPIKey - - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSomeImage - - - 0 - - - txtSomeImageAPIKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSomeImage - - - 1 - - - lblSomeImageAPIKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSomeImage - - - 2 - - - cbSomeImageDirectURL - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSomeImage - - - 3 - - + 4, 22 - - 4, 4, 4, 4 + + 3, 3, 3, 3 - - 4, 4, 4, 4 - - + 972, 493 - + 10 - - SomeImage + + vgy.me - - tpSomeImage + + tpVgyme - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcImageUploaders - - 8 + + 7 True @@ -20470,6 +14542,90 @@ Using an encrypted library disables sharing. 3 + + 4, 22 + + + 4, 4, 4, 4 + + + 4, 4, 4, 4 + + + 972, 493 + + + 10 + + + SomeImage + + + tpSomeImage + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcImageUploaders + + + 8 + + + Fill + + + 3, 3 + + + 780, 480 + + + 980, 519 + + + 0 + + + tcImageUploaders + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpImageUploaders + + + 0 + + + 4, 22 + + + 3, 3, 3, 3 + + + 986, 525 + + + 0 + + + Image uploaders + + + tpImageUploaders + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcUploaders + + + 0 + Fill