diff --git a/ShareX.UploadersLib/FileUploaders/GoogleCloudStorage.cs b/ShareX.UploadersLib/FileUploaders/GoogleCloudStorage.cs index 401bffe23..9ab164380 100644 --- a/ShareX.UploadersLib/FileUploaders/GoogleCloudStorage.cs +++ b/ShareX.UploadersLib/FileUploaders/GoogleCloudStorage.cs @@ -51,7 +51,10 @@ public override GenericUploader CreateUploader(UploadersConfig config, TaskRefer { Bucket = config.GoogleCloudStorageBucket, Domain = config.GoogleCloudStorageDomain, - Prefix = config.GoogleCloudStorageObjectPrefix + Prefix = config.GoogleCloudStorageObjectPrefix, + RemoveExtensionImage = config.GoogleCloudStorageRemoveExtensionImage, + RemoveExtensionText = config.GoogleCloudStorageRemoveExtensionText, + RemoveExtensionVideo = config.GoogleCloudStorageRemoveExtensionVideo }; } @@ -63,6 +66,9 @@ public sealed class GoogleCloudStorage : FileUploader, IOAuth2 public string Bucket { get; set; } public string Domain { get; set; } public string Prefix { get; set; } + public bool RemoveExtensionImage { get; set; } + public bool RemoveExtensionText { get; set; } + public bool RemoveExtensionVideo { get; set; } public OAuth2Info AuthInfo => googleAuth.AuthInfo; @@ -100,10 +106,20 @@ public override UploadResult Upload(Stream stream, string fileName) { if (!CheckAuthorization()) return null; + string contentType = Helpers.GetMimeType(fileName); + + if ((RemoveExtensionImage && Helpers.IsImageFile(fileName)) || + (RemoveExtensionText && Helpers.IsTextFile(fileName)) || + (RemoveExtensionVideo && Helpers.IsVideoFile(fileName))) + { + fileName = Path.GetFileNameWithoutExtension(fileName); + } + string uploadpath = GetUploadPath(fileName); GoogleCloudStorageMetadata metadata = new GoogleCloudStorageMetadata { + contentType = contentType, name = uploadpath, acl = new GoogleCloudStorageAcl[] { @@ -170,6 +186,7 @@ private class GoogleCloudStorageResponse private class GoogleCloudStorageMetadata { + public string contentType { get; set; } public string name { get; set; } public GoogleCloudStorageAcl[] acl { get; set; } } diff --git a/ShareX.UploadersLib/Forms/UploadersConfigForm.Designer.cs b/ShareX.UploadersLib/Forms/UploadersConfigForm.Designer.cs index 89eb34e1f..9a29307bc 100644 --- a/ShareX.UploadersLib/Forms/UploadersConfigForm.Designer.cs +++ b/ShareX.UploadersLib/Forms/UploadersConfigForm.Designer.cs @@ -337,6 +337,10 @@ private void InitializeComponent() this.lblAmazonS3AccessKey = new System.Windows.Forms.Label(); this.txtAmazonS3AccessKey = new System.Windows.Forms.TextBox(); this.tpGoogleCloudStorage = new System.Windows.Forms.TabPage(); + this.lblGoogleCloudStorageStripExtension = new System.Windows.Forms.Label(); + this.cbGoogleCloudStorageStripExtensionText = new System.Windows.Forms.CheckBox(); + this.cbGoogleCloudStorageStripExtensionVideo = new System.Windows.Forms.CheckBox(); + this.cbGoogleCloudStorageStripExtensionImage = new System.Windows.Forms.CheckBox(); this.lblGoogleCloudStoragePathPreview = new System.Windows.Forms.Label(); this.lblGoogleCloudStoragePathPreviewLabel = new System.Windows.Forms.Label(); this.txtGoogleCloudStorageObjectPrefix = new System.Windows.Forms.TextBox(); @@ -2907,6 +2911,10 @@ private void InitializeComponent() // // tpGoogleCloudStorage // + this.tpGoogleCloudStorage.Controls.Add(this.lblGoogleCloudStorageStripExtension); + this.tpGoogleCloudStorage.Controls.Add(this.cbGoogleCloudStorageStripExtensionText); + this.tpGoogleCloudStorage.Controls.Add(this.cbGoogleCloudStorageStripExtensionVideo); + this.tpGoogleCloudStorage.Controls.Add(this.cbGoogleCloudStorageStripExtensionImage); this.tpGoogleCloudStorage.Controls.Add(this.lblGoogleCloudStoragePathPreview); this.tpGoogleCloudStorage.Controls.Add(this.lblGoogleCloudStoragePathPreviewLabel); this.tpGoogleCloudStorage.Controls.Add(this.txtGoogleCloudStorageObjectPrefix); @@ -2920,6 +2928,32 @@ private void InitializeComponent() this.tpGoogleCloudStorage.Name = "tpGoogleCloudStorage"; this.tpGoogleCloudStorage.UseVisualStyleBackColor = true; // + // lblGoogleCloudStorageStripExtension + // + resources.ApplyResources(this.lblGoogleCloudStorageStripExtension, "lblGoogleCloudStorageStripExtension"); + this.lblGoogleCloudStorageStripExtension.Name = "lblGoogleCloudStorageStripExtension"; + // + // cbGoogleCloudStorageStripExtensionText + // + resources.ApplyResources(this.cbGoogleCloudStorageStripExtensionText, "cbGoogleCloudStorageStripExtensionText"); + this.cbGoogleCloudStorageStripExtensionText.Name = "cbGoogleCloudStorageStripExtensionText"; + this.cbGoogleCloudStorageStripExtensionText.UseVisualStyleBackColor = true; + this.cbGoogleCloudStorageStripExtensionText.CheckedChanged += new System.EventHandler(this.cbGoogleCloudStorageStripExtensionText_CheckedChanged); + // + // cbGoogleCloudStorageStripExtensionVideo + // + resources.ApplyResources(this.cbGoogleCloudStorageStripExtensionVideo, "cbGoogleCloudStorageStripExtensionVideo"); + this.cbGoogleCloudStorageStripExtensionVideo.Name = "cbGoogleCloudStorageStripExtensionVideo"; + this.cbGoogleCloudStorageStripExtensionVideo.UseVisualStyleBackColor = true; + this.cbGoogleCloudStorageStripExtensionVideo.CheckedChanged += new System.EventHandler(this.cbGoogleCloudStorageStripExtensionVideo_CheckedChanged); + // + // cbGoogleCloudStorageStripExtensionImage + // + resources.ApplyResources(this.cbGoogleCloudStorageStripExtensionImage, "cbGoogleCloudStorageStripExtensionImage"); + this.cbGoogleCloudStorageStripExtensionImage.Name = "cbGoogleCloudStorageStripExtensionImage"; + this.cbGoogleCloudStorageStripExtensionImage.UseVisualStyleBackColor = true; + this.cbGoogleCloudStorageStripExtensionImage.CheckedChanged += new System.EventHandler(this.cbGoogleCloudStorageStripExtensionImage_CheckedChanged); + // // lblGoogleCloudStoragePathPreview // resources.ApplyResources(this.lblGoogleCloudStoragePathPreview, "lblGoogleCloudStoragePathPreview"); @@ -6373,5 +6407,9 @@ private void InitializeComponent() private System.Windows.Forms.Label lblKuttPassword; private System.Windows.Forms.TextBox txtKuttPassword; internal System.Windows.Forms.TabPage tpKutt; + private System.Windows.Forms.Label lblGoogleCloudStorageStripExtension; + private System.Windows.Forms.CheckBox cbGoogleCloudStorageStripExtensionText; + private System.Windows.Forms.CheckBox cbGoogleCloudStorageStripExtensionVideo; + private System.Windows.Forms.CheckBox cbGoogleCloudStorageStripExtensionImage; } } \ No newline at end of file diff --git a/ShareX.UploadersLib/Forms/UploadersConfigForm.cs b/ShareX.UploadersLib/Forms/UploadersConfigForm.cs index b0de6af5a..7b00f1634 100644 --- a/ShareX.UploadersLib/Forms/UploadersConfigForm.cs +++ b/ShareX.UploadersLib/Forms/UploadersConfigForm.cs @@ -759,6 +759,10 @@ private void LoadFileUploaderSettings() txtGoogleCloudStorageDomain.Text = Config.GoogleCloudStorageDomain; txtGoogleCloudStorageObjectPrefix.Text = Config.GoogleCloudStorageObjectPrefix; + cbGoogleCloudStorageStripExtensionImage.Checked = Config.GoogleCloudStorageRemoveExtensionImage; + cbGoogleCloudStorageStripExtensionVideo.Checked = Config.GoogleCloudStorageRemoveExtensionVideo; + cbGoogleCloudStorageStripExtensionText.Checked = Config.GoogleCloudStorageRemoveExtensionText; + #endregion Google Cloud Storage } @@ -3138,6 +3142,21 @@ private void txtGoogleCloudStorageObjectPrefix_TextChanged(object sender, EventA UpdateGoogleCloudStorageStatus(); } + private void cbGoogleCloudStorageStripExtensionImage_CheckedChanged(object sender, EventArgs e) + { + Config.GoogleCloudStorageRemoveExtensionImage = cbGoogleCloudStorageStripExtensionImage.Checked; + } + + private void cbGoogleCloudStorageStripExtensionVideo_CheckedChanged(object sender, EventArgs e) + { + Config.GoogleCloudStorageRemoveExtensionVideo = cbGoogleCloudStorageStripExtensionVideo.Checked; + } + + private void cbGoogleCloudStorageStripExtensionText_CheckedChanged(object sender, EventArgs e) + { + Config.GoogleCloudStorageRemoveExtensionText = cbGoogleCloudStorageStripExtensionText.Checked; + } + #endregion Google Cloud Storage #endregion File uploaders diff --git a/ShareX.UploadersLib/Forms/UploadersConfigForm.resx b/ShareX.UploadersLib/Forms/UploadersConfigForm.resx index 7f4676c6c..c7cc94d95 100644 --- a/ShareX.UploadersLib/Forms/UploadersConfigForm.resx +++ b/ShareX.UploadersLib/Forms/UploadersConfigForm.resx @@ -383,237 +383,6 @@ when you made the application key. 12 - - 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, 569 - - - 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, 563 - - - 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=12.3.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, 537 - - - 0 - - - Twitter - - - tpTwitter - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcOtherUploaders - - - 0 - NoControl @@ -881,296 +650,29 @@ when you made the application key. 9 - - btnCustomUploaderURLSharingServiceTest - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 0 - - - cbCustomUploaderURLSharingService - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 1 - - - lblCustomUploaderURLSharingService - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 2 - - - pCustomUploader - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 3 - - - btnCustomUploaderExamples - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 4 - - - btnCustomUploaderHelp - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 5 - - - lblCustomUploaderImageUploader - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 6 - - - btnCustomUploaderFileUploaderTest - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 7 - - - lblCustomUploaderFileUploader - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 8 - - - btnCustomUploaderImageUploaderTest - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 9 - - - lblCustomUploaderTestResult - - - System.Windows.Forms.Label, 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 - - - btnCustomUploaderShowLastResponse - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 12 - - - cbCustomUploaderURLShortener - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 13 - - - gbCustomUploaders - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 14 - - - lblCustomUploaderTextUploader - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 15 - - - btnCustomUploaderURLShortenerTest - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 16 - - - cbCustomUploaderTextUploader - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 17 - - - lblCustomUploaderURLShortener - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 18 - - - btnCustomUploaderTextUploaderTest - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 19 - - - cbCustomUploaderImageUploader - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 20 - - - txtCustomUploaderLog - - - System.Windows.Forms.RichTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 21 - - + 4, 22 - - 3, 3, 3, 3 + + 972, 537 - - 178, 42 + + 0 - - 5 + + Twitter - - Custom uploaders + + tpTwitter - - tpCustomUploaders - - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcOtherUploaders - - 1 + + 0 NoControl @@ -1250,243 +752,6 @@ when you made the application key. 2 - - lblCustomUploaderName - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCustomUploader - - - 0 - - - cbCustomUploaderRequestType - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCustomUploader - - - 2 - - - tcCustomUploaderResponseParse - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCustomUploader - - - 3 - - - lblCustomUploaderURL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCustomUploader - - - 4 - - - tcCustomUploaderArguments - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCustomUploader - - - 5 - - - txtCustomUploaderFileForm - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCustomUploader - - - 6 - - - lblCustomUploaderRequestType - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCustomUploader - - - 7 - - - lblCustomUploaderFileForm - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCustomUploader - - - 8 - - - txtCustomUploaderName - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCustomUploader - - - 9 - - - lblCustomUploaderThumbnailURL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCustomUploader - - - 10 - - - txtCustomUploaderRequestURL - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCustomUploader - - - 11 - - - txtCustomUploaderURL - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCustomUploader - - - 12 - - - cbCustomUploaderResponseType - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCustomUploader - - - 13 - - - txtCustomUploaderThumbnailURL - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCustomUploader - - - 14 - - - txtCustomUploaderDeletionURL - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCustomUploader - - - 15 - - - lblCustomUploaderRequestURL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCustomUploader - - - 16 - - - lblCustomUploaderResponseType - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCustomUploader - - - 17 - - - lblCustomUploaderDeletionURL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCustomUploader - - - 18 - - - 272, 8 - - - 528, 432 - - - 37 - - - pCustomUploader - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 3 - True @@ -1538,150 +803,6 @@ when you made the application key. 2 - - 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 - - - 264, 48 - - - 256, 184 - - - 36 - - - tcCustomUploaderResponseParse - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCustomUploader - - - 3 - - - 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 - NoControl @@ -1820,92 +941,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 NoControl @@ -2045,116 +1106,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=12.3.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 @@ -2312,6 +1289,9 @@ store.book[0].title 5 + + 227 + 8, 64 @@ -2333,8 +1313,53 @@ store.book[0].title 6 - - 227 + + 4, 22 + + + 3, 3, 3, 3 + + + 248, 158 + + + 0 + + + Regex + + + tpCustomUploaderRegexParse + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcCustomUploaderResponseParse + + + 2 + + + 264, 48 + + + 256, 184 + + + 36 + + + tcCustomUploaderResponseParse + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pCustomUploader + + + 3 True @@ -2366,150 +1391,6 @@ store.book[0].title 4 - - 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 - - - 0, 186 - - - 256, 240 - - - 34 - - - tcCustomUploaderArguments - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCustomUploader - - - 5 - - - 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=12.3.0.0, Culture=neutral, PublicKeyToken=null - - - tpCustomUploaderArguments - - - 5 - - - 4, 22 - - - 3, 3, 3, 3 - - - 248, 214 - - - 0 - - - Arguments - - - tpCustomUploaderArguments - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcCustomUploaderArguments - - - 0 - NoControl @@ -2633,6 +1514,18 @@ store.book[0].title 4 + + Name + + + 114 + + + Value + + + 114 + 8, 64 @@ -2654,116 +1547,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=12.3.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 @@ -2888,6 +1697,18 @@ store.book[0].title 4 + + Name + + + 114 + + + Value + + + 114 + 8, 64 @@ -2909,17 +1730,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 + + + 0, 186 + + + 256, 240 + + + 34 + + + tcCustomUploaderArguments + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pCustomUploader + + + 5 0, 162 @@ -3248,6 +2105,27 @@ store.book[0].title 18 + + 272, 8 + + + 528, 432 + + + 37 + + + pCustomUploader + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpCustomUploaders + + + 3 + NoControl @@ -3518,114 +2396,6 @@ store.book[0].title 13 - - btnCustomUploaderDuplicate - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbCustomUploaders - - - 0 - - - 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=12.3.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 - - - btnCustomUploaderAdd - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbCustomUploaders - - - 6 - - - 8, 8 - - - 248, 344 - - - 0 - - - Uploaders - - - gbCustomUploaders - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 14 - NoControl @@ -3809,6 +2579,30 @@ store.book[0].title 6 + + 8, 8 + + + 248, 344 + + + 0 + + + Uploaders + + + gbCustomUploaders + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpCustomUploaders + + + 14 + True @@ -3989,6 +2783,93 @@ store.book[0].title 21 + + 4, 22 + + + 3, 3, 3, 3 + + + 178, 42 + + + 5 + + + Custom uploaders + + + tpCustomUploaders + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcOtherUploaders + + + 1 + + + Fill + + + 3, 3 + + + 980, 563 + + + 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, 569 + + + 6 + + + Other uploaders + + + tpOtherUploaders + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcUploaders + + + 4 + + + 16, 248 + + + 320, 20 + + + 2 + txtBitlyDomain @@ -4001,6 +2882,24 @@ store.book[0].title 0 + + True + + + NoControl + + + 13, 232 + + + 46, 13 + + + 1 + + + Domain: + lblBitlyDomain @@ -4013,6 +2912,15 @@ store.book[0].title 1 + + 16, 16 + + + 328, 208 + + + 0 + oauth2Bitly @@ -4293,7 +3201,7 @@ store.book[0].title 3, 3, 3, 3 - 972, 537 + 178, 42 2 @@ -4452,7 +3360,7 @@ store.book[0].title 3, 3, 3, 3 - 972, 537 + 178, 42 3 @@ -4638,7 +3546,7 @@ store.book[0].title 4, 22 - 972, 537 + 178, 42 6 @@ -4827,7 +3735,7 @@ store.book[0].title 3, 3, 3, 3 - 972, 537 + 178, 42 7 @@ -5025,7 +3933,7 @@ store.book[0].title 3, 3, 3, 3 - 972, 537 + 178, 42 8 @@ -5096,1104 +4004,6 @@ store.book[0].title 3 - - 16, 248 - - - 320, 20 - - - 2 - - - txtBitlyDomain - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpBitly - - - 0 - - - True - - - NoControl - - - 13, 232 - - - 46, 13 - - - 1 - - - Domain: - - - lblBitlyDomain - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpBitly - - - 1 - - - 16, 16 - - - 328, 208 - - - 0 - - - oauth2Bitly - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=12.3.0.0, Culture=neutral, PublicKeyToken=null - - - tpBitly - - - 2 - - - 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, 569 - - - 2 - - - File uploaders - - - tpFileUploaders - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcUploaders - - - 2 - - - tpFTP - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 0 - - - tpDropbox - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 1 - - - tpOneDrive - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 2 - - - tpGoogleDrive - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 3 - - - tpPuush - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 4 - - - tpBox - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 5 - - - tpAmazonS3 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 6 - - - tpGoogleCloudStorage - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 7 - - - tpAzureStorage - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 8 - - - tpBackblazeB2 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 9 - - - tpGfycat - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 10 - - - tpMega - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 11 - - - tpOwnCloud - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 12 - - - tpMediaFire - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 13 - - - tpPushbullet - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 14 - - - tpSendSpace - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 15 - - - tpGe_tt - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 16 - - - tpHostr - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 17 - - - tpJira - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 18 - - - tpLambda - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 19 - - - tpPomf - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 20 - - - tpSeafile - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 21 - - - tpStreamable - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 22 - - - tpSul - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 23 - - - tpLithiio - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 24 - - - tpPlik - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 25 - - - tpYouTube - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 26 - - - tpSharedFolder - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 27 - - - tpEmail - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 28 - - - Fill - - - 3, 3 - - - 980, 563 - - - 0 - - - tcFileUploaders - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFileUploaders - - - 0 - - - gbFTPAccount - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFTP - - - 0 - - - btnFTPDuplicate - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFTP - - - 1 - - - btnFTPRemove - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFTP - - - 2 - - - btnFTPAdd - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFTP - - - 3 - - - cbFTPAccounts - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFTP - - - 4 - - - lblFTPAccounts - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFTP - - - 5 - - - lblFTPFile - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFTP - - - 6 - - - lblFTPText - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFTP - - - 7 - - - lblFTPImage - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFTP - - - 8 - - - cbFTPImage - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFTP - - - 9 - - - cbFTPFile - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFTP - - - 10 - - - cbFTPText - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFTP - - - 11 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 519 - - - 4 - - - FTP / FTPS / SFTP - - - tpFTP - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 0 - - - gbSFTP - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 0 - - - cbFTPAppendRemoteDirectory - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 1 - - - btnFTPTest - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 2 - - - lblFTPProtocol - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 3 - - - lblFTPName - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 4 - - - cbFTPRemoveFileExtension - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 5 - - - txtFTPName - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 6 - - - lblFTPHost - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 7 - - - eiFTP - - - ShareX.HelpersLib.ExportImportControl, ShareX.HelpersLib, Version=12.3.0.0, Culture=neutral, PublicKeyToken=null - - - gbFTPAccount - - - 8 - - - pFTPTransferMode - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 9 - - - btnFTPClient - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 10 - - - txtFTPHost - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 11 - - - pFTPProtocol - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 12 - - - lblFTPPort - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 13 - - - lblFTPTransferMode - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 14 - - - nudFTPPort - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 15 - - - lblFTPURLPreviewValue - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 16 - - - lblFTPUsername - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 17 - - - lblFTPURLPreview - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 18 - - - txtFTPUsername - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 19 - - - cbFTPURLPathProtocol - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 20 - - - lblFTPPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 21 - - - txtFTPURLPath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 22 - - - txtFTPPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 23 - - - lblFTPURLPath - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 24 - - - lblFTPRemoteDirectory - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 25 - - - txtFTPRemoteDirectory - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 26 - - - gbFTPS - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 27 - - - 16, 72 - - - 776, 416 - - - 11 - - - Account - - - gbFTPAccount - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFTP - - - 0 - - - txtSFTPKeyPassphrase - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbSFTP - - - 0 - - - btnSFTPKeyLocationBrowse - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbSFTP - - - 1 - - - lblSFTPKeyPassphrase - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbSFTP - - - 2 - - - txtSFTPKeyLocation - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbSFTP - - - 3 - - - lblSFTPKeyLocation - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbSFTP - - - 4 - - - 16, 288 - - - 744, 76 - - - 24 - - - SFTP - - - gbSFTP - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 0 - 184, 44 @@ -6323,6 +4133,30 @@ store.book[0].title 4 + + 16, 288 + + + 744, 76 + + + 24 + + + SFTP + + + gbSFTP + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gbFTPAccount + + + 0 + True @@ -6545,51 +4379,6 @@ store.book[0].title GrowAndShrink - - rbFTPTransferModeActive - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pFTPTransferMode - - - 0 - - - rbFTPTransferModePassive - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pFTPTransferMode - - - 1 - - - 160, 141 - - - 336, 20 - - - 13 - - - pFTPTransferMode - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 9 - True @@ -6650,6 +4439,27 @@ store.book[0].title 1 + + 160, 141 + + + 336, 20 + + + 13 + + + pFTPTransferMode + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gbFTPAccount + + + 9 + NoControl @@ -6701,63 +4511,6 @@ store.book[0].title GrowAndShrink - - rbFTPProtocolFTP - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pFTPProtocol - - - 0 - - - rbFTPProtocolFTPS - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pFTPProtocol - - - 1 - - - rbFTPProtocolSFTP - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pFTPProtocol - - - 2 - - - 160, 45 - - - 336, 20 - - - 3 - - - pFTPProtocol - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 12 - True @@ -6848,6 +4601,27 @@ store.book[0].title 2 + + 160, 45 + + + 336, 20 + + + 3 + + + pFTPProtocol + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gbFTPAccount + + + 12 + True @@ -7214,90 +4988,6 @@ store.book[0].title 26 - - btnFTPSCertificateLocationBrowse - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPS - - - 0 - - - txtFTPSCertificateLocation - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPS - - - 1 - - - lblFTPSCertificateLocation - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPS - - - 2 - - - cbFTPSEncryption - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPS - - - 3 - - - lblFTPSEncryption - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPS - - - 4 - - - 16, 288 - - - 744, 76 - - - 23 - - - FTPS - - - gbFTPS - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbFTPAccount - - - 27 - NoControl @@ -7427,6 +5117,54 @@ store.book[0].title 4 + + 16, 288 + + + 744, 76 + + + 23 + + + FTPS + + + gbFTPS + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gbFTPAccount + + + 27 + + + 16, 72 + + + 776, 416 + + + 11 + + + Account + + + gbFTPAccount + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpFTP + + + 0 + NoControl @@ -7712,92 +5450,32 @@ store.book[0].title 11 - - cbDropboxUseDirectLink + + 4, 40 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpDropbox - - - 0 - - - cbDropboxAutoCreateShareableLink - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpDropbox - - - 1 - - - lblDropboxPath - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpDropbox - - - 2 - - - txtDropboxPath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpDropbox - - - 3 - - - oauth2Dropbox - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=12.3.0.0, Culture=neutral, PublicKeyToken=null - - - tpDropbox - - - 4 - - - 4, 220 - - + 3, 3, 3, 3 - - 178, 0 + + 972, 519 - - 0 + + 4 - - Dropbox + + FTP / FTPS / SFTP - - tpDropbox + + tpFTP - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcFileUploaders - - 1 + + 0 True @@ -7931,80 +5609,32 @@ store.book[0].title 4 - - tvOneDrive - - - System.Windows.Forms.TreeView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOneDrive - - - 0 - - - lblOneDriveFolderID - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOneDrive - - - 1 - - - cbOneDriveCreateShareableLink - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOneDrive - - - 2 - - - oAuth2OneDrive - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=12.3.0.0, Culture=neutral, PublicKeyToken=null - - - tpOneDrive - - - 3 - - + 4, 220 - + 3, 3, 3, 3 - + 178, 0 - - 17 + + 0 - - OneDrive + + Dropbox - - tpOneDrive + + tpDropbox - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcFileUploaders - - 2 + + 1 False @@ -8111,128 +5741,32 @@ store.book[0].title 3 - - cbGoogleDriveDirectLink - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGoogleDrive - - - 0 - - - cbGoogleDriveUseFolder - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGoogleDrive - - - 1 - - - txtGoogleDriveFolderID - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGoogleDrive - - - 2 - - - lblGoogleDriveFolderID - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGoogleDrive - - - 3 - - - lvGoogleDriveFoldersList - - - ShareX.HelpersLib.MyListView, ShareX.HelpersLib, Version=12.3.0.0, Culture=neutral, PublicKeyToken=null - - - tpGoogleDrive - - - 4 - - - btnGoogleDriveRefreshFolders - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGoogleDrive - - - 5 - - - cbGoogleDriveIsPublic - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGoogleDrive - - - 6 - - - oauth2GoogleDrive - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=12.3.0.0, Culture=neutral, PublicKeyToken=null - - - tpGoogleDrive - - - 7 - - + 4, 220 - + 3, 3, 3, 3 - + 178, 0 - - 1 + + 17 - - Google Drive + + OneDrive - - tpGoogleDrive + + tpOneDrive - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcFileUploaders - - 3 + + 2 True @@ -8345,6 +5879,18 @@ store.book[0].title 3 + + Title + + + 200 + + + Description + + + 228 + 352, 112 @@ -8366,18 +5912,6 @@ store.book[0].title 4 - - Title - - - 200 - - - Description - - - 228 - False @@ -8459,128 +5993,32 @@ store.book[0].title 7 - - lblPuushAPIKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPuush - - - 0 - - - txtPuushAPIKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPuush - - - 1 - - - llPuushForgottenPassword - - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPuush - - - 2 - - - btnPuushLogin - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPuush - - - 3 - - - txtPuushPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPuush - - - 4 - - - txtPuushEmail - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPuush - - - 5 - - - lblPuushEmail - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPuush - - - 6 - - - lblPuushPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPuush - - - 7 - - + 4, 220 - + 3, 3, 3, 3 - + 178, 0 - - 26 + + 1 - - puush + + Google Drive - - tpPuush + + tpGoogleDrive - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcFileUploaders - - 4 + + 3 True @@ -8792,104 +6230,32 @@ store.book[0].title 7 - - lblBoxFolderTip - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpBox - - - 0 - - - cbBoxShare - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpBox - - - 1 - - - lvBoxFolders - - - ShareX.HelpersLib.MyListView, ShareX.HelpersLib, Version=12.3.0.0, Culture=neutral, PublicKeyToken=null - - - tpBox - - - 2 - - - lblBoxFolderID - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpBox - - - 3 - - - btnBoxRefreshFolders - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpBox - - - 4 - - - oauth2Box - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=12.3.0.0, Culture=neutral, PublicKeyToken=null - - - tpBox - - - 5 - - + 4, 220 - + 3, 3, 3, 3 - + 178, 0 - - 2 + + 26 - - Box + + puush - - tpBox + + tpPuush - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcFileUploaders - - 5 + + 4 True @@ -8951,6 +6317,12 @@ store.book[0].title 1 + + Folder name + + + 435 + 352, 72 @@ -8972,12 +6344,6 @@ store.book[0].title 2 - - Folder name - - - 435 - True @@ -9059,405 +6425,33 @@ store.book[0].title 5 - - gbAmazonS3Advanced - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 0 - - - lblAmazonS3Endpoint - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 1 - - - txtAmazonS3Endpoint - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 2 - - - lblAmazonS3Region - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 3 - - - txtAmazonS3Region - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 4 - - - txtAmazonS3CustomDomain - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 5 - - - lblAmazonS3PathPreviewLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 6 - - - lblAmazonS3PathPreview - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 7 - - - btnAmazonS3BucketNameOpen - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 8 - - - btnAmazonS3AccessKeyOpen - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 9 - - - cbAmazonS3Endpoints - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 11 - - - lblAmazonS3BucketName - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 12 - - - txtAmazonS3BucketName - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 13 - - - lblAmazonS3Endpoints - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 14 - - - txtAmazonS3ObjectPrefix - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 15 - - - lblAmazonS3ObjectPrefix - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 16 - - - txtAmazonS3SecretKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 17 - - - lblAmazonS3SecretKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 18 - - - lblAmazonS3AccessKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 19 - - - txtAmazonS3AccessKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 20 - - + 4, 220 - + 3, 3, 3, 3 - + 178, 0 - - 13 - - - Amazon S3 - - - tpAmazonS3 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 6 - - - lblAmazonS3StripExtension - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbAmazonS3Advanced - - - 0 - - - cbAmazonS3StripExtensionText - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbAmazonS3Advanced - - - 1 - - - cbAmazonS3StorageClass - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbAmazonS3Advanced - - + 2 - - cbAmazonS3StripExtensionVideo + + Box - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tpBox - - gbAmazonS3Advanced + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 + + tcFileUploaders - - cbAmazonS3PublicACL - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbAmazonS3Advanced - - - 4 - - - cbAmazonS3StripExtensionImage - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbAmazonS3Advanced - - + 5 - - cbAmazonS3UsePathStyle - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbAmazonS3Advanced - - - 6 - - - btnAmazonS3StorageClassHelp - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbAmazonS3Advanced - - - 7 - - - lblAmazonS3StorageClass - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbAmazonS3Advanced - - - 8 - - - 16, 408 - - - 416, 144 - - - 26 - - - Advanced - - - gbAmazonS3Advanced - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 0 - True @@ -9716,6 +6710,30 @@ store.book[0].title 8 + + 16, 408 + + + 416, 144 + + + 26 + + + Advanced + + + gbAmazonS3Advanced + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpAmazonS3 + + + 0 + True @@ -10208,140 +7226,152 @@ store.book[0].title 20 - - lblGoogleCloudStoragePathPreview - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGoogleCloudStorage - - - 0 - - - lblGoogleCloudStoragePathPreviewLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGoogleCloudStorage - - - 1 - - - txtGoogleCloudStorageObjectPrefix - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGoogleCloudStorage - - - 2 - - - lblGoogleCloudStorageObjectPrefix - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGoogleCloudStorage - - - 3 - - - lblGoogleCloudStorageDomain - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGoogleCloudStorage - - - 4 - - - txtGoogleCloudStorageDomain - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGoogleCloudStorage - - - 5 - - - lblGoogleCloudStorageBucket - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGoogleCloudStorage - - - 6 - - - txtGoogleCloudStorageBucket - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGoogleCloudStorage - - - 7 - - - oauth2GoogleCloudStorage - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=12.3.0.0, Culture=neutral, PublicKeyToken=null - - - tpGoogleCloudStorage - - - 8 - - + 4, 220 - + 3, 3, 3, 3 - + 178, 0 - - 32 + + 13 - - Google Cloud Storage + + Amazon S3 - - tpGoogleCloudStorage + + tpAmazonS3 - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcFileUploaders - - 7 + + 6 + + + True + + + NoControl + + + 13, 399 + + + 129, 13 + + + 34 + + + Remove file extension on: + + + lblGoogleCloudStorageStripExtension + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpGoogleCloudStorage + + + 0 + + + True + + + NoControl + + + 289, 399 + + + 47, 17 + + + 33 + + + Text + + + cbGoogleCloudStorageStripExtensionText + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpGoogleCloudStorage + + + 1 + + + True + + + NoControl + + + 230, 399 + + + 53, 17 + + + 32 + + + Video + + + cbGoogleCloudStorageStripExtensionVideo + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpGoogleCloudStorage + + + 2 + + + True + + + NoControl + + + 169, 399 + + + 55, 17 + + + 31 + + + Image + + + cbGoogleCloudStorageStripExtensionImage + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpGoogleCloudStorage + + + 3 True @@ -10350,7 +7380,7 @@ store.book[0].title NoControl - 13, 420 + 13, 441 45, 13 @@ -10371,7 +7401,7 @@ store.book[0].title tpGoogleCloudStorage - 0 + 4 True @@ -10380,7 +7410,7 @@ store.book[0].title NoControl - 13, 399 + 13, 420 72, 13 @@ -10401,7 +7431,7 @@ store.book[0].title tpGoogleCloudStorage - 1 + 5 16, 320 @@ -10422,7 +7452,7 @@ store.book[0].title tpGoogleCloudStorage - 2 + 6 True @@ -10452,7 +7482,7 @@ store.book[0].title tpGoogleCloudStorage - 3 + 7 True @@ -10482,7 +7512,7 @@ store.book[0].title tpGoogleCloudStorage - 4 + 8 16, 368 @@ -10503,7 +7533,7 @@ store.book[0].title tpGoogleCloudStorage - 5 + 9 True @@ -10533,7 +7563,7 @@ store.book[0].title tpGoogleCloudStorage - 6 + 10 16, 271 @@ -10554,7 +7584,7 @@ store.book[0].title tpGoogleCloudStorage - 7 + 11 16, 16 @@ -10575,214 +7605,34 @@ store.book[0].title tpGoogleCloudStorage - 8 - - - lblAzureStorageURLPreview - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAzureStorage - - - 0 - - - lblAzureStorageURLPreviewLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAzureStorage - - - 1 - - - txtAzureStorageUploadPath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAzureStorage - - - 2 - - - lblAzureStorageUploadPath - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAzureStorage - - - 3 - - - cbAzureStorageEnvironment - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAzureStorage - - - 4 - - - lblAzureStorageEnvironment - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAzureStorage - - - 5 - - - btnAzureStoragePortal - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAzureStorage - - - 6 - - - txtAzureStorageContainer - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAzureStorage - - - 7 - - - lblAzureStorageContainer - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAzureStorage - - - 8 - - - txtAzureStorageAccessKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAzureStorage - - - 9 - - - lblAzureStorageAccessKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAzureStorage - - - 10 - - - txtAzureStorageAccountName - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAzureStorage - - - 11 - - - lblAzureStorageAccountName - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAzureStorage - - 12 - - txtAzureStorageCustomDomain + + 4, 40 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAzureStorage - - - 13 - - - lblAzureStorageCustomDomain - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAzureStorage - - - 14 - - - 4, 220 - - + 3, 3, 3, 3 - - 178, 0 + + 972, 519 - - 28 + + 32 - - Azure Storage + + Google Cloud Storage - - tpAzureStorage + + tpGoogleCloudStorage - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcFileUploaders - - 8 + + 7 True @@ -11195,116 +8045,32 @@ store.book[0].title 14 - - lblB2ManageLink - - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpBackblazeB2 - - - 0 - - - txtB2UrlPreview - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpBackblazeB2 - - - 1 - - - lblB2UrlPreview - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpBackblazeB2 - - - 3 - - - lblB2Bucket - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpBackblazeB2 - - - 5 - - - lblB2UploadPath - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpBackblazeB2 - - - 8 - - - lblB2ApplicationKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpBackblazeB2 - - - 10 - - - lblB2ApplicationKeyId - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpBackblazeB2 - - - 11 - - + 4, 220 - + 3, 3, 3, 3 - + 178, 0 - - 33 + + 28 - - Backblaze B2 + + Azure Storage - - tpBackblazeB2 + + tpAzureStorage - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcFileUploaders - - 9 + + 8 True @@ -11507,68 +8273,32 @@ store.book[0].title 11 - - cbGfycatIsPublic - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGfycat - - - 0 - - - atcGfycatAccountType - - - ShareX.UploadersLib.AccountTypeControl, ShareX.UploadersLib, Version=12.3.0.0, Culture=neutral, PublicKeyToken=null - - - tpGfycat - - - 1 - - - oauth2Gfycat - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=12.3.0.0, Culture=neutral, PublicKeyToken=null - - - tpGfycat - - - 2 - - + 4, 220 - + 3, 3, 3, 3 - + 178, 0 - - 30 + + 33 - - Gfycat + + Backblaze B2 - - tpGfycat + + tpBackblazeB2 - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcFileUploaders - - 10 + + 9 True @@ -11642,161 +8372,32 @@ store.book[0].title 2 - - 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, 220 - + + 3, 3, 3, 3 + + 178, 0 - - 12 + + 30 - - Mega + + Gfycat - - tpMega + + tpGfycat - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcFileUploaders - - 11 + + 10 NoControl @@ -12092,224 +8693,29 @@ store.book[0].title 10 - - txtOwnCloudExpiryTime - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 0 - - - cbOwnCloudAutoExpire - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 1 - - - lblOwnCloudExpiryTime - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 2 - - - cbOwnCloudUsePreviewLinks - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 3 - - - lblOwnCloudHostExample - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 4 - - - cbOwnCloud81Compatibility - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 5 - - - cbOwnCloudDirectLink - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 6 - - - cbOwnCloudCreateShare - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 7 - - - txtOwnCloudPath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 8 - - - txtOwnCloudPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 9 - - - txtOwnCloudUsername - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 10 - - - txtOwnCloudHost - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 11 - - - lblOwnCloudPath - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 12 - - - lblOwnCloudPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 13 - - - lblOwnCloudUsername - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 14 - - - lblOwnCloudHost - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 15 - - + 4, 220 - - 3, 3, 3, 3 - - + 178, 0 - - 15 + + 12 - - ownCloud / Nextcloud + + Mega - - tpOwnCloud + + tpMega - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcFileUploaders - - 12 + + 11 16, 224 @@ -12746,116 +9152,32 @@ store.book[0].title 15 - - 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, 220 - + 3, 3, 3, 3 - + 178, 0 - - 16 + + 15 - - MediaFire + + ownCloud / Nextcloud - - tpMediaFire + + tpOwnCloud - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcFileUploaders - - 13 + + 12 True @@ -13040,92 +9362,32 @@ store.book[0].title 6 - - 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, 220 - + 3, 3, 3, 3 - + 178, 0 - - 14 + + 16 - - Pushbullet + + MediaFire - - tpPushbullet + + tpMediaFire - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcFileUploaders - - 14 + + 13 True @@ -13262,104 +9524,32 @@ store.book[0].title 4 - - 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=12.3.0.0, Culture=neutral, PublicKeyToken=null - - - tpSendSpace - - - 5 - - + 4, 220 - + 3, 3, 3, 3 - + 178, 0 - - 6 + + 14 - - SendSpace + + Pushbullet - - tpSendSpace + + tpPushbullet - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcFileUploaders - - 15 + + 14 NoControl @@ -13511,104 +9701,32 @@ store.book[0].title 5 - - 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, 220 - + 3, 3, 3, 3 - + 178, 0 - - 7 + + 6 - - Ge.tt + + SendSpace - - tpGe_tt + + tpSendSpace - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcFileUploaders - - 16 + + 15 True @@ -13769,92 +9887,32 @@ store.book[0].title 5 - - 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, 220 - + 3, 3, 3, 3 - + 178, 0 - - 8 + + 7 - - Hostr + + Ge.tt - - tpHostr + + tpGe_tt - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcFileUploaders - - 17 + + 16 True @@ -13988,77 +10046,32 @@ store.book[0].title 4 - - 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 - - - gbJiraServer - - - 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=12.3.0.0, Culture=neutral, PublicKeyToken=null - - - tpJira - - - 3 - - + 4, 220 - + + 3, 3, 3, 3 + + 178, 0 - - 11 + + 8 - - Atlassian Jira + + Hostr - - tpJira + + tpHostr - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcFileUploaders - - 18 + + 17 472, 277 @@ -14114,66 +10127,6 @@ store.book[0].title 1 - - txtJiraConfigHelp - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbJiraServer - - - 0 - - - txtJiraHost - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbJiraServer - - - 1 - - - lblJiraHost - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbJiraServer - - - 2 - - - 13, 13 - - - 451, 358 - - - 0 - - - Jira server - - - gbJiraServer - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpJira - - - 2 - 8, 64 @@ -14258,6 +10211,30 @@ store.book[0].title 2 + + 13, 13 + + + 451, 358 + + + 0 + + + Jira server + + + gbJiraServer + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpJira + + + 2 + 473, 13 @@ -14279,92 +10256,29 @@ store.book[0].title 3 - - 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, 220 - - 3, 3, 3, 3 - - + 178, 0 - - 20 + + 11 - - Lambda + + Atlassian Jira - - tpLambda + + tpJira - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcFileUploaders - - 19 + + 18 True @@ -14498,116 +10412,32 @@ store.book[0].title 4 - - 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, 220 - + 3, 3, 3, 3 - + 178, 0 - - 22 + + 20 - - Pomf + + Lambda - - tpPomf + + tpLambda - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcFileUploaders - - 20 + + 19 NoControl @@ -14792,284 +10622,32 @@ store.book[0].title 6 - - 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=12.3.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, 220 - + 3, 3, 3, 3 - + 178, 0 - - 23 + + 22 - - Seafile + + Pomf - - tpSeafile + + tpPomf - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcFileUploaders - - 21 + + 20 https://seacloud.cc/api2/ @@ -15098,78 +10676,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 @@ -15272,6 +10778,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 @@ -15350,6 +10880,21 @@ store.book[0].title 4 + + Name + + + 217 + + + Size + + + 74 + + + Encrypted + 16, 162 @@ -15371,21 +10916,6 @@ store.book[0].title 5 - - Name - - - 217 - - - Size - - - 74 - - - Encrypted - NoControl @@ -15552,90 +11082,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 @@ -15765,6 +11211,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 @@ -15819,90 +11289,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 @@ -16032,6 +11418,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 @@ -16173,101 +11583,32 @@ Using an encrypted library disables sharing. 20 - - 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, 220 - + + 3, 3, 3, 3 + + 178, 0 - - 24 + + 23 - - Streamable + + Seafile - - tpStreamable + + tpSeafile - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcFileUploaders - - 22 + + 21 True @@ -16446,68 +11787,29 @@ Using an encrypted library disables sharing. 5 - - btnSulGetAPIKey - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSul - - - 0 - - - txtSulAPIKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSul - - - 1 - - - lblSulAPIKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSul - - - 2 - - + 4, 220 - - 3, 3, 3, 3 - - + 178, 0 - - 25 + + 24 - - s-ul + + Streamable - - tpSul + + tpStreamable - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcFileUploaders - - 23 + + 22 NoControl @@ -16587,128 +11889,32 @@ Using an encrypted library disables sharing. 2 - - btnLithiioFetchAPIKey - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpLithiio - - - 0 - - - txtLithiioPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpLithiio - - - 1 - - - txtLithiioEmail - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpLithiio - - - 2 - - - lblLithiioPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpLithiio - - - 3 - - - lblLithiioEmail - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpLithiio - - - 4 - - - btnLithiioGetAPIKey - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpLithiio - - - 5 - - - lblLithiioApiKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpLithiio - - - 6 - - - txtLithiioApiKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpLithiio - - - 7 - - + 4, 220 - + 3, 3, 3, 3 - + 178, 0 - - 20 + + 25 - - Lithiio + + s-ul - - tpLithiio + + tpSul - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcFileUploaders - - 24 + + 23 NoControl @@ -16917,128 +12123,32 @@ Using an encrypted library disables sharing. 7 - - gbPlikSettings - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPlik - - - 0 - - - gbPlikLoginCredentials - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPlik - - - 1 - - + 4, 220 - + 3, 3, 3, 3 - + 178, 0 - - 29 + + 20 - - Plik + + Lithiio - - tpPlik + + tpLithiio - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcFileUploaders - - 25 - - - cbPlikOneShot - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbPlikSettings - - - 0 - - - txtPlikComment - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbPlikSettings - - - 1 - - - cbPlikComment - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbPlikSettings - - - 2 - - - cbPlikRemovable - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbPlikSettings - - - 3 - - - 292, 19 - - - 344, 247 - - - 14 - - - Other settings - - - gbPlikSettings - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPlik - - - 0 + + 24 True @@ -17154,173 +12264,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 - - gbPlikLoginCredentials + + 14 - - 0 + + Other settings - - cbxPlikTTLUnit + + gbPlikSettings - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbPlikLoginCredentials - - - 1 - - - lblPlikTTL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbPlikLoginCredentials - - - 2 - - - txtPlikURL - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbPlikLoginCredentials - - - 3 - - - lblPlikURL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbPlikLoginCredentials - - - 4 - - - cbPlikIsSecured - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbPlikLoginCredentials - - - 5 - - - lblPlikAPIKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbPlikLoginCredentials - - - 6 - - - txtPlikAPIKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbPlikLoginCredentials - - - 7 - - - lblPlikPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbPlikLoginCredentials - - - 8 - - - lblPlikUsername - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbPlikLoginCredentials - - - 9 - - - txtPlikPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbPlikLoginCredentials - - - 10 - - - txtPlikLogin - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbPlikLoginCredentials - - - 11 - - - 15, 19 - - - 271, 247 - - - 13 - - - Login Credentials - - - gbPlikLoginCredentials - - + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tpPlik - - 1 + + 0 9, 217 @@ -17640,77 +12606,56 @@ Using an encrypted library disables sharing. 11 - - cbYouTubeUseShortenedLink + + 15, 19 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 271, 247 - - tpYouTube + + 13 - - 0 + + Login Credentials - - cbYouTubePrivacyType + + gbPlikLoginCredentials - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tpYouTube + + tpPlik - + 1 - - lblYouTubePrivacyType - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpYouTube - - - 2 - - - oauth2YouTube - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=12.3.0.0, Culture=neutral, PublicKeyToken=null - - - tpYouTube - - - 3 - - + 4, 220 - + + 3, 3, 3, 3 + + 178, 0 - - 31 + + 29 - - YouTube + + Plik - - tpYouTube + + tpPlik - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcFileUploaders - - 26 + + 25 True @@ -17814,164 +12759,29 @@ Using an encrypted library disables sharing. 3 - - lbSharedFolderAccounts - - - System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSharedFolder - - - 0 - - - pgSharedFolderAccount - - - System.Windows.Forms.PropertyGrid, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSharedFolder - - - 1 - - - btnSharedFolderDuplicate - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSharedFolder - - - 2 - - - btnSharedFolderRemove - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSharedFolder - - - 3 - - - btnSharedFolderAdd - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSharedFolder - - - 4 - - - lblSharedFolderFiles - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSharedFolder - - - 5 - - - lblSharedFolderText - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSharedFolder - - - 6 - - - cboSharedFolderFiles - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSharedFolder - - - 7 - - - lblSharedFolderImages - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSharedFolder - - - 8 - - - cboSharedFolderText - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSharedFolder - - - 9 - - - cboSharedFolderImages - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSharedFolder - - - 10 - - + 4, 220 - - 3, 3, 3, 3 - - + 178, 0 - - 9 + + 31 - - Shared folder + + YouTube - - tpSharedFolder + + tpYouTube - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcFileUploaders - - 27 + + 26 False @@ -18252,212 +13062,32 @@ Using an encrypted library disables sharing. 10 - - 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, 220 - + 3, 3, 3, 3 - + 178, 0 - - 10 + + 9 - - Email + + Shared folder - - tpEmail + + tpSharedFolder - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcFileUploaders - - 28 + + 27 16, 408 @@ -18852,6 +13482,84 @@ Using an encrypted library disables sharing. 14 + + 4, 220 + + + 3, 3, 3, 3 + + + 178, 0 + + + 10 + + + Email + + + tpEmail + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 28 + + + Fill + + + 3, 3 + + + 980, 563 + + + 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, 569 + + + 2 + + + File uploaders + + + tpFileUploaders + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcUploaders + + + 2 + NoControl @@ -18870,372 +13578,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, 569 - - - 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, 563 - - - 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, 537 - - - 0 - - - Pastebin - - - tpPastebin - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcTextUploaders - - - 0 - True @@ -19656,68 +13998,32 @@ Using an encrypted library disables sharing. 15 - - btnPaste_eeGetUserKey - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPaste_ee - - - 0 - - - lblPaste_eeUserAPIKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPaste_ee - - - 1 - - - txtPaste_eeUserAPIKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPaste_ee - - - 2 - - + 4, 22 - + 3, 3, 3, 3 - - 178, 42 + + 972, 537 - - 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 NoControl @@ -19797,113 +14103,32 @@ Using an encrypted library disables sharing. 2 - - 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=12.3.0.0, Culture=neutral, PublicKeyToken=null - - - tpGist - - - 6 - - + 4, 22 - + + 3, 3, 3, 3 + + 178, 42 - - 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 @@ -20097,68 +14322,29 @@ Using an encrypted library disables sharing. 6 - - 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 - - + 178, 42 - - 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 @@ -20241,92 +14427,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 - + 178, 42 - - 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 @@ -20460,80 +14586,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 - + 178, 42 - - 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 @@ -20637,6 +14715,51 @@ Using an encrypted library disables sharing. 3 + + 4, 22 + + + 3, 3, 3, 3 + + + 178, 42 + + + 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 @@ -20676,332 +14799,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, 569 - - - 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 - - - tpGooglePhotos - - - 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 - - + Fill - + 3, 3 - - 780, 480 - - + 980, 563 - + 0 - - tcImageUploaders + + tcTextUploaders - + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tpImageUploaders + + tpTextUploaders - + 0 - - cbImgurUseGIFV - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImgur - - - 0 - - - cbImgurUploadSelectedAlbum - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImgur - - - 1 - - - cbImgurDirectLink - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImgur - - - 2 - - - atcImgurAccountType - - - ShareX.UploadersLib.AccountTypeControl, ShareX.UploadersLib, Version=12.3.0.0, Culture=neutral, PublicKeyToken=null - - - tpImgur - - - 3 - - - oauth2Imgur - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=12.3.0.0, Culture=neutral, PublicKeyToken=null - - - tpImgur - - - 4 - - - lvImgurAlbumList - - - System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImgur - - - 5 - - - btnImgurRefreshAlbumList - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImgur - - - 6 - - - cbImgurThumbnailType - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImgur - - - 7 - - - lblImgurThumbnailType - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImgur - - - 8 - - + 4, 22 - + 3, 3, 3, 3 - - 972, 537 + + 986, 569 - - 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 @@ -21135,6 +14982,21 @@ Using an encrypted library disables sharing. 4 + + ID + + + Title + + + 150 + + + Description + + + 226 + 352, 48 @@ -21156,21 +15018,6 @@ Using an encrypted library disables sharing. 5 - - ID - - - Title - - - 150 - - - Description - - - 226 - False @@ -21252,128 +15099,32 @@ Using an encrypted library disables sharing. 8 - - 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, 537 - - 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 @@ -21588,116 +15339,32 @@ Using an encrypted library disables sharing. 7 - - atcTinyPicAccountType - - - ShareX.UploadersLib.AccountTypeControl, ShareX.UploadersLib, Version=12.3.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, 537 - - 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 @@ -21876,56 +15543,32 @@ Using an encrypted library disables sharing. 6 - - cbFlickrDirectLink - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFlickr - - - 0 - - - oauthFlickr - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=12.3.0.0, Culture=neutral, PublicKeyToken=null - - - tpFlickr - - - 1 - - + 4, 22 - + 3, 3, 3, 3 - + 972, 537 - - 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 True @@ -21978,128 +15621,32 @@ Using an encrypted library disables sharing. 1 - - 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, 537 - - 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 @@ -22179,89 +15726,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 @@ -22392,113 +15879,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 @@ -22686,92 +16089,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 - - tpGooglePhotos - - + 0 - - lblPicasaAlbumID + + User account - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gbPhotobucketUserAccount - - tpGooglePhotos + + 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 - - - tpGooglePhotos - - + 2 - - btnPicasaRefreshAlbumList - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGooglePhotos - - - 3 - - - oauth2Picasa - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=12.3.0.0, Culture=neutral, PublicKeyToken=null - - - tpGooglePhotos - - - 4 - - + 4, 22 - + 3, 3, 3, 3 - + 972, 537 - - 8 + + 4 - - Google Photos + + Photobucket - - tpGooglePhotos + + tpPhotobucket - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcImageUploaders - - 5 + + 4 352, 64 @@ -22824,6 +16191,24 @@ Using an encrypted library disables sharing. 1 + + ID + + + 135 + + + Name + + + 150 + + + Description + + + 143 + 352, 88 @@ -22845,24 +16230,6 @@ Using an encrypted library disables sharing. 2 - - ID - - - 135 - - - Name - - - 150 - - - Description - - - 143 - False @@ -22914,140 +16281,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, 537 - - 9 + + 8 - - Chevereto + + Google Photos - - tpChevereto + + tpGooglePhotos - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcImageUploaders - - 6 + + 5 NoControl @@ -23292,68 +16551,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, 537 - - 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 @@ -23436,6 +16659,87 @@ Using an encrypted library disables sharing. 2 + + 4, 22 + + + 3, 3, 3, 3 + + + 972, 537 + + + 10 + + + vgy.me + + + tpVgyme + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcImageUploaders + + + 7 + + + Fill + + + 3, 3 + + + 780, 480 + + + 980, 563 + + + 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, 569 + + + 0 + + + Image uploaders + + + tpImageUploaders + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcUploaders + + + 0 + Fill diff --git a/ShareX.UploadersLib/UploadersConfig.cs b/ShareX.UploadersLib/UploadersConfig.cs index 41bc28324..4321140ce 100644 --- a/ShareX.UploadersLib/UploadersConfig.cs +++ b/ShareX.UploadersLib/UploadersConfig.cs @@ -410,6 +410,9 @@ public class UploadersConfig : SettingsBase public string GoogleCloudStorageBucket = ""; public string GoogleCloudStorageDomain = ""; public string GoogleCloudStorageObjectPrefix = "ShareX/%y/%mo"; + public bool GoogleCloudStorageRemoveExtensionImage = false; + public bool GoogleCloudStorageRemoveExtensionVideo = false; + public bool GoogleCloudStorageRemoveExtensionText = false; #endregion Google Cloud Storage