From cce83515be8d1a31c826fa6ca23fae7034d76f52 Mon Sep 17 00:00:00 2001 From: Jaex Date: Fri, 8 Apr 2016 18:58:03 +0300 Subject: [PATCH] fixed #1487: Using system colors everywhere in UI as possible so Windows themes can work properly --- .../Controls/MyPictureBox.Designer.cs | 1 - ShareX.HelpersLib/Controls/MyPictureBox.cs | 1 + .../Forms/ClipboardContentViewer.Designer.cs | 1 - .../Forms/ClipboardContentViewer.resx | 15 + ShareX.HelpersLib/Forms/ErrorForm.Designer.cs | 13 +- .../Forms/HashCheckForm.Designer.cs | 1 - .../Forms/MonitorTestForm.Designer.cs | 2 - ShareX.HelpersLib/Forms/MyMessageBox.cs | 3 - .../Forms/QRCodeForm.Designer.cs | 2 +- .../Screencast/FFmpegOptionsForm.Designer.cs | 4 - .../Screencast/FFmpegOptionsForm.resx | 587 +- .../Forms/OAuthWebForm.Designer.cs | 17 +- ShareX.UploadersLib/Forms/OAuthWebForm.resx | 26 +- .../Forms/UploadersConfigForm.Designer.cs | 19 +- .../Forms/UploadersConfigForm.resx | 10204 ++++------------ .../HotkeySelectionControl.Designer.cs | 1 - ShareX/Controls/HotkeySelectionControl.cs | 4 +- ShareX/Forms/AboutForm.Designer.cs | 10 +- ShareX/Forms/AboutForm.resx | 3 - .../Forms/ApplicationSettingsForm.Designer.cs | 1 - ShareX/Forms/HotkeySettingsForm.Designer.cs | 1 - ShareX/Forms/MainForm.Designer.cs | 5 +- ShareX/Forms/TaskSettingsForm.Designer.cs | 1 - 23 files changed, 2810 insertions(+), 8112 deletions(-) diff --git a/ShareX.HelpersLib/Controls/MyPictureBox.Designer.cs b/ShareX.HelpersLib/Controls/MyPictureBox.Designer.cs index 80c17c4a6..0390db6bb 100644 --- a/ShareX.HelpersLib/Controls/MyPictureBox.Designer.cs +++ b/ShareX.HelpersLib/Controls/MyPictureBox.Designer.cs @@ -70,7 +70,6 @@ private void InitializeComponent() // resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.White; this.Controls.Add(this.lblStatus); this.Controls.Add(this.pbMain); this.Name = "MyPictureBox"; diff --git a/ShareX.HelpersLib/Controls/MyPictureBox.cs b/ShareX.HelpersLib/Controls/MyPictureBox.cs index 34aafbcb1..b5818ebf8 100644 --- a/ShareX.HelpersLib/Controls/MyPictureBox.cs +++ b/ShareX.HelpersLib/Controls/MyPictureBox.cs @@ -151,6 +151,7 @@ public MyPictureBox() { InitializeComponent(); Text = string.Empty; + pbMain.BackColor = SystemColors.Control; pbMain.InitialImage = Resources.Loading; pbMain.ErrorImage = Resources.cross; pbMain.LoadProgressChanged += pbMain_LoadProgressChanged; diff --git a/ShareX.HelpersLib/Forms/ClipboardContentViewer.Designer.cs b/ShareX.HelpersLib/Forms/ClipboardContentViewer.Designer.cs index a86adc21b..0869ceb57 100644 --- a/ShareX.HelpersLib/Forms/ClipboardContentViewer.Designer.cs +++ b/ShareX.HelpersLib/Forms/ClipboardContentViewer.Designer.cs @@ -62,7 +62,6 @@ private void InitializeComponent() // txtClipboard // resources.ApplyResources(this.txtClipboard, "txtClipboard"); - this.txtClipboard.BackColor = System.Drawing.Color.White; this.txtClipboard.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtClipboard.Name = "txtClipboard"; this.txtClipboard.ReadOnly = true; diff --git a/ShareX.HelpersLib/Forms/ClipboardContentViewer.resx b/ShareX.HelpersLib/Forms/ClipboardContentViewer.resx index 48c107e47..1aca6f9d9 100644 --- a/ShareX.HelpersLib/Forms/ClipboardContentViewer.resx +++ b/ShareX.HelpersLib/Forms/ClipboardContentViewer.resx @@ -121,6 +121,9 @@ Top + + NoControl + 0, 0 @@ -153,6 +156,9 @@ Bottom, Right + + NoControl + 243, 328 @@ -180,6 +186,9 @@ Bottom, Right + + NoControl + 331, 328 @@ -267,6 +276,9 @@ True + + NoControl + 9, 332 @@ -324,6 +336,9 @@ 420, 360 + + NoControl + 375, 375 diff --git a/ShareX.HelpersLib/Forms/ErrorForm.Designer.cs b/ShareX.HelpersLib/Forms/ErrorForm.Designer.cs index 654f92ea2..31cdc824a 100644 --- a/ShareX.HelpersLib/Forms/ErrorForm.Designer.cs +++ b/ShareX.HelpersLib/Forms/ErrorForm.Designer.cs @@ -35,15 +35,14 @@ private void InitializeComponent() this.btnOpenLogFile = new System.Windows.Forms.Button(); this.flpMenu = new System.Windows.Forms.FlowLayoutPanel(); this.btnContinue = new System.Windows.Forms.Button(); - this.lblErrorMessage = new System.Windows.Forms.Label(); this.btnOK = new System.Windows.Forms.Button(); + this.lblErrorMessage = new System.Windows.Forms.Label(); this.flpMenu.SuspendLayout(); this.SuspendLayout(); // // txtException // resources.ApplyResources(this.txtException, "txtException"); - this.txtException.BackColor = System.Drawing.Color.White; this.txtException.Name = "txtException"; this.txtException.ReadOnly = true; // @@ -89,11 +88,6 @@ private void InitializeComponent() this.btnContinue.UseVisualStyleBackColor = false; this.btnContinue.Click += new System.EventHandler(this.btnContinue_Click); // - // lblErrorMessage - // - resources.ApplyResources(this.lblErrorMessage, "lblErrorMessage"); - this.lblErrorMessage.Name = "lblErrorMessage"; - // // btnOK // resources.ApplyResources(this.btnOK, "btnOK"); @@ -102,6 +96,11 @@ private void InitializeComponent() this.btnOK.UseVisualStyleBackColor = false; this.btnOK.Click += new System.EventHandler(this.btnOK_Click); // + // lblErrorMessage + // + resources.ApplyResources(this.lblErrorMessage, "lblErrorMessage"); + this.lblErrorMessage.Name = "lblErrorMessage"; + // // ErrorForm // resources.ApplyResources(this, "$this"); diff --git a/ShareX.HelpersLib/Forms/HashCheckForm.Designer.cs b/ShareX.HelpersLib/Forms/HashCheckForm.Designer.cs index f7e302f7f..fdf5841cb 100644 --- a/ShareX.HelpersLib/Forms/HashCheckForm.Designer.cs +++ b/ShareX.HelpersLib/Forms/HashCheckForm.Designer.cs @@ -298,7 +298,6 @@ private void InitializeComponent() // resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.WhiteSmoke; this.Controls.Add(this.tcMain); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.MaximizeBox = false; diff --git a/ShareX.HelpersLib/Forms/MonitorTestForm.Designer.cs b/ShareX.HelpersLib/Forms/MonitorTestForm.Designer.cs index 083dd5f94..7d0073d7d 100644 --- a/ShareX.HelpersLib/Forms/MonitorTestForm.Designer.cs +++ b/ShareX.HelpersLib/Forms/MonitorTestForm.Designer.cs @@ -65,7 +65,6 @@ private void InitializeComponent() // // pSettings // - this.pSettings.BackColor = System.Drawing.Color.WhiteSmoke; this.pSettings.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.pSettings.Controls.Add(this.btnGradientColor2); this.pSettings.Controls.Add(this.btnGradientColor1); @@ -269,7 +268,6 @@ private void InitializeComponent() // resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.Gray; this.Controls.Add(this.pSettings); this.Cursor = System.Windows.Forms.Cursors.Default; this.DoubleBuffered = true; diff --git a/ShareX.HelpersLib/Forms/MyMessageBox.cs b/ShareX.HelpersLib/Forms/MyMessageBox.cs index 26bca22f5..fd3e0020f 100644 --- a/ShareX.HelpersLib/Forms/MyMessageBox.cs +++ b/ShareX.HelpersLib/Forms/MyMessageBox.cs @@ -44,7 +44,6 @@ public MyMessageBox(string text, string caption, MessageBoxButtons buttons = Mes { Icon = ShareXResources.Icon; - BackColor = Color.White; Width = 180; Height = 100; Text = caption; @@ -61,7 +60,6 @@ public MyMessageBox(string text, string caption, MessageBoxButtons buttons = Mes labelText.Margin = new Padding(0); labelText.Font = SystemFonts.MessageBoxFont; labelText.TextAlign = ContentAlignment.MiddleLeft; - labelText.BackColor = Color.White; labelText.AutoSize = true; labelText.MinimumSize = new Size(125, 0); labelText.MaximumSize = new Size(400, 400); @@ -121,7 +119,6 @@ public MyMessageBox(string text, string caption, MessageBoxButtons buttons = Mes panel.FlowDirection = FlowDirection.RightToLeft; FlowLayoutPanel labelPanel = new FlowLayoutPanel(); - labelPanel.BackColor = Color.White; labelPanel.FlowDirection = FlowDirection.TopDown; labelPanel.AutoSize = true; labelPanel.AutoSizeMode = AutoSizeMode.GrowAndShrink; diff --git a/ShareX.HelpersLib/Forms/QRCodeForm.Designer.cs b/ShareX.HelpersLib/Forms/QRCodeForm.Designer.cs index 4c8aa7914..a95e0cc25 100644 --- a/ShareX.HelpersLib/Forms/QRCodeForm.Designer.cs +++ b/ShareX.HelpersLib/Forms/QRCodeForm.Designer.cs @@ -41,6 +41,7 @@ private void InitializeComponent() // qrMain // resources.ApplyResources(this.qrMain, "qrMain"); + this.qrMain.BackColor = System.Drawing.Color.White; this.qrMain.ContextMenuStrip = this.cmsQR; this.qrMain.ErrorCorrectLevel = Gma.QrCodeNet.Encoding.ErrorCorrectionLevel.M; this.qrMain.Name = "qrMain"; @@ -79,7 +80,6 @@ private void InitializeComponent() // resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.White; this.Controls.Add(this.txtQRCode); this.Controls.Add(this.qrMain); this.Name = "QRCodeForm"; diff --git a/ShareX.ScreenCaptureLib/Screencast/FFmpegOptionsForm.Designer.cs b/ShareX.ScreenCaptureLib/Screencast/FFmpegOptionsForm.Designer.cs index d27b9ad7f..6c2685ef7 100644 --- a/ShareX.ScreenCaptureLib/Screencast/FFmpegOptionsForm.Designer.cs +++ b/ShareX.ScreenCaptureLib/Screencast/FFmpegOptionsForm.Designer.cs @@ -180,7 +180,6 @@ private void InitializeComponent() // // tbVorbis_qscale // - this.tbVorbis_qscale.BackColor = System.Drawing.Color.White; resources.ApplyResources(this.tbVorbis_qscale, "tbVorbis_qscale"); this.tbVorbis_qscale.LargeChange = 1; this.tbVorbis_qscale.Name = "tbVorbis_qscale"; @@ -191,7 +190,6 @@ private void InitializeComponent() // // tbMP3_qscale // - this.tbMP3_qscale.BackColor = System.Drawing.Color.White; resources.ApplyResources(this.tbMP3_qscale, "tbMP3_qscale"); this.tbMP3_qscale.LargeChange = 1; this.tbMP3_qscale.Maximum = 9; @@ -203,7 +201,6 @@ private void InitializeComponent() // // tbAACBitrate // - this.tbAACBitrate.BackColor = System.Drawing.Color.White; resources.ApplyResources(this.tbAACBitrate, "tbAACBitrate"); this.tbAACBitrate.LargeChange = 1; this.tbAACBitrate.Maximum = 16; @@ -619,7 +616,6 @@ private void InitializeComponent() // resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.White; this.Controls.Add(this.cbOverrideFFmpegPath); this.Controls.Add(this.eiFFmpeg); this.Controls.Add(this.btnHelp); diff --git a/ShareX.ScreenCaptureLib/Screencast/FFmpegOptionsForm.resx b/ShareX.ScreenCaptureLib/Screencast/FFmpegOptionsForm.resx index 51bfe81a4..1532ad4dd 100644 --- a/ShareX.ScreenCaptureLib/Screencast/FFmpegOptionsForm.resx +++ b/ShareX.ScreenCaptureLib/Screencast/FFmpegOptionsForm.resx @@ -133,7 +133,7 @@ CRF: - @Invariant + lblx264CRF @@ -146,6 +146,9 @@ 2 + + 17, 17 + 144, 12 @@ -159,9 +162,6 @@ Center - - 17, 17 - Constant Rate Factor (CRF): The value can be between 0-51, where 0 is lossless, 30 is default, and 51 is the worst possible. A higher value means bad quality, but a low file size. @@ -178,6 +178,9 @@ A higher value means bad quality, but a low file size. 1 + + 17, 17 + 144, 12 @@ -621,7 +624,7 @@ Otherwise it can't keep up with recording and a lot of frame drops will happen.< ... - @Invariant + btnFFmpegBrowse @@ -855,7 +858,7 @@ Otherwise it can't keep up with recording and a lot of frame drops will happen.< ? - @Invariant + btnFFmpegHelp @@ -892,6 +895,75 @@ Otherwise it can't keep up with recording and a lot of frame drops will happen.< 1 + + tpX264 + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFFmpegVideoCodecs + + + 0 + + + tpVpx + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFFmpegVideoCodecs + + + 1 + + + tpXvid + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFFmpegVideoCodecs + + + 2 + + + tpGIF + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFFmpegVideoCodecs + + + 3 + + + 8, 56 + + + 312, 96 + + + 3 + + + tcFFmpegVideoCodecs + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gbCodecs + + + 6 + 4, 22 @@ -906,7 +978,7 @@ Otherwise it can't keep up with recording and a lot of frame drops will happen.< x264 / x265 - @Invariant + tpX264 @@ -966,7 +1038,7 @@ Otherwise it can't keep up with recording and a lot of frame drops will happen.< VP8 - @Invariant + tpVpx @@ -979,102 +1051,6 @@ Otherwise it can't keep up with recording and a lot of frame drops will happen.< 1 - - 4, 22 - - - 304, 70 - - - 3 - - - Xvid - @Invariant - - tpXvid - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFFmpegVideoCodecs - - - 2 - - - lblGIFDither - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGIF - - - 1 - - - lblGIFStatsMode - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGIF - - - 3 - - - 4, 22 - - - 3, 3, 3, 3 - - - 304, 70 - - - 4 - - - GIF - @Invariant - - tpGIF - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFFmpegVideoCodecs - - - 3 - - - 8, 56 - - - 312, 96 - - - 3 - - - tcFFmpegVideoCodecs - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbCodecs - - - 6 - True @@ -1092,7 +1068,7 @@ Otherwise it can't keep up with recording and a lot of frame drops will happen.< kbit/s - @Invariant + lblVP8BitrateK @@ -1156,6 +1132,81 @@ Otherwise it can't keep up with recording and a lot of frame drops will happen.< 2 + + 4, 22 + + + 304, 70 + + + 3 + + + Xvid + + + tpXvid + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFFmpegVideoCodecs + + + 2 + + + lblGIFDither + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpGIF + + + 1 + + + lblGIFStatsMode + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpGIF + + + 3 + + + 4, 22 + + + 3, 3, 3, 3 + + + 304, 70 + + + 4 + + + GIF + + + tpGIF + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFFmpegVideoCodecs + + + 3 + True @@ -1261,6 +1312,48 @@ Otherwise it can't keep up with recording and a lot of frame drops will happen.< 5 + + True + + + 16, 16 + + + 40, 13 + + + 0 + + + Bitrate: + + + lblAACQuality + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpAAC + + + 1 + + + 4, 22 + + + 3, 3, 3, 3 + + + 304, 70 + + + 3 + + + AAC + tpAAC @@ -1273,6 +1366,48 @@ Otherwise it can't keep up with recording and a lot of frame drops will happen.< 0 + + True + + + 16, 16 + + + 42, 13 + + + 0 + + + Quality: + + + lblVorbisQuality + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpVorbis + + + 1 + + + 4, 22 + + + 3, 3, 3, 3 + + + 304, 70 + + + 0 + + + Vorbis + tpVorbis @@ -1285,6 +1420,48 @@ Otherwise it can't keep up with recording and a lot of frame drops will happen.< 1 + + True + + + 16, 16 + + + 42, 13 + + + 0 + + + Quality: + + + lblMP3Quality + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpMP3 + + + 1 + + + 4, 22 + + + 3, 3, 3, 3 + + + 304, 70 + + + 2 + + + MP3 + tpMP3 @@ -1318,204 +1495,6 @@ Otherwise it can't keep up with recording and a lot of frame drops will happen.< 5 - - lblAACQuality - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAAC - - - 1 - - - 4, 22 - - - 3, 3, 3, 3 - - - 304, 70 - - - 3 - - - AAC - @Invariant - - tpAAC - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFFmpegAudioCodecs - - - 0 - - - True - - - 16, 16 - - - 40, 13 - - - 0 - - - Bitrate: - - - lblAACQuality - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAAC - - - 1 - - - lblVorbisQuality - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpVorbis - - - 1 - - - 4, 22 - - - 3, 3, 3, 3 - - - 304, 70 - - - 0 - - - Vorbis - @Invariant - - tpVorbis - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFFmpegAudioCodecs - - - 1 - - - True - - - 16, 16 - - - 42, 13 - - - 0 - - - Quality: - - - lblVorbisQuality - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpVorbis - - - 1 - - - lblMP3Quality - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMP3 - - - 1 - - - 4, 22 - - - 3, 3, 3, 3 - - - 304, 70 - - - 2 - - - MP3 - @Invariant - - tpMP3 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFFmpegAudioCodecs - - - 2 - - - True - - - 16, 16 - - - 42, 13 - - - 0 - - - Quality: - - - lblMP3Quality - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMP3 - - - 1 - 184, 25 @@ -1743,7 +1722,7 @@ Otherwise it can't keep up with recording and a lot of frame drops will happen.< ? - @Invariant + btnHelperDevicesHelp diff --git a/ShareX.UploadersLib/Forms/OAuthWebForm.Designer.cs b/ShareX.UploadersLib/Forms/OAuthWebForm.Designer.cs index 352c588d0..832532beb 100644 --- a/ShareX.UploadersLib/Forms/OAuthWebForm.Designer.cs +++ b/ShareX.UploadersLib/Forms/OAuthWebForm.Designer.cs @@ -29,8 +29,8 @@ protected override void Dispose(bool disposing) private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OAuthWebForm)); - this.wbMain = new System.Windows.Forms.WebBrowser(); this.tscMain = new System.Windows.Forms.ToolStripContainer(); + this.wbMain = new System.Windows.Forms.WebBrowser(); this.tsMain = new System.Windows.Forms.ToolStrip(); this.tslURL = new System.Windows.Forms.ToolStripLabel(); this.tstbURL = new System.Windows.Forms.ToolStripTextBox(); @@ -40,13 +40,6 @@ private void InitializeComponent() this.tsMain.SuspendLayout(); this.SuspendLayout(); // - // wbMain - // - resources.ApplyResources(this.wbMain, "wbMain"); - this.wbMain.Name = "wbMain"; - this.wbMain.ScriptErrorsSuppressed = true; - this.wbMain.Navigated += new System.Windows.Forms.WebBrowserNavigatedEventHandler(this.wbMain_Navigated); - // // tscMain // // @@ -61,6 +54,13 @@ private void InitializeComponent() // this.tscMain.TopToolStripPanel.Controls.Add(this.tsMain); // + // wbMain + // + resources.ApplyResources(this.wbMain, "wbMain"); + this.wbMain.Name = "wbMain"; + this.wbMain.ScriptErrorsSuppressed = true; + this.wbMain.Navigated += new System.Windows.Forms.WebBrowserNavigatedEventHandler(this.wbMain_Navigated); + // // tsMain // resources.ApplyResources(this.tsMain, "tsMain"); @@ -87,7 +87,6 @@ private void InitializeComponent() // resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.White; this.Controls.Add(this.tscMain); this.Name = "OAuthWebForm"; this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; diff --git a/ShareX.UploadersLib/Forms/OAuthWebForm.resx b/ShareX.UploadersLib/Forms/OAuthWebForm.resx index 2c9d7b439..4bdb76c6c 100644 --- a/ShareX.UploadersLib/Forms/OAuthWebForm.resx +++ b/ShareX.UploadersLib/Forms/OAuthWebForm.resx @@ -117,6 +117,18 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tscMain.BottomToolStripPanel + + + System.Windows.Forms.ToolStripPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tscMain + + + 4 + Fill @@ -147,18 +159,6 @@ 0 - - tscMain.BottomToolStripPanel - - - System.Windows.Forms.ToolStripPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tscMain - - - 4 - 1056, 545 @@ -221,7 +221,7 @@ URL: - @Invariant + 800, 23 diff --git a/ShareX.UploadersLib/Forms/UploadersConfigForm.Designer.cs b/ShareX.UploadersLib/Forms/UploadersConfigForm.Designer.cs index 4adcfd707..23d6bf590 100644 --- a/ShareX.UploadersLib/Forms/UploadersConfigForm.Designer.cs +++ b/ShareX.UploadersLib/Forms/UploadersConfigForm.Designer.cs @@ -369,6 +369,7 @@ private void InitializeComponent() this.txtSulAPIKey = new System.Windows.Forms.TextBox(); this.lblSulAPIKey = new System.Windows.Forms.Label(); this.tpStreamable = new System.Windows.Forms.TabPage(); + this.cbStreamableUseDirectURL = new System.Windows.Forms.CheckBox(); this.txtStreamablePassword = new System.Windows.Forms.TextBox(); this.txtStreamableUsername = new System.Windows.Forms.TextBox(); this.lblStreamableUsername = new System.Windows.Forms.Label(); @@ -529,7 +530,6 @@ private void InitializeComponent() this.lblWidthHint = new System.Windows.Forms.Label(); this.ttlvMain = new ShareX.HelpersLib.TabToListView(); this.actRapidShareAccountType = new ShareX.UploadersLib.AccountTypeControl(); - this.cbStreamableUseDirectURL = new System.Windows.Forms.CheckBox(); this.tpOtherUploaders.SuspendLayout(); this.tcOtherUploaders.SuspendLayout(); this.tpTwitter.SuspendLayout(); @@ -3087,6 +3087,13 @@ private void InitializeComponent() this.tpStreamable.Name = "tpStreamable"; this.tpStreamable.UseVisualStyleBackColor = true; // + // cbStreamableUseDirectURL + // + resources.ApplyResources(this.cbStreamableUseDirectURL, "cbStreamableUseDirectURL"); + this.cbStreamableUseDirectURL.Name = "cbStreamableUseDirectURL"; + this.cbStreamableUseDirectURL.UseVisualStyleBackColor = true; + this.cbStreamableUseDirectURL.CheckedChanged += new System.EventHandler(this.cbStreamableUseDirectURL_CheckedChanged); + // // txtStreamablePassword // resources.ApplyResources(this.txtStreamablePassword, "txtStreamablePassword"); @@ -4223,7 +4230,7 @@ private void InitializeComponent() // // lblWidthHint // - this.lblWidthHint.BackColor = System.Drawing.Color.Black; + this.lblWidthHint.BackColor = System.Drawing.SystemColors.Highlight; resources.ApplyResources(this.lblWidthHint, "lblWidthHint"); this.lblWidthHint.Name = "lblWidthHint"; // @@ -4241,18 +4248,10 @@ private void InitializeComponent() this.actRapidShareAccountType.Name = "actRapidShareAccountType"; this.actRapidShareAccountType.SelectedAccountType = ShareX.UploadersLib.AccountType.Anonymous; // - // cbStreamableUseDirectURL - // - resources.ApplyResources(this.cbStreamableUseDirectURL, "cbStreamableUseDirectURL"); - this.cbStreamableUseDirectURL.Name = "cbStreamableUseDirectURL"; - this.cbStreamableUseDirectURL.UseVisualStyleBackColor = true; - this.cbStreamableUseDirectURL.CheckedChanged += new System.EventHandler(this.cbStreamableUseDirectURL_CheckedChanged); - // // UploadersConfigForm // resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.White; this.Controls.Add(this.lblWidthHint); this.Controls.Add(this.tcUploaders); this.Controls.Add(this.ttlvMain); diff --git a/ShareX.UploadersLib/Forms/UploadersConfigForm.resx b/ShareX.UploadersLib/Forms/UploadersConfigForm.resx index 0fdcb5459..e1d874598 100644 --- a/ShareX.UploadersLib/Forms/UploadersConfigForm.resx +++ b/ShareX.UploadersLib/Forms/UploadersConfigForm.resx @@ -196,222 +196,6 @@ This means that they may be lost from Amazon S3 at some point. If text field is empty then bucket name will be used for URL. For example, if your bucket is called bucket.example.com then URL will be http://bucket.example.com/... - - Other uploaders - - - URL shorteners - - - FTP - - - Dropbox - - - OneDrive - - - Google Drive - - - Box - - - Amazon S3 - - - Mega - - - ownCloud - - - MediaFire - - - Pushbullet - - - SendSpace - - - Ge.tt - - - Hostr - - - Minus - - - Atlassian Jira - - - Lambda - - - Pomf - - - Up1 - - - Seafile - - - s-ul - - - Polr - - - CoinURL - - - adf.ly - - - YOURLS - - - Google - - - bit.ly - - - Add - - - Update - - - Remove - - - Clear uploaders - - - All... - - - Uploaders - - - Value - - - Name - - - Remove - - - Add - - - Update - - - Headers - - - Value - - - Name - - - Remove - - - Add - - - Update - - - Arguments - - - XPath: - - - Examples: - -/Files/File[1]/URL -/store/book[1]/title - - - ? - - - Add syntax to URL field - - - XML - - - JsonPath: - - - Examples: - -Files[0].URL -store.book[0].title - - - ? - - - Add syntax to URL field - - - JSON - - - Remove - - - Add - - - Update - - - Add syntax to URL field - - - ? - - - Regex - - - Custom uploaders - - - Add - - - Remove - - - Name: - - - Skip tweet message box - - - Default tweet message: - - - Update - - - Twitter - cbAmazonS3CustomCNAME @@ -424,231 +208,6 @@ store.book[0].title 5 - - tcOtherUploaders - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOtherUploaders - - - 0 - - - 4, 22 - - - 3, 3, 3, 3 - - - 986, 525 - - - 6 - - - tpOtherUploaders - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcUploaders - - - 4 - - - tpTwitter - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcOtherUploaders - - - 0 - - - tpCustomUploaders - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcOtherUploaders - - - 1 - - - Fill - - - 3, 3 - - - 980, 519 - - - 0 - - - tcOtherUploaders - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOtherUploaders - - - 0 - - - btnTwitterNameUpdate - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTwitter - - - 0 - - - lbTwitterAccounts - - - System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTwitter - - - 1 - - - lblTwitterDefaultMessage - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTwitter - - - 2 - - - txtTwitterDefaultMessage - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTwitter - - - 3 - - - cbTwitterSkipMessageBox - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTwitter - - - 4 - - - oauthTwitter - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpTwitter - - - 5 - - - txtTwitterDescription - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTwitter - - - 6 - - - lblTwitterDescription - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTwitter - - - 7 - - - btnTwitterRemove - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTwitter - - - 8 - - - btnTwitterAdd - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTwitter - - - 9 - - - 4, 22 - - - 972, 493 - - - 0 - - - tpTwitter - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcOtherUploaders - - - 0 - NoControl @@ -661,6 +220,9 @@ store.book[0].title 10 + + Update + btnTwitterNameUpdate @@ -709,6 +271,9 @@ store.book[0].title 8 + + Default tweet message: + lblTwitterDefaultMessage @@ -763,6 +328,9 @@ store.book[0].title 6 + + Skip tweet message box + cbTwitterSkipMessageBox @@ -838,6 +406,9 @@ store.book[0].title 3 + + Name: + lblTwitterDescription @@ -862,6 +433,9 @@ store.book[0].title 2 + + Remove + btnTwitterRemove @@ -886,6 +460,9 @@ store.book[0].title 1 + + Add + btnTwitterAdd @@ -898,613 +475,28 @@ store.book[0].title 9 - - tcCustomUploaderResponseParse - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 0 - - - tcCustomUploaderArguments - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 1 - - - btnCustomUploaderExamples - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 2 - - - btnCustomUploaderHelp - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 3 - - - btnCustomUploaderClear - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 4 - - - lblCustomUploaderImageUploader - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 5 - - - btnCustomUploaderFileUploaderTest - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 6 - - - lblCustomUploaderFileUploader - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 7 - - - btnCustomUploaderImageUploaderTest - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 8 - - - lblCustomUploaderTestResult - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 9 - - - txtCustomUploaderDeletionURL - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 10 - - - cbCustomUploaderFileUploader - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 11 - - - lblCustomUploaderDeletionURL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 12 - - - btnCustomUploaderShowLastResponse - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 13 - - - lblCustomUploaderResponseType - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 14 - - - cbCustomUploaderURLShortener - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 15 - - - gbCustomUploaders - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 16 - - - lblCustomUploaderTextUploader - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 17 - - - lblCustomUploaderRequestURL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 18 - - - btnCustomUploaderURLShortenerTest - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 19 - - - cbCustomUploaderTextUploader - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 20 - - - txtCustomUploaderThumbnailURL - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 21 - - - lblCustomUploaderURLShortener - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 22 - - - cbCustomUploaderResponseType - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 23 - - - btnCustomUploaderTextUploaderTest - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 24 - - - txtCustomUploaderURL - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 25 - - - cbCustomUploaderImageUploader - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 26 - - - txtCustomUploaderRequestURL - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 27 - - - txtCustomUploaderLog - - - System.Windows.Forms.RichTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 28 - - - lblCustomUploaderThumbnailURL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 29 - - - lblCustomUploaderFileForm - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 30 - - - lblCustomUploaderRequestType - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 31 - - - cbCustomUploaderRequestType - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 32 - - - txtCustomUploaderFileForm - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 33 - - - lblCustomUploaderURL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 34 - - + 4, 22 - - 3, 3, 3, 3 - - + 972, 493 - - 5 + + 0 - - tpCustomUploaders + + Twitter - + + tpTwitter + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcOtherUploaders - - 1 - - - tpCustomUploaderRegexParse - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcCustomUploaderResponseParse - - - 0 - - - tpCustomUploaderJsonParse - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcCustomUploaderResponseParse - - - 1 - - - tpCustomUploaderXmlParse - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcCustomUploaderResponseParse - - - 2 - - - 536, 88 - - - 256, 184 - - - 36 - - - tcCustomUploaderResponseParse - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 0 - - - btnCustomUploaderRegexHelp - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderRegexParse - - - 0 - - - btnCustomUploaderRegexAddSyntax - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderRegexParse - - - 1 - - - txtCustomUploaderRegexp - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderRegexParse - - - 2 - - - btnCustomUploaderRegexpUpdate - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderRegexParse - - - 3 - - - btnCustomUploaderRegexpAdd - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderRegexParse - - - 4 - - - btnCustomUploaderRegexpRemove - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderRegexParse - - - 5 - - - lvCustomUploaderRegexps - - - ShareX.HelpersLib.MyListView, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpCustomUploaderRegexParse - - - 6 - - - 4, 22 - - - 3, 3, 3, 3 - - - 248, 158 - - - 0 - - - tpCustomUploaderRegexParse - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcCustomUploaderResponseParse - - + 0 @@ -1519,6 +511,9 @@ store.book[0].title 6 + + ? + btnCustomUploaderRegexHelp @@ -1546,6 +541,9 @@ store.book[0].title 5 + + Add syntax to URL field + btnCustomUploaderRegexAddSyntax @@ -1591,6 +589,9 @@ store.book[0].title 3 + + Update + btnCustomUploaderRegexpUpdate @@ -1615,6 +616,9 @@ store.book[0].title 1 + + Add + btnCustomUploaderRegexpAdd @@ -1639,6 +643,9 @@ store.book[0].title 2 + + Remove + btnCustomUploaderRegexpRemove @@ -1651,6 +658,9 @@ store.book[0].title 5 + + 227 + 8, 64 @@ -1672,92 +682,32 @@ store.book[0].title 6 - - 227 - - - 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 + + 0 - - tpCustomUploaderJsonParse + + Regex - + + tpCustomUploaderRegexParse + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcCustomUploaderResponseParse - - 1 + + 0 False @@ -1774,6 +724,9 @@ store.book[0].title 4 + + Add syntax to URL field + btnCustomUploaderJsonAddSyntax @@ -1798,6 +751,9 @@ store.book[0].title 3 + + ? + btnCustomUploadJsonPathHelp @@ -1825,6 +781,12 @@ store.book[0].title 2 + + Examples: + +Files[0].URL +store.book[0].title + lblCustomUploaderJsonPathExample @@ -1852,6 +814,9 @@ store.book[0].title 1 + + JsonPath: + lblCustomUploaderJsonPath @@ -1885,89 +850,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 - - tpCustomUploaderXmlParse + + JSON - + + tpCustomUploaderJsonParse + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcCustomUploaderResponseParse - - 2 + + 1 False @@ -1984,6 +892,9 @@ store.book[0].title 9 + + Add syntax to URL field + btnCustomUploaderXmlSyntaxAdd @@ -2008,6 +919,9 @@ store.book[0].title 8 + + ? + btnCustomUploaderXPathHelp @@ -2035,6 +949,12 @@ store.book[0].title 7 + + Examples: + +/Files/File[1]/URL +/store/book[1]/title + lblCustomUploaderXPathExample @@ -2062,6 +982,9 @@ store.book[0].title 6 + + XPath: + lblCustomUploaderXPath @@ -2095,145 +1018,52 @@ 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 - - - 272, 160 - - - 256, 240 - - - 34 - - - tcCustomUploaderArguments - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 1 - - - btnCustomUploaderArgUpdate - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderArguments - - - 0 - - - txtCustomUploaderArgName - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderArguments - - - 1 - - - txtCustomUploaderArgValue - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderArguments - - - 2 - - - btnCustomUploaderArgAdd - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderArguments - - - 3 - - - btnCustomUploaderArgRemove - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderArguments - - - 4 - - - lvCustomUploaderArguments - - - ShareX.HelpersLib.MyListView, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpCustomUploaderArguments - - - 5 - - + 4, 22 - + 3, 3, 3, 3 - - 248, 214 + + 248, 158 - - 0 + + 2 - - tpCustomUploaderArguments + + XML - + + tpCustomUploaderXmlParse + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tcCustomUploaderArguments + + tcCustomUploaderResponseParse - + + 2 + + + 536, 88 + + + 256, 184 + + + 36 + + + tcCustomUploaderResponseParse + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpCustomUploaders + + 0 @@ -2248,6 +1078,9 @@ store.book[0].title 4 + + Update + btnCustomUploaderArgUpdate @@ -2314,6 +1147,9 @@ store.book[0].title 2 + + Add + btnCustomUploaderArgAdd @@ -2338,6 +1174,9 @@ store.book[0].title 3 + + Remove + btnCustomUploaderArgRemove @@ -2350,6 +1189,18 @@ store.book[0].title 4 + + Name + + + 114 + + + Value + + + 114 + 8, 64 @@ -2371,107 +1222,32 @@ store.book[0].title 5 - - 114 - - - 114 - - - btnCustomUploaderHeaderUpdate - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderHeaders - - - 0 - - - txtCustomUploaderHeaderName - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderHeaders - - - 1 - - - txtCustomUploaderHeaderValue - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderHeaders - - - 2 - - - btnCustomUploaderHeaderAdd - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderHeaders - - - 3 - - - btnCustomUploaderHeaderRemove - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaderHeaders - - - 4 - - - lvCustomUploaderHeaders - - - ShareX.HelpersLib.MyListView, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpCustomUploaderHeaders - - - 5 - - + 4, 22 - + 3, 3, 3, 3 - + 248, 214 - - 1 + + 0 - - tpCustomUploaderHeaders + + Arguments - + + tpCustomUploaderArguments + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcCustomUploaderArguments - - 1 + + 0 NoControl @@ -2485,6 +1261,9 @@ store.book[0].title 10 + + Update + btnCustomUploaderHeaderUpdate @@ -2551,6 +1330,9 @@ store.book[0].title 8 + + Add + btnCustomUploaderHeaderAdd @@ -2575,6 +1357,9 @@ store.book[0].title 9 + + Remove + btnCustomUploaderHeaderRemove @@ -2587,6 +1372,18 @@ store.book[0].title 4 + + Name + + + 114 + + + Value + + + 114 + 8, 64 @@ -2608,11 +1405,53 @@ store.book[0].title 5 - - 114 + + 4, 22 - - 114 + + 3, 3, 3, 3 + + + 248, 214 + + + 1 + + + Headers + + + tpCustomUploaderHeaders + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcCustomUploaderArguments + + + 1 + + + 272, 160 + + + 256, 240 + + + 34 + + + tcCustomUploaderArguments + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpCustomUploaders + + + 1 NoControl @@ -2992,123 +1831,6 @@ store.book[0].title 15 - - btnCustomUploadersExportAll - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbCustomUploaders - - - 0 - - - btnCustomUploaderClearUploaders - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbCustomUploaders - - - 1 - - - eiCustomUploaders - - - ShareX.HelpersLib.ExportImportControl, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - gbCustomUploaders - - - 2 - - - lbCustomUploaderList - - - System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbCustomUploaders - - - 3 - - - btnCustomUploaderRemove - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbCustomUploaders - - - 4 - - - btnCustomUploaderUpdate - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbCustomUploaders - - - 5 - - - txtCustomUploaderName - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbCustomUploaders - - - 6 - - - btnCustomUploaderAdd - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbCustomUploaders - - - 7 - - - 8, 40 - - - 248, 312 - - - 0 - - - gbCustomUploaders - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCustomUploaders - - - 16 - NoControl @@ -3121,6 +1843,9 @@ store.book[0].title 6 + + All... + False @@ -3148,6 +1873,9 @@ store.book[0].title 6 + + Clear uploaders + btnCustomUploaderClearUploaders @@ -3217,6 +1945,9 @@ store.book[0].title 2 + + Remove + btnCustomUploaderRemove @@ -3241,6 +1972,9 @@ store.book[0].title 3 + + Update + btnCustomUploaderUpdate @@ -3286,6 +2020,9 @@ store.book[0].title 1 + + Add + btnCustomUploaderAdd @@ -3298,6 +2035,30 @@ store.book[0].title 7 + + 8, 40 + + + 248, 312 + + + 0 + + + Uploaders + + + gbCustomUploaders + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpCustomUploaders + + + 16 + True @@ -3754,198 +2515,84 @@ store.book[0].title 34 - - tcURLShorteners - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpURLShorteners - - - 0 - - + 4, 22 - + 3, 3, 3, 3 - - 986, 525 - - - 3 - - - tpURLShorteners - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcUploaders - - - 3 - - - tpBitly - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcURLShorteners - - - 0 - - - tpGoogleURLShortener - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcURLShorteners - - - 1 - - - tpYourls - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcURLShorteners - - - 2 - - - tpAdFly - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcURLShorteners - - - 3 - - - tpCoinURL - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcURLShorteners - - - 4 - - - tpPolr - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcURLShorteners - - - 5 - - - Fill - - - 3, 3 - - - 980, 519 - - - 0 - - - tcURLShorteners - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpURLShorteners - - - 0 - - - txtBitlyDomain - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpBitly - - - 0 - - - lblBitlyDomain - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpBitly - - - 1 - - - oauth2Bitly - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpBitly - - - 2 - - - 4, 22 - - - 3, 3, 3, 3 - - + 972, 493 - - 1 + + 5 - - tpBitly + + Custom uploaders - + + tpCustomUploaders + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tcURLShorteners + + tcOtherUploaders - + + 1 + + + Fill + + + 3, 3 + + + 980, 519 + + 0 + + tcOtherUploaders + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpOtherUploaders + + + 0 + + + 4, 22 + + + 3, 3, 3, 3 + + + 986, 525 + + + 6 + + + Other uploaders + + + tpOtherUploaders + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcUploaders + + + 4 + 16, 248 @@ -4018,53 +2665,32 @@ store.book[0].title 2 - - oauth2GoogleURLShortener - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpGoogleURLShortener - - - 0 - - - atcGoogleURLShortenerAccountType - - - ShareX.UploadersLib.AccountTypeControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpGoogleURLShortener - - - 1 - - + 4, 22 - + 3, 3, 3, 3 - + 972, 493 - - 0 + + 1 - - tpGoogleURLShortener + + bit.ly - + + tpBitly + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcURLShorteners - - 1 + + 0 16, 64 @@ -4108,137 +2734,32 @@ store.book[0].title 1 - - txtYourlsPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpYourls - - - 0 - - - txtYourlsUsername - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpYourls - - - 1 - - - txtYourlsSignature - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpYourls - - - 2 - - - lblYourlsNote - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpYourls - - - 3 - - - lblYourlsPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpYourls - - - 4 - - - lblYourlsUsername - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpYourls - - - 5 - - - lblYourlsSignature - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpYourls - - - 6 - - - txtYourlsAPIURL - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpYourls - - - 7 - - - lblYourlsAPIURL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpYourls - - - 8 - - + 4, 22 - + 3, 3, 3, 3 - + 972, 493 - - 2 + + 0 - - tpYourls + + Google - + + tpGoogleURLShortener + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcURLShorteners - - 2 + + 1 16, 200 @@ -4474,89 +2995,32 @@ store.book[0].title 8 - - llAdflyLink - - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAdFly - - - 0 - - - txtAdflyAPIUID - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAdFly - - - 1 - - - lblAdflyAPIUID - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAdFly - - - 2 - - - txtAdflyAPIKEY - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAdFly - - - 3 - - - lblAdflyAPIKEY - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAdFly - - - 4 - - + 4, 22 - + 3, 3, 3, 3 - + 972, 493 - - 3 + + 2 - - tpAdFly + + YOURLS - + + tpYourls + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcURLShorteners - - 3 + + 2 True @@ -4690,50 +3154,32 @@ store.book[0].title 4 - - txtCoinURLUUID - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCoinURL - - - 0 - - - lblCoinURLUUID - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCoinURL - - - 1 - - + 4, 22 - + + 3, 3, 3, 3 + + 972, 493 - - 5 + + 3 - - tpCoinURL + + adf.ly - + + tpAdFly + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcURLShorteners - - 4 + + 3 16, 32 @@ -4786,74 +3232,29 @@ store.book[0].title 1 - - txtPolrAPIKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPolr - - - 0 - - - lblPolrAPIKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPolr - - - 1 - - - txtPolrAPIHostname - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPolr - - - 2 - - - lblPolrAPIHostname - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPolr - - - 3 - - + 4, 22 - + 972, 493 - - 6 + + 5 - - tpPolr + + CoinURL - + + tpCoinURL + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcURLShorteners - - 5 + + 4 16, 72 @@ -4957,3450 +3358,80 @@ store.book[0].title 3 - - eiFTP - - - ShareX.HelpersLib.ExportImportControl, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpFTP - - - 0 - - - btnFtpClient - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFTP - - - 1 - - - lblFtpFiles - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFTP - - - 2 - - - lblFtpText - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFTP - - - 3 - - - lblFtpImages - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFTP - - - 4 - - - cboFtpImages - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFTP - - - 5 - - - cboFtpFiles - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFTP - - - 6 - - - cboFtpText - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFTP - - - 7 - - - ucFTPAccounts - - - ShareX.UploadersLib.AccountsControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpFTP - - - 8 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 4 - - - tpFTP - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 0 - - - oauth2Dropbox - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpDropbox - - - 0 - - - cbDropboxURLType - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpDropbox - - - 1 - - - cbDropboxAutoCreateShareableLink - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpDropbox - - - 2 - - - btnDropboxShowFiles - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpDropbox - - - 3 - - - pbDropboxLogo - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpDropbox - - - 4 - - - lblDropboxStatus - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpDropbox - - - 5 - - - lblDropboxPathTip - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpDropbox - - - 6 - - - lblDropboxPath - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpDropbox - - - 7 - - - txtDropboxPath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpDropbox - - - 8 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 0 - - - tpDropbox - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 1 - - - 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=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpOneDrive - - - 3 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 17 - - - tpOneDrive - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 2 - - - cbGoogleDriveUseFolder - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGoogleDrive - - - 0 - - - txtGoogleDriveFolderID - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGoogleDrive - - - 1 - - - lblGoogleDriveFolderID - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGoogleDrive - - - 2 - - - lvGoogleDriveFoldersList - - - ShareX.HelpersLib.MyListView, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpGoogleDrive - - - 3 - - - btnGoogleDriveRefreshFolders - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGoogleDrive - - - 4 - - - cbGoogleDriveIsPublic - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGoogleDrive - - - 5 - - - oauth2GoogleDrive - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpGoogleDrive - - - 6 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 1 - - - tpGoogleDrive - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 3 - - - 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=1.0.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=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpBox - - - 5 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 2 - - - tpBox - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 4 - - - txtAmazonS3CustomDomain - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 0 - - - lblAmazonS3PathPreviewLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 1 - - - lblAmazonS3PathPreview - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 2 - - - btnAmazonS3BucketNameOpen - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 3 - - - btnAmazonS3AccessKeyOpen - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 4 - - - cbAmazonS3Endpoint - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 6 - - - lblAmazonS3BucketName - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 7 - - - txtAmazonS3BucketName - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 8 - - - lblAmazonS3Endpoint - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 9 - - - txtAmazonS3ObjectPrefix - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 10 - - - lblAmazonS3ObjectPrefix - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 11 - - - txtAmazonS3SecretKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 13 - - - lblAmazonS3SecretKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 14 - - - lblAmazonS3AccessKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 15 - - - txtAmazonS3AccessKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAmazonS3 - - - 16 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 13 - - - tpAmazonS3 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 5 - - - btnMegaRefreshFolders - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMega - - - 0 - - - lblMegaStatus - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMega - - - 1 - - - btnMegaRegister - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMega - - - 2 - - - lblMegaFolder - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMega - - - 3 - - - lblMegaStatusTitle - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMega - - - 4 - - - cbMegaFolder - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMega - - - 5 - - - lblMegaEmail - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMega - - - 6 - - - btnMegaLogin - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMega - - - 7 - - - txtMegaEmail - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMega - - - 8 - - - txtMegaPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMega - - - 9 - - - lblMegaPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMega - - - 10 - - - 4, 40 - - - 972, 475 - - - 12 - - - tpMega - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 6 - - - cbOwnCloud81Compatibility - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 0 - - - cbOwnCloudDirectLink - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 1 - - - cbOwnCloudCreateShare - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 2 - - - txtOwnCloudPath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 3 - - - txtOwnCloudPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 4 - - - txtOwnCloudUsername - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 5 - - - txtOwnCloudHost - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 6 - - - lblOwnCloudPath - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 7 - - - lblOwnCloudPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 8 - - - lblOwnCloudUsername - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 9 - - - lblOwnCloudHost - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOwnCloud - - - 10 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 15 - - - tpOwnCloud - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 7 - - - cbMediaFireUseLongLink - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMediaFire - - - 0 - - - txtMediaFirePath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMediaFire - - - 1 - - - lblMediaFirePath - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMediaFire - - - 2 - - - txtMediaFirePassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMediaFire - - - 3 - - - txtMediaFireEmail - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMediaFire - - - 4 - - - lblMediaFirePassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMediaFire - - - 5 - - - lblMediaFireEmail - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMediaFire - - - 6 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 16 - - - tpMediaFire - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 8 - - - lblPushbulletDevices - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPushbullet - - - 0 - - - cboPushbulletDevices - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPushbullet - - - 1 - - - btnPushbulletGetDeviceList - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPushbullet - - - 2 - - - lblPushbulletUserKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPushbullet - - - 3 - - - txtPushbulletUserKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPushbullet - - - 4 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 14 - - - tpPushbullet - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 9 - - - btnSendSpaceRegister - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSendSpace - - - 0 - - - lblSendSpacePassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSendSpace - - - 1 - - - lblSendSpaceUsername - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSendSpace - - - 2 - - - txtSendSpacePassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSendSpace - - - 3 - - - txtSendSpaceUserName - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSendSpace - - - 4 - - - atcSendSpaceAccountType - - - ShareX.UploadersLib.AccountTypeControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpSendSpace - - - 5 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 6 - - - tpSendSpace - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 10 - - - lblGe_ttStatus - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGe_tt - - - 0 - - - lblGe_ttPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGe_tt - - - 1 - - - lblGe_ttEmail - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGe_tt - - - 2 - - - btnGe_ttLogin - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGe_tt - - - 3 - - - txtGe_ttPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGe_tt - - - 4 - - - txtGe_ttEmail - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGe_tt - - - 5 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 7 - - - tpGe_tt - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 11 - - - cbLocalhostrDirectURL - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpHostr - - - 0 - - - lblLocalhostrPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpHostr - - - 1 - - - lblLocalhostrEmail - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpHostr - - - 2 - - - txtLocalhostrPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpHostr - - - 3 - - - txtLocalhostrEmail - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpHostr - - - 4 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 8 - - - tpHostr - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 12 - - - lblMinusURLType - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMinus - - - 0 - - - cbMinusURLType - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMinus - - - 1 - - - gbMinusUserPass - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMinus - - - 2 - - - gbMinusUpload - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMinus - - - 3 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 3 - - - tpMinus - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 13 - - - txtJiraIssuePrefix - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpJira - - - 0 - - - lblJiraIssuePrefix - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpJira - - - 1 - - - gpJiraServer - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpJira - - - 2 - - - oAuthJira - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpJira - - - 3 - - - 4, 40 - - - 972, 475 - - - 11 - - - tpJira - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 14 - - - lblLambdaInfo - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpLambda - - - 0 - - - lblLambdaApiKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpLambda - - - 1 - - - txtLambdaApiKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpLambda - - - 2 - - - lblLambdaUploadURL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpLambda - - - 3 - - - cbLambdaUploadURL - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpLambda - - - 4 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 20 - - - tpLambda - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 15 - - - btnPomfTest - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPomf - - - 0 - - - txtPomfResultURL - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPomf - - - 1 - - - txtPomfUploadURL - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPomf - - - 2 - - - lblPomfResultURL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPomf - - - 3 - - - lblPomfUploadURL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPomf - - - 4 - - - lblPomfUploaders - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPomf - - - 5 - - - cbPomfUploaders - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPomf - - - 6 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 22 - - - tpPomf - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 16 - - - txtUp1Key - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUp1 - - - 0 - - - txtUp1Host - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUp1 - - - 1 - - - lblUp1Key - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUp1 - - - 2 - - - lblUp1Host - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUp1 - - - 3 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 21 - - - tpUp1 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 17 - - - cbSeafileAPIURL - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 0 - - - grpSeafileShareSettings - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 1 - - - btnSeafileLibraryPasswordValidate - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 2 - - - txtSeafileLibraryPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 3 - - - lblSeafileLibraryPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 4 - - - lvSeafileLibraries - - - ShareX.HelpersLib.MyListView, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpSeafile - - - 5 - - - btnSeafilePathValidate - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 6 - - - txtSeafileDirectoryPath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 7 - - - lblSeafileWritePermNotif - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 8 - - - lblSeafilePath - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 9 - - - txtSeafileUploadLocationRefresh - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 10 - - - lblSeafileSelectLibrary - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 11 - - - grpSeafileAccInfo - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 12 - - - btnSeafileCheckAuthToken - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 13 - - - btnSeafileCheckAPIURL - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 14 - - - grpSeafileObtainAuthToken - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 15 - - - cbSeafileIgnoreInvalidCert - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 16 - - - cbSeafileCreateShareableURL - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 17 - - - txtSeafileAuthToken - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 18 - - - lblSeafileAuthToken - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 19 - - - lblSeafileAPIURL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 20 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 23 - - - tpSeafile - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 18 - - - txtSulAPIKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSul - - - 0 - - - lblSulAPIKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSul - - - 1 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 25 - - - tpSul - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 19 - - - True - - - 16, 136 - - - 93, 17 - - - 20 - - - Use direct link - - - ShareX - Destination settings - - - Direct URL - - - API key: - - - To get API key visit https://someimage.com/api - - - SomeImage - - - User key: - - - You can get user key from account details page. - - - API key: - - - Upload URL: - - - Direct URL - - - Uploaders: - - - Example: http://example.com/api/1/upload - - - Test all - - - Chevereto - - - Refresh album list - - - Description - - - Name - - - ID - - - Album ID for upload (Empty = No album upload): - - - Google Photos (Picasa) - - - Login required. - - - Step 2: Complete authorization - - - Verification code (Get verification code from authorize page): - - - Step 1: Open authorize page... - - - Default album name - - - User account - - - Create album - - - Parent album path - - - New album name (must be between 2 and 50 characters. Valid characters are letters, numbers, underscore ( _ ), hyphen (-), and space) - - - Remove album - - - Add album - - - Upload images to - - - Photobucket - - - Step 1: Open authorize page... - - - Step 2: Complete authorization - - - Refresh authorization - - - Your photostream... - - - Flickr - - - Open my images page... - - - Email: - - - Password: - - - Login - - - TinyPic - - - Password: - - - Username: - - - Open my images page... - - - Is public upload? - - - Open public profile page... - - - Login - - - ImageShack - - - Thumbnail type: - - - Refresh album list - - - Description - - - Title - - - ID - - - Use direct link - - - Upload images to selected album - - - Use GIFV link instead of GIF - - - Imgur - - - Image uploaders - - - Email: - - - API key: - - - Custom domain: - - - Syntax highlighting: - - - User key: - - - Is public upload? - - - Create public Gist - - - Use raw URL - - - User API key: - - - Paste.ee - - - Login - - - Status: - - - Username: - - - Password: - - - Paste title: - - - Privacy: - - - Expiration: - - - Paste syntax: - - - Register... - - - Use raw URL - - - Pastebin - - - Text uploaders - - - Port: - - - Default message: - - - Default subject: - - - Email: - - - Remember last recipient address - - - Password: - - - SMTP server: - - - Confirm before sending - - - Image: - - - Text: - - - File: - - - API key: - - - API URL: - - - Auth token: - - - Create shareable URL - - - Ignore invalid SSL certificate - - - Password: - - - Email: - - - Get - - - Obtain auth token - - - Validate - - - Validate - - - Usage: - - - Email: - - - Refresh - - - Account information - - - Select library: - - - Refresh - - - Path: - - - Libraries without write permissions are hidden. -Using an encrypted library disables sharing. - - - Validate - - - Encrypted - - - Size - - - Name - - - Library password: - - - Validate - - - Days to expiration: - - - Share password: - - - Seafile share settings - - - https://cloud.mein-seafile.de/api2/ - - - https://seacloud.cc/api2/ - - - Host: - - - API key: - - - Uploaders: - - - Upload URL: - - - Result URL: - - - Test all - - - Link URL: - - - API key: - - - To get an API key, log in to Lambda at https://lambda.sx/ then click on your username, then click manage account. - - - Jira host: - - - http:// - - - Template - - - Jira server - - - Jira issue prefix: - - - PROJECT- - - - Remove folder - - - Add folder - - - Public - - - Reload folder list - - - Upload images to - - - Authorize - - - Username: - - - Password: - - - Refresh authorization - - - Login status: - - - Authentication - - - URL type: - - - Email: - - - Password: - - - Use direct URL if exist - - - Login - - - Email: - - - Password: - - - Login required. - - - Username: - - - Password: - - - Register... - - - User API key: - - - Get device list - - - Device: - - - Email: - - - Password: - - - Upload path: - - - Use long link which includes file name - - - Host: - - - Username: - - - Password: - - - Path: - - - Create shareable URL - - - Direct link (Adds "&download" to URL) - - - ownCloud 8.1+ compatibility - - - Password: - - - Login - - - Email: - - - Status: - - - Folder: - - - Register... - - - Configured / Not configured - - - Refresh - - - Access key: - - - Secret key: - - - Upload path: - - - Endpoint: - - - Bucket name: - - - ... - - - ... - - - Preview - - - URL preview: - - - Refresh folders list - - - Selected folder: - - - Folder name - - - Create shareable link - - - Note: You can double click folder name to go inside that folder. - - - Is public upload? - - - Refresh folders list - - - Description - - - Title - - - Folder ID: - - - Upload files to selected folder - - - Create shareable link - - - Selected folder: - - - Upload path: - - - If you are using the "Public" folder, a shareable url is already generated. You don't need to check "Create shareable URL". - - - Status - - - Select... - - - Create shareable URL: - - - Image: - - - Text: - - - File: - - - Client... - - - File uploaders - - - Email - - - Shared folder - - - Streamable - - - Anonymous - - - Password: - - - Username: - - - cbStreamableUseDirectURL - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpStreamable - - - 0 - - - 16, 104 - - - 6, 6, 6, 6 - - - 372, 20 - - - 17 - - - txtStreamablePassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpStreamable - - - 1 - - - 16, 56 - - - 6, 6, 6, 6 - - - 372, 20 - - - 16 - - - txtStreamableUsername - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpStreamable - - - 2 - - - True - - - NoControl - - - 13, 40 - - - 6, 0, 6, 0 - - - 58, 13 - - - 18 - - - lblStreamableUsername - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpStreamable - - - 3 - - - True - - - NoControl - - - 13, 88 - - - 6, 0, 6, 0 - - - 56, 13 - - - 19 - - - lblStreamablePassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpStreamable - - - 4 - - - True - - - NoControl - - - 16, 16 - - - 6, 6, 6, 6 - - - 81, 17 - - - 15 - - - cbStreamableAnonymous - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpStreamable - - - 5 - - - 4, 40 - - - 972, 475 - - - 24 - - - tpStreamable - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 20 - - - lblSharedFolderFiles - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSharedFolder - - - 0 - - - lblSharedFolderText - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSharedFolder - - - 1 - - - cboSharedFolderFiles - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSharedFolder - - - 2 - - - lblSharedFolderImages - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSharedFolder - - - 3 - - - cboSharedFolderText - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSharedFolder - - - 4 - - - cboSharedFolderImages - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSharedFolder - - - 5 - - - ucLocalhostAccounts - - - ShareX.UploadersLib.AccountsControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpSharedFolder - - - 6 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 9 - - - tpSharedFolder - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 21 - - - cbEmailConfirm - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 0 - - - lblEmailSmtpServer - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 1 - - - lblEmailPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 2 - - - cbEmailRememberLastTo - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 3 - - - txtEmailFrom - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 4 - - - txtEmailPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 5 - - - txtEmailDefaultBody - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 6 - - - lblEmailFrom - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 7 - - - txtEmailSmtpServer - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 8 - - - lblEmailDefaultSubject - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 9 - - - lblEmailDefaultBody - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 10 - - - nudEmailSmtpPort - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 11 - - - lblEmailSmtpPort - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 12 - - - txtEmailDefaultSubject - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEmail - - - 13 - - - 4, 40 - - - 3, 3, 3, 3 - - - 972, 475 - - - 10 - - - tpEmail - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcFileUploaders - - - 22 - - - Fill - - - 3, 3 - - - 980, 519 - - - 0 - - - tcFileUploaders - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFileUploaders - - - 0 - - + 4, 22 - - 3, 3, 3, 3 + + 972, 493 - - 986, 525 + + 6 - - 2 + + Polr - - tpFileUploaders + + tpPolr - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + tcURLShorteners + + + 5 + + + Fill + + + 3, 3 + + + 980, 519 + + + 0 + + + tcURLShorteners + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpURLShorteners + + + 0 + + + 4, 22 + + + 3, 3, 3, 3 + + + 986, 525 + + + 3 + + + URL shorteners + + + tpURLShorteners + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tcUploaders - - 2 + + 3 608, 48 @@ -8435,6 +3466,9 @@ Using an encrypted library disables sharing. 7 + + Client... + btnFtpClient @@ -8462,6 +3496,9 @@ Using an encrypted library disables sharing. 4 + + File: + lblFtpFiles @@ -8489,6 +3526,9 @@ Using an encrypted library disables sharing. 2 + + Text: + lblFtpText @@ -8516,6 +3556,9 @@ Using an encrypted library disables sharing. 0 + + Image: + lblFtpImages @@ -8618,6 +3661,33 @@ Using an encrypted library disables sharing. 8 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 4 + + + FTP + + + tpFTP + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 0 + 16, 88 @@ -8675,6 +3745,9 @@ Using an encrypted library disables sharing. 6 + + Create shareable URL: + cbDropboxAutoCreateShareableLink @@ -8702,6 +3775,9 @@ Using an encrypted library disables sharing. 4 + + Select... + btnDropboxShowFiles @@ -8872,6 +3948,9 @@ Using an encrypted library disables sharing. 8 + + Status + lblDropboxStatus @@ -8899,6 +3978,9 @@ Using an encrypted library disables sharing. 5 + + If you are using the "Public" folder, a shareable url is already generated. You don't need to check "Create shareable URL". + lblDropboxPathTip @@ -8926,6 +4008,9 @@ Using an encrypted library disables sharing. 2 + + Upload path: + lblDropboxPath @@ -8959,6 +4044,33 @@ Using an encrypted library disables sharing. 8 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 0 + + + Dropbox + + + tpDropbox + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 1 + False @@ -8998,6 +4110,9 @@ Using an encrypted library disables sharing. 7 + + Selected folder: + lblOneDriveFolderID @@ -9025,6 +4140,9 @@ Using an encrypted library disables sharing. 3 + + Create shareable link + cbOneDriveCreateShareableLink @@ -9058,6 +4176,33 @@ Using an encrypted library disables sharing. 3 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 17 + + + OneDrive + + + tpOneDrive + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 2 + True @@ -9073,6 +4218,9 @@ Using an encrypted library disables sharing. 12 + + Upload files to selected folder + cbGoogleDriveUseFolder @@ -9121,6 +4269,9 @@ Using an encrypted library disables sharing. 8 + + Folder ID: + lblGoogleDriveFolderID @@ -9133,6 +4284,18 @@ Using an encrypted library disables sharing. 2 + + Title + + + 200 + + + Description + + + 228 + 352, 112 @@ -9154,12 +4317,6 @@ Using an encrypted library disables sharing. 3 - - 200 - - - 228 - False @@ -9175,6 +4332,9 @@ Using an encrypted library disables sharing. 10 + + Refresh folders list + btnGoogleDriveRefreshFolders @@ -9202,6 +4362,9 @@ Using an encrypted library disables sharing. 1 + + Is public upload? + cbGoogleDriveIsPublic @@ -9235,6 +4398,33 @@ Using an encrypted library disables sharing. 6 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 1 + + + Google Drive + + + tpGoogleDrive + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 3 + True @@ -9250,6 +4440,9 @@ Using an encrypted library disables sharing. 5 + + Note: You can double click folder name to go inside that folder. + lblBoxFolderTip @@ -9277,6 +4470,9 @@ Using an encrypted library disables sharing. 1 + + Create shareable link + cbBoxShare @@ -9289,6 +4485,12 @@ Using an encrypted library disables sharing. 1 + + Folder name + + + 435 + 352, 72 @@ -9310,9 +4512,6 @@ Using an encrypted library disables sharing. 2 - - 435 - True @@ -9328,6 +4527,9 @@ Using an encrypted library disables sharing. 3 + + Selected folder: + lblBoxFolderID @@ -9355,6 +4557,9 @@ Using an encrypted library disables sharing. 2 + + Refresh folders list + btnBoxRefreshFolders @@ -9388,6 +4593,33 @@ Using an encrypted library disables sharing. 5 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 2 + + + Box + + + tpBox + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 4 + 16, 272 @@ -9424,6 +4656,9 @@ Using an encrypted library disables sharing. 15 + + URL preview: + lblAmazonS3PathPreviewLabel @@ -9451,6 +4686,9 @@ Using an encrypted library disables sharing. 16 + + Preview + lblAmazonS3PathPreview @@ -9475,6 +4713,9 @@ Using an encrypted library disables sharing. 9 + + ... + btnAmazonS3BucketNameOpen @@ -9499,6 +4740,9 @@ Using an encrypted library disables sharing. 2 + + ... + btnAmazonS3AccessKeyOpen @@ -9547,6 +4791,9 @@ Using an encrypted library disables sharing. 7 + + Bucket name: + lblAmazonS3BucketName @@ -9595,6 +4842,9 @@ Using an encrypted library disables sharing. 5 + + Endpoint: + lblAmazonS3Endpoint @@ -9643,6 +4893,9 @@ Using an encrypted library disables sharing. 10 + + Upload path: + lblAmazonS3ObjectPrefix @@ -9691,6 +4944,9 @@ Using an encrypted library disables sharing. 3 + + Secret key: + lblAmazonS3SecretKey @@ -9718,6 +4974,9 @@ Using an encrypted library disables sharing. 0 + + Access key: + lblAmazonS3AccessKey @@ -9751,6 +5010,33 @@ Using an encrypted library disables sharing. 16 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 13 + + + Amazon S3 + + + tpAmazonS3 + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 5 + NoControl @@ -9763,6 +5049,9 @@ Using an encrypted library disables sharing. 10 + + Refresh + btnMegaRefreshFolders @@ -9790,6 +5079,9 @@ Using an encrypted library disables sharing. 1 + + Configured / Not configured + lblMegaStatus @@ -9814,6 +5106,9 @@ Using an encrypted library disables sharing. 4 + + Register... + btnMegaRegister @@ -9841,6 +5136,9 @@ Using an encrypted library disables sharing. 8 + + Folder: + lblMegaFolder @@ -9868,6 +5166,9 @@ Using an encrypted library disables sharing. 0 + + Status: + lblMegaStatusTitle @@ -9916,6 +5217,9 @@ Using an encrypted library disables sharing. 2 + + Email: + lblMegaEmail @@ -9940,6 +5244,9 @@ Using an encrypted library disables sharing. 7 + + Login + btnMegaLogin @@ -10009,6 +5316,9 @@ Using an encrypted library disables sharing. 5 + + Password: + lblMegaPassword @@ -10021,6 +5331,30 @@ Using an encrypted library disables sharing. 10 + + 4, 40 + + + 972, 475 + + + 12 + + + Mega + + + tpMega + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 6 + True @@ -10036,6 +5370,9 @@ Using an encrypted library disables sharing. 11 + + ownCloud 8.1+ compatibility + cbOwnCloud81Compatibility @@ -10063,6 +5400,9 @@ Using an encrypted library disables sharing. 9 + + Direct link (Adds "&download" to URL) + cbOwnCloudDirectLink @@ -10090,6 +5430,9 @@ Using an encrypted library disables sharing. 8 + + Create shareable URL + cbOwnCloudCreateShare @@ -10201,6 +5544,9 @@ Using an encrypted library disables sharing. 3 + + Path: + lblOwnCloudPath @@ -10228,6 +5574,9 @@ Using an encrypted library disables sharing. 2 + + Password: + lblOwnCloudPassword @@ -10255,6 +5604,9 @@ Using an encrypted library disables sharing. 1 + + Username: + lblOwnCloudUsername @@ -10282,6 +5634,9 @@ Using an encrypted library disables sharing. 0 + + Host: + lblOwnCloudHost @@ -10294,6 +5649,33 @@ Using an encrypted library disables sharing. 10 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 15 + + + ownCloud + + + tpOwnCloud + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 7 + True @@ -10309,6 +5691,9 @@ Using an encrypted library disables sharing. 6 + + Use long link which includes file name + cbMediaFireUseLongLink @@ -10357,6 +5742,9 @@ Using an encrypted library disables sharing. 4 + + Upload path: + lblMediaFirePath @@ -10429,6 +5817,9 @@ Using an encrypted library disables sharing. 1 + + Password: + lblMediaFirePassword @@ -10456,6 +5847,9 @@ Using an encrypted library disables sharing. 0 + + Email: + lblMediaFireEmail @@ -10468,6 +5862,33 @@ Using an encrypted library disables sharing. 6 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 16 + + + MediaFire + + + tpMediaFire + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 8 + True @@ -10483,6 +5904,9 @@ Using an encrypted library disables sharing. 2 + + Device: + lblPushbulletDevices @@ -10534,6 +5958,9 @@ Using an encrypted library disables sharing. 4 + + Get device list + btnPushbulletGetDeviceList @@ -10561,6 +5988,9 @@ Using an encrypted library disables sharing. 0 + + User API key: + lblPushbulletUserKey @@ -10594,6 +6024,33 @@ Using an encrypted library disables sharing. 4 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 14 + + + Pushbullet + + + tpPushbullet + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 9 + NoControl @@ -10606,6 +6063,9 @@ Using an encrypted library disables sharing. 3 + + Register... + btnSendSpaceRegister @@ -10633,6 +6093,9 @@ Using an encrypted library disables sharing. 4 + + Password: + lblSendSpacePassword @@ -10660,6 +6123,9 @@ Using an encrypted library disables sharing. 1 + + Username: + lblSendSpaceUsername @@ -10735,6 +6201,33 @@ Using an encrypted library disables sharing. 5 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 6 + + + SendSpace + + + tpSendSpace + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 10 + True @@ -10750,6 +6243,9 @@ Using an encrypted library disables sharing. 4 + + Login required. + lblGe_ttStatus @@ -10777,6 +6273,9 @@ Using an encrypted library disables sharing. 2 + + Password: + lblGe_ttPassword @@ -10804,6 +6303,9 @@ Using an encrypted library disables sharing. 0 + + Email: + lblGe_ttEmail @@ -10828,6 +6330,9 @@ Using an encrypted library disables sharing. 5 + + Login + btnGe_ttLogin @@ -10882,6 +6387,33 @@ Using an encrypted library disables sharing. 5 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 7 + + + Ge.tt + + + tpGe_tt + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 11 + True @@ -10897,6 +6429,9 @@ Using an encrypted library disables sharing. 4 + + Use direct URL if exist + cbLocalhostrDirectURL @@ -10924,6 +6459,9 @@ Using an encrypted library disables sharing. 2 + + Password: + lblLocalhostrPassword @@ -10951,6 +6489,9 @@ Using an encrypted library disables sharing. 0 + + Email: + lblLocalhostrEmail @@ -11005,6 +6546,33 @@ Using an encrypted library disables sharing. 4 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 8 + + + Hostr + + + tpHostr + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 12 + True @@ -11020,6 +6588,9 @@ Using an encrypted library disables sharing. 2 + + URL type: + lblMinusURLType @@ -11053,111 +6624,6 @@ Using an encrypted library disables sharing. 1 - - lblMinusAuthStatus - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbMinusUserPass - - - 0 - - - btnMinusRefreshAuth - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbMinusUserPass - - - 1 - - - lblMinusPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbMinusUserPass - - - 2 - - - lblMinusUsername - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbMinusUserPass - - - 3 - - - txtMinusPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbMinusUserPass - - - 4 - - - txtMinusUsername - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbMinusUserPass - - - 5 - - - btnMinusAuth - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbMinusUserPass - - - 6 - - - 16, 16 - - - 712, 200 - - - 0 - - - gbMinusUserPass - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpMinus - - - 2 - True @@ -11173,6 +6639,9 @@ Using an encrypted library disables sharing. 6 + + Login status: + lblMinusAuthStatus @@ -11197,6 +6666,9 @@ Using an encrypted library disables sharing. 5 + + Refresh authorization + btnMinusRefreshAuth @@ -11224,6 +6696,9 @@ Using an encrypted library disables sharing. 2 + + Password: + lblMinusPassword @@ -11251,6 +6726,9 @@ Using an encrypted library disables sharing. 0 + + Username: + lblMinusUsername @@ -11317,6 +6795,9 @@ Using an encrypted library disables sharing. 4 + + Authorize + btnMinusAuth @@ -11329,86 +6810,29 @@ Using an encrypted library disables sharing. 6 - - btnMinusReadFolderList + + 16, 16 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 712, 200 - - gbMinusUpload - - + 0 - - cbMinusPublic + + Authentication - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gbMinusUserPass - - gbMinusUpload - - - 1 - - - btnMinusFolderAdd - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbMinusUpload - - - 2 - - - btnMinusFolderRemove - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbMinusUpload - - - 3 - - - cboMinusFolders - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbMinusUpload - - - 4 - - - 16, 224 - - - 712, 88 - - - 1 - - - gbMinusUpload - - + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tpMinus - - 3 + + 2 True @@ -11425,6 +6849,9 @@ Using an encrypted library disables sharing. 0 + + Reload folder list + btnMinusReadFolderList @@ -11452,6 +6879,9 @@ Using an encrypted library disables sharing. 4 + + Public + cbMinusPublic @@ -11476,6 +6906,9 @@ Using an encrypted library disables sharing. 1 + + Add folder + btnMinusFolderAdd @@ -11503,6 +6936,9 @@ Using an encrypted library disables sharing. 2 + + Remove folder + btnMinusFolderRemove @@ -11536,6 +6972,57 @@ Using an encrypted library disables sharing. 4 + + 16, 224 + + + 712, 88 + + + 1 + + + Upload images to + + + gbMinusUpload + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpMinus + + + 3 + + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 3 + + + Minus + + + tpMinus + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 13 + 472, 277 @@ -11545,6 +7032,9 @@ Using an encrypted library disables sharing. 3 + + PROJECT- + txtJiraIssuePrefix @@ -11572,6 +7062,9 @@ Using an encrypted library disables sharing. 2 + + Jira issue prefix: + lblJiraIssuePrefix @@ -11584,63 +7077,6 @@ Using an encrypted library disables sharing. 1 - - txtJiraConfigHelp - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gpJiraServer - - - 0 - - - txtJiraHost - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gpJiraServer - - - 1 - - - lblJiraHost - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gpJiraServer - - - 2 - - - 13, 13 - - - 451, 358 - - - 0 - - - gpJiraServer - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpJira - - - 2 - 8, 64 @@ -11656,6 +7092,9 @@ Using an encrypted library disables sharing. 2 + + Template + txtJiraConfigHelp @@ -11677,6 +7116,9 @@ Using an encrypted library disables sharing. 1 + + http:// + txtJiraHost @@ -11704,6 +7146,9 @@ Using an encrypted library disables sharing. 0 + + Jira host: + lblJiraHost @@ -11716,6 +7161,30 @@ Using an encrypted library disables sharing. 2 + + 13, 13 + + + 451, 358 + + + 0 + + + Jira server + + + gpJiraServer + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpJira + + + 2 + 473, 13 @@ -11737,6 +7206,30 @@ Using an encrypted library disables sharing. 3 + + 4, 40 + + + 972, 475 + + + 11 + + + Atlassian Jira + + + tpJira + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 14 + True @@ -11752,6 +7245,9 @@ Using an encrypted library disables sharing. 0 + + To get an API key, log in to Lambda at https://lambda.sx/ then click on your username, then click manage account. + lblLambdaInfo @@ -11779,6 +7275,9 @@ Using an encrypted library disables sharing. 1 + + API key: + lblLambdaApiKey @@ -11827,6 +7326,9 @@ Using an encrypted library disables sharing. 1 + + Link URL: + lblLambdaUploadURL @@ -11860,6 +7362,33 @@ Using an encrypted library disables sharing. 4 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 20 + + + Lambda + + + tpLambda + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 15 + NoControl @@ -11872,6 +7401,9 @@ Using an encrypted library disables sharing. 6 + + Test all + False @@ -11944,6 +7476,9 @@ Using an encrypted library disables sharing. 3 + + Result URL: + lblPomfResultURL @@ -11971,6 +7506,9 @@ Using an encrypted library disables sharing. 2 + + Upload URL: + lblPomfUploadURL @@ -11998,6 +7536,9 @@ Using an encrypted library disables sharing. 1 + + Uploaders: + lblPomfUploaders @@ -12031,6 +7572,33 @@ Using an encrypted library disables sharing. 6 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 22 + + + Pomf + + + tpPomf + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 16 + 16, 96 @@ -12097,6 +7665,9 @@ Using an encrypted library disables sharing. 7 + + API key: + lblUp1Key @@ -12127,6 +7698,9 @@ Using an encrypted library disables sharing. 6 + + Host: + lblUp1Host @@ -12139,6 +7713,39 @@ Using an encrypted library disables sharing. 3 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 21 + + + Up1 + + + tpUp1 + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 17 + + + https://seacloud.cc/api2/ + + + https://cloud.mein-seafile.de/api2/ + 16, 32 @@ -12160,75 +7767,6 @@ Using an encrypted library disables sharing. 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 - - - grpSeafileShareSettings - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 1 - 19, 79 @@ -12265,6 +7803,9 @@ Using an encrypted library disables sharing. 25 + + Share password: + lblSeafileSharePassword @@ -12313,6 +7854,9 @@ Using an encrypted library disables sharing. 25 + + Days to expiration: + lblSeafileDaysToExpire @@ -12325,6 +7869,30 @@ Using an encrypted library disables sharing. 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 @@ -12337,6 +7905,9 @@ Using an encrypted library disables sharing. 23 + + Validate + btnSeafileLibraryPasswordValidate @@ -12385,6 +7956,9 @@ Using an encrypted library disables sharing. 21 + + Library password: + lblSeafileLibraryPassword @@ -12397,6 +7971,21 @@ Using an encrypted library disables sharing. 4 + + Name + + + 217 + + + Size + + + 74 + + + Encrypted + 16, 162 @@ -12418,12 +8007,6 @@ Using an encrypted library disables sharing. 5 - - 217 - - - 74 - NoControl @@ -12436,6 +8019,9 @@ Using an encrypted library disables sharing. 19 + + Validate + btnSeafilePathValidate @@ -12484,6 +8070,10 @@ Using an encrypted library disables sharing. 20 + + Libraries without write permissions are hidden. +Using an encrypted library disables sharing. + lblSeafileWritePermNotif @@ -12511,6 +8101,9 @@ Using an encrypted library disables sharing. 17 + + Path: + lblSeafilePath @@ -12535,6 +8128,9 @@ Using an encrypted library disables sharing. 17 + + Refresh + txtSeafileUploadLocationRefresh @@ -12562,6 +8158,9 @@ Using an encrypted library disables sharing. 19 + + Select library: + lblSeafileSelectLibrary @@ -12574,87 +8173,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 - - - grpSeafileAccInfo - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 12 - NoControl @@ -12667,6 +8185,9 @@ Using an encrypted library disables sharing. 15 + + Refresh + btnRefreshSeafileAccInfo @@ -12736,6 +8257,9 @@ Using an encrypted library disables sharing. 13 + + Email: + lblSeafileAccInfoEmail @@ -12763,6 +8287,9 @@ Using an encrypted library disables sharing. 14 + + Usage: + lblSeafileAccInfoUsage @@ -12775,6 +8302,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 @@ -12787,6 +8338,9 @@ Using an encrypted library disables sharing. 7 + + Validate + btnSeafileCheckAuthToken @@ -12811,6 +8365,9 @@ Using an encrypted library disables sharing. 5 + + Validate + btnSeafileCheckAPIURL @@ -12823,87 +8380,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 - - - grpSeafileObtainAuthToken - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSeafile - - - 15 - NoControl @@ -12916,6 +8392,9 @@ Using an encrypted library disables sharing. 12 + + Get + btnSeafileGetAuthToken @@ -12985,6 +8464,9 @@ Using an encrypted library disables sharing. 13 + + Email: + lblSeafileUsername @@ -13012,6 +8494,9 @@ Using an encrypted library disables sharing. 14 + + Password: + lblSeafilePassword @@ -13024,6 +8509,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 @@ -13039,6 +8548,9 @@ Using an encrypted library disables sharing. 9 + + Ignore invalid SSL certificate + cbSeafileIgnoreInvalidCert @@ -13066,6 +8578,9 @@ Using an encrypted library disables sharing. 8 + + Create shareable URL + cbSeafileCreateShareableURL @@ -13114,6 +8629,9 @@ Using an encrypted library disables sharing. 1 + + Auth token: + lblSeafileAuthToken @@ -13141,6 +8659,9 @@ Using an encrypted library disables sharing. 0 + + API URL: + lblSeafileAPIURL @@ -13153,6 +8674,33 @@ Using an encrypted library disables sharing. 20 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 23 + + + Seafile + + + tpSeafile + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 18 + 20, 34 @@ -13189,6 +8737,9 @@ Using an encrypted library disables sharing. 0 + + API key: + lblSulAPIKey @@ -13201,6 +8752,231 @@ Using an encrypted library disables sharing. 1 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 25 + + + s-ul + + + tpSul + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 19 + + + True + + + 16, 136 + + + 93, 17 + + + 20 + + + Use direct link + + + cbStreamableUseDirectURL + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpStreamable + + + 0 + + + 16, 104 + + + 6, 6, 6, 6 + + + 372, 20 + + + 17 + + + txtStreamablePassword + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpStreamable + + + 1 + + + 16, 56 + + + 6, 6, 6, 6 + + + 372, 20 + + + 16 + + + txtStreamableUsername + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpStreamable + + + 2 + + + True + + + NoControl + + + 13, 40 + + + 6, 0, 6, 0 + + + 58, 13 + + + 18 + + + Username: + + + lblStreamableUsername + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpStreamable + + + 3 + + + True + + + NoControl + + + 13, 88 + + + 6, 0, 6, 0 + + + 56, 13 + + + 19 + + + Password: + + + lblStreamablePassword + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpStreamable + + + 4 + + + True + + + NoControl + + + 16, 16 + + + 6, 6, 6, 6 + + + 81, 17 + + + 15 + + + Anonymous + + + cbStreamableAnonymous + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpStreamable + + + 5 + + + 4, 40 + + + 972, 475 + + + 24 + + + Streamable + + + tpStreamable + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 20 + True @@ -13216,6 +8992,9 @@ Using an encrypted library disables sharing. 4 + + File: + lblSharedFolderFiles @@ -13243,6 +9022,9 @@ Using an encrypted library disables sharing. 2 + + Text: + lblSharedFolderText @@ -13291,6 +9073,9 @@ Using an encrypted library disables sharing. 0 + + Image: + lblSharedFolderImages @@ -13372,6 +9157,33 @@ Using an encrypted library disables sharing. 6 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 9 + + + Shared folder + + + tpSharedFolder + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 21 + True @@ -13387,6 +9199,9 @@ Using an encrypted library disables sharing. 9 + + Confirm before sending + cbEmailConfirm @@ -13414,6 +9229,9 @@ Using an encrypted library disables sharing. 0 + + SMTP server: + lblEmailSmtpServer @@ -13441,6 +9259,9 @@ Using an encrypted library disables sharing. 6 + + Password: + lblEmailPassword @@ -13468,6 +9289,9 @@ Using an encrypted library disables sharing. 8 + + Remember last recipient address + cbEmailRememberLastTo @@ -13561,6 +9385,9 @@ Using an encrypted library disables sharing. 4 + + Email: + lblEmailFrom @@ -13609,6 +9436,9 @@ Using an encrypted library disables sharing. 10 + + Default subject: + lblEmailDefaultSubject @@ -13636,6 +9466,9 @@ Using an encrypted library disables sharing. 12 + + Default message: + lblEmailDefaultBody @@ -13687,6 +9520,9 @@ Using an encrypted library disables sharing. 2 + + Port: + lblEmailSmtpPort @@ -13720,6 +9556,84 @@ Using an encrypted library disables sharing. 13 + + 4, 40 + + + 3, 3, 3, 3 + + + 972, 475 + + + 10 + + + Email + + + tpEmail + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcFileUploaders + + + 22 + + + Fill + + + 3, 3 + + + 980, 519 + + + 0 + + + tcFileUploaders + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpFileUploaders + + + 0 + + + 4, 22 + + + 3, 3, 3, 3 + + + 986, 525 + + + 2 + + + File uploaders + + + tpFileUploaders + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcUploaders + + + 2 + NoControl @@ -13738,354 +9652,6 @@ Using an encrypted library disables sharing. System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tcTextUploaders - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTextUploaders - - - 0 - - - 4, 22 - - - 3, 3, 3, 3 - - - 986, 525 - - - 1 - - - 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 - - - Fill - - - 3, 3 - - - 980, 519 - - - 0 - - - tcTextUploaders - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTextUploaders - - - 0 - - - cbPastebinRaw - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 0 - - - cbPastebinSyntax - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 1 - - - btnPastebinRegister - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 2 - - - lblPastebinSyntax - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 3 - - - lblPastebinExpiration - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 4 - - - lblPastebinPrivacy - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 5 - - - lblPastebinTitle - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 6 - - - lblPastebinPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 7 - - - lblPastebinUsername - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 8 - - - cbPastebinExpiration - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 9 - - - cbPastebinPrivacy - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 10 - - - txtPastebinTitle - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 11 - - - txtPastebinPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 12 - - - txtPastebinUsername - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 13 - - - lblPastebinLoginStatus - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 14 - - - btnPastebinLogin - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPastebin - - - 15 - - - 4, 22 - - - 3, 3, 3, 3 - - - 972, 493 - - - 0 - - - tpPastebin - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcTextUploaders - - - 0 - True @@ -14101,6 +9667,9 @@ Using an encrypted library disables sharing. 18 + + Use raw URL + cbPastebinRaw @@ -14146,6 +9715,9 @@ Using an encrypted library disables sharing. 16 + + Register... + btnPastebinRegister @@ -14173,6 +9745,9 @@ Using an encrypted library disables sharing. 14 + + Paste syntax: + lblPastebinSyntax @@ -14200,6 +9775,9 @@ Using an encrypted library disables sharing. 13 + + Expiration: + lblPastebinExpiration @@ -14227,6 +9805,9 @@ Using an encrypted library disables sharing. 12 + + Privacy: + lblPastebinPrivacy @@ -14254,6 +9835,9 @@ Using an encrypted library disables sharing. 11 + + Paste title: + lblPastebinTitle @@ -14281,6 +9865,9 @@ Using an encrypted library disables sharing. 10 + + Password: + lblPastebinPassword @@ -14308,6 +9895,9 @@ Using an encrypted library disables sharing. 9 + + Username: + lblPastebinUsername @@ -14440,6 +10030,9 @@ Using an encrypted library disables sharing. 2 + + Status: + lblPastebinLoginStatus @@ -14464,6 +10057,9 @@ Using an encrypted library disables sharing. 0 + + Login + btnPastebinLogin @@ -14476,53 +10072,32 @@ Using an encrypted library disables sharing. 15 - - lblPaste_eeUserAPIKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPaste_ee - - - 0 - - - txtPaste_eeUserAPIKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPaste_ee - - - 1 - - + 4, 22 - + 3, 3, 3, 3 - + 972, 493 - - 1 + + 0 - - tpPaste_ee + + Pastebin - + + tpPastebin + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcTextUploaders - - 1 + + 0 True @@ -14539,6 +10114,9 @@ Using an encrypted library disables sharing. 0 + + User API key: + lblPaste_eeUserAPIKey @@ -14572,77 +10150,32 @@ Using an encrypted library disables sharing. 1 - - cbGistUseRawURL - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGist - - - 0 - - - cbGistPublishPublic - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGist - - - 1 - - - oAuth2Gist - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpGist - - - 2 - - - atcGistAccountType - - - ShareX.UploadersLib.AccountTypeControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpGist - - - 3 - - + 4, 22 - + + 3, 3, 3, 3 + + 972, 493 - - 2 + + 1 - - GitHub Gist + + Paste.ee - - tpGist + + tpPaste_ee - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcTextUploaders - - 2 + + 1 True @@ -14659,6 +10192,9 @@ Using an encrypted library disables sharing. 19 + + Use raw URL + cbGistUseRawURL @@ -14686,6 +10222,9 @@ Using an encrypted library disables sharing. 1 + + Create public Gist + cbGistPublishPublic @@ -14743,6 +10282,48 @@ Using an encrypted library disables sharing. 3 + + 4, 22 + + + 972, 493 + + + 2 + + + GitHub Gist + + + tpGist + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcTextUploaders + + + 2 + + + True + + + NoControl + + + 16, 64 + + + 106, 17 + + + 2 + + + Is public upload? + cbUpasteIsPublic @@ -14755,6 +10336,24 @@ Using an encrypted library disables sharing. 0 + + True + + + NoControl + + + 13, 16 + + + 52, 13 + + + 0 + + + User key: + lblUpasteUserKey @@ -14767,6 +10366,15 @@ Using an encrypted library disables sharing. 1 + + 16, 32 + + + 264, 20 + + + 1 + txtUpasteUserKey @@ -14806,156 +10414,6 @@ Using an encrypted library disables sharing. 3 - - True - - - NoControl - - - 16, 64 - - - 106, 17 - - - 2 - - - cbUpasteIsPublic - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUpaste - - - 0 - - - True - - - NoControl - - - 13, 16 - - - 52, 13 - - - 0 - - - lblUpasteUserKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUpaste - - - 1 - - - 16, 32 - - - 264, 20 - - - 1 - - - txtUpasteUserKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUpaste - - - 2 - - - txtHastebinSyntaxHighlighting - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpHastebin - - - 0 - - - txtHastebinCustomDomain - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpHastebin - - - 1 - - - lblHastebinSyntaxHighlighting - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpHastebin - - - 2 - - - lblHastebinCustomDomain - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpHastebin - - - 3 - - - 4, 22 - - - 3, 3, 3, 3 - - - 972, 493 - - - 4 - - - Hastebin - - - tpHastebin - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcTextUploaders - - - 4 - 16, 80 @@ -15013,6 +10471,9 @@ Using an encrypted library disables sharing. 1 + + Syntax highlighting: + lblHastebinSyntaxHighlighting @@ -15040,6 +10501,9 @@ Using an encrypted library disables sharing. 0 + + Custom domain: + lblHastebinCustomDomain @@ -15052,80 +10516,32 @@ Using an encrypted library disables sharing. 3 - - lblOneTimeSecretAPIKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOneTimeSecret - - - 0 - - - lblOneTimeSecretEmail - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOneTimeSecret - - - 1 - - - txtOneTimeSecretAPIKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOneTimeSecret - - - 2 - - - txtOneTimeSecretEmail - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpOneTimeSecret - - - 3 - - + 4, 22 - + 3, 3, 3, 3 - + 972, 493 - - 5 + + 4 - - OneTimeSecret + + Hastebin - - tpOneTimeSecret + + tpHastebin - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcTextUploaders - - 5 + + 4 True @@ -15142,6 +10558,9 @@ Using an encrypted library disables sharing. 14 + + API key: + lblOneTimeSecretAPIKey @@ -15169,6 +10588,9 @@ Using an encrypted library disables sharing. 13 + + Email: + lblOneTimeSecretEmail @@ -15223,309 +10645,84 @@ Using an encrypted library disables sharing. 3 - - tcImageUploaders - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImageUploaders - - - 0 - - + 4, 22 - + 3, 3, 3, 3 - - 986, 525 - - - 0 - - - tpImageUploaders - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcUploaders - - - 0 - - - tpImgur - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcImageUploaders - - - 0 - - - tpImageShack - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcImageUploaders - - - 1 - - - tpTinyPic - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcImageUploaders - - - 2 - - - tpFlickr - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcImageUploaders - - - 3 - - - tpPhotobucket - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcImageUploaders - - - 4 - - - tpPicasa - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcImageUploaders - - - 5 - - - tpChevereto - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcImageUploaders - - - 6 - - - tpVgyme - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcImageUploaders - - - 7 - - - tpSomeImage - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcImageUploaders - - - 8 - - - Fill - - - 3, 3 - - - 780, 480 - - - 980, 519 - - - 0 - - - tcImageUploaders - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImageUploaders - - - 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=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpImgur - - - 3 - - - oauth2Imgur - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=1.0.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, 493 - - 2 + + 5 - - tpImgur + + OneTimeSecret - + + tpOneTimeSecret + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tcImageUploaders + + tcTextUploaders - + + 5 + + + Fill + + + 3, 3 + + + 980, 519 + + 0 + + tcTextUploaders + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpTextUploaders + + + 0 + + + 4, 22 + + + 3, 3, 3, 3 + + + 986, 525 + + + 1 + + + Text uploaders + + + tpTextUploaders + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcUploaders + + + 1 + True @@ -15541,6 +10738,9 @@ Using an encrypted library disables sharing. 10 + + Use GIFV link instead of GIF + cbImgurUseGIFV @@ -15568,6 +10768,9 @@ Using an encrypted library disables sharing. 9 + + Upload images to selected album + cbImgurUploadSelectedAlbum @@ -15595,6 +10798,9 @@ Using an encrypted library disables sharing. 8 + + Use direct link + cbImgurDirectLink @@ -15649,6 +10855,21 @@ Using an encrypted library disables sharing. 4 + + ID + + + Title + + + 150 + + + Description + + + 226 + 352, 48 @@ -15670,12 +10891,6 @@ Using an encrypted library disables sharing. 5 - - 150 - - - 226 - False @@ -15691,6 +10906,9 @@ Using an encrypted library disables sharing. 6 + + Refresh album list + btnImgurRefreshAlbumList @@ -15739,6 +10957,9 @@ Using an encrypted library disables sharing. 2 + + Thumbnail type: + lblImgurThumbnailType @@ -15751,125 +10972,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, 493 - - 0 + + 2 - - tpImageShack + + Imgur - + + tpImgur + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcImageUploaders - - 1 + + 0 NoControl @@ -15883,6 +11011,9 @@ Using an encrypted library disables sharing. 4 + + Login + btnImageShackLogin @@ -15907,6 +11038,9 @@ Using an encrypted library disables sharing. 7 + + Open public profile page... + btnImageShackOpenPublicProfile @@ -15934,6 +11068,9 @@ Using an encrypted library disables sharing. 5 + + Is public upload? + cbImageShackIsPublic @@ -15958,6 +11095,9 @@ Using an encrypted library disables sharing. 6 + + Open my images page... + btnImageShackOpenMyImages @@ -15985,6 +11125,9 @@ Using an encrypted library disables sharing. 0 + + Username: + lblImageShackUsername @@ -16054,6 +11197,9 @@ Using an encrypted library disables sharing. 2 + + Password: + lblImageShackPassword @@ -16066,113 +11212,32 @@ Using an encrypted library disables sharing. 7 - - atcTinyPicAccountType - - - ShareX.UploadersLib.AccountTypeControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpTinyPic - - - 0 - - - btnTinyPicLogin - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTinyPic - - - 1 - - - txtTinyPicPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTinyPic - - - 2 - - - lblTinyPicPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTinyPic - - - 3 - - - txtTinyPicUsername - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTinyPic - - - 4 - - - lblTinyPicUsername - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTinyPic - - - 5 - - - btnTinyPicOpenMyImages - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTinyPic - - - 6 - - + 4, 22 - + 3, 3, 3, 3 - + 972, 493 - - 1 + + 0 - - tpTinyPic + + ImageShack - + + tpImageShack + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcImageUploaders - - 2 + + 1 16, 16 @@ -16207,6 +11272,9 @@ Using an encrypted library disables sharing. 5 + + Login + btnTinyPicLogin @@ -16255,6 +11323,9 @@ Using an encrypted library disables sharing. 3 + + Password: + lblTinyPicPassword @@ -16303,6 +11374,9 @@ Using an encrypted library disables sharing. 1 + + Email: + lblTinyPicUsername @@ -16327,6 +11401,9 @@ Using an encrypted library disables sharing. 6 + + Open my images page... + btnTinyPicOpenMyImages @@ -16339,101 +11416,32 @@ Using an encrypted library disables sharing. 6 - - btnFlickrOpenImages - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFlickr - - - 0 - - - pgFlickrAuthInfo - - - System.Windows.Forms.PropertyGrid, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFlickr - - - 1 - - - pgFlickrSettings - - - System.Windows.Forms.PropertyGrid, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFlickr - - - 2 - - - btnFlickrCheckToken - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFlickr - - - 3 - - - btnFlickrCompleteAuth - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFlickr - - - 4 - - - btnFlickrOpenAuthorize - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFlickr - - - 5 - - + 4, 22 - + 3, 3, 3, 3 - + 972, 493 - - 3 + + 1 - - tpFlickr + + TinyPic - + + tpTinyPic + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcImageUploaders - - 3 + + 2 NoControl @@ -16447,6 +11455,9 @@ Using an encrypted library disables sharing. 3 + + Your photostream... + btnFlickrOpenImages @@ -16513,6 +11524,9 @@ Using an encrypted library disables sharing. 2 + + Refresh authorization + btnFlickrCheckToken @@ -16540,6 +11554,9 @@ Using an encrypted library disables sharing. 1 + + Step 2: Complete authorization + btnFlickrCompleteAuth @@ -16564,6 +11581,9 @@ Using an encrypted library disables sharing. 0 + + Step 1: Open authorize page... + btnFlickrOpenAuthorize @@ -16576,122 +11596,32 @@ Using an encrypted library disables sharing. 5 - - gbPhotobucketAlbumPath - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPhotobucket - - - 0 - - - gbPhotobucketAlbums - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPhotobucket - - - 1 - - - gbPhotobucketUserAccount - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPhotobucket - - - 2 - - + 4, 22 - + 3, 3, 3, 3 - + 972, 493 - - 4 + + 3 - - tpPhotobucket + + Flickr - + + 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 - - - gbPhotobucketAlbumPath - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPhotobucket - - - 0 + + 3 NoControl @@ -16705,6 +11635,9 @@ Using an encrypted library disables sharing. 1 + + Add album + btnPhotobucketAddAlbum @@ -16732,6 +11665,9 @@ Using an encrypted library disables sharing. 2 + + Remove album + btnPhotobucketRemoveAlbum @@ -16765,89 +11701,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 @@ -16864,6 +11740,9 @@ Using an encrypted library disables sharing. 2 + + New album name (must be between 2 and 50 characters. Valid characters are letters, numbers, underscore ( _ ), hyphen (-), and space) + lblPhotobucketNewAlbumName @@ -16891,6 +11770,9 @@ Using an encrypted library disables sharing. 0 + + Parent album path + lblPhotobucketParentAlbumPath @@ -16957,6 +11839,9 @@ Using an encrypted library disables sharing. 4 + + Create album + btnPhotobucketCreateAlbum @@ -16969,110 +11854,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 - - - gbPhotobucketUserAccount - - + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tpPhotobucket - - 2 + + 1 True @@ -17089,6 +11893,9 @@ Using an encrypted library disables sharing. 5 + + Default album name + lblPhotobucketDefaultAlbumName @@ -17113,6 +11920,9 @@ Using an encrypted library disables sharing. 0 + + Step 1: Open authorize page... + btnPhotobucketAuthOpen @@ -17161,6 +11971,9 @@ Using an encrypted library disables sharing. 1 + + Verification code (Get verification code from authorize page): + lblPhotobucketVerificationCode @@ -17185,6 +11998,9 @@ Using an encrypted library disables sharing. 3 + + Step 2: Complete authorization + btnPhotobucketAuthComplete @@ -17233,6 +12049,9 @@ Using an encrypted library disables sharing. 4 + + Login required. + lblPhotobucketAccountStatus @@ -17245,89 +12064,56 @@ Using an encrypted library disables sharing. 6 - - txtPicasaAlbumID + + 16, 16 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 712, 184 - - tpPicasa - - + 0 - - lblPicasaAlbumID + + User account - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gbPhotobucketUserAccount - - tpPicasa + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 + + tpPhotobucket - - lvPicasaAlbumList - - - System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPicasa - - + 2 - - btnPicasaRefreshAlbumList - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpPicasa - - - 3 - - - oauth2Picasa - - - ShareX.UploadersLib.OAuthControl, ShareX.UploadersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpPicasa - - - 4 - - + 4, 22 - + 3, 3, 3, 3 - + 972, 493 - - 8 + + 4 - - tpPicasa + + Photobucket - + + tpPhotobucket + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcImageUploaders - - 5 + + 4 352, 64 @@ -17365,6 +12151,9 @@ Using an encrypted library disables sharing. 1 + + Album ID for upload (Empty = No album upload): + lblPicasaAlbumID @@ -17377,6 +12166,24 @@ Using an encrypted library disables sharing. 1 + + ID + + + 135 + + + Name + + + 150 + + + Description + + + 143 + 352, 88 @@ -17398,15 +12205,6 @@ Using an encrypted library disables sharing. 2 - - 135 - - - 150 - - - 143 - False @@ -17422,6 +12220,9 @@ Using an encrypted library disables sharing. 3 + + Refresh album list + btnPicasaRefreshAlbumList @@ -17455,137 +12256,32 @@ Using an encrypted library disables sharing. 4 - - btnCheveretoTestAll - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpChevereto - - - 0 - - - lblCheveretoUploadURLExample - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpChevereto - - - 1 - - - lblCheveretoUploaders - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpChevereto - - - 2 - - - cbCheveretoUploaders - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpChevereto - - - 3 - - - cbCheveretoDirectURL - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpChevereto - - - 4 - - - lblCheveretoUploadURL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpChevereto - - - 5 - - - txtCheveretoUploadURL - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpChevereto - - - 6 - - - txtCheveretoAPIKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpChevereto - - - 7 - - - lblCheveretoAPIKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpChevereto - - - 8 - - + 4, 22 - + 3, 3, 3, 3 - + 972, 493 - - 9 + + 8 - - tpChevereto + + Google Photos (Picasa) - + + tpPicasa + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcImageUploaders - - 6 + + 5 NoControl @@ -17599,6 +12295,9 @@ Using an encrypted library disables sharing. 9 + + Test all + False @@ -17629,6 +12328,9 @@ Using an encrypted library disables sharing. 8 + + Example: http://example.com/api/1/upload + lblCheveretoUploadURLExample @@ -17656,6 +12358,9 @@ Using an encrypted library disables sharing. 7 + + Uploaders: + lblCheveretoUploaders @@ -17704,6 +12409,9 @@ Using an encrypted library disables sharing. 5 + + Direct URL + cbCheveretoDirectURL @@ -17731,6 +12439,9 @@ Using an encrypted library disables sharing. 3 + + Upload URL: + lblCheveretoUploadURL @@ -17800,6 +12511,9 @@ Using an encrypted library disables sharing. 0 + + API key: + lblCheveretoAPIKey @@ -17812,68 +12526,32 @@ Using an encrypted library disables sharing. 8 - - llVgymeAccountDetailsPage - - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpVgyme - - - 0 - - - txtVgymeUserKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpVgyme - - - 1 - - - lvlVgymeUserKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpVgyme - - - 2 - - + 4, 22 - + 3, 3, 3, 3 - + 972, 493 - - 10 + + 9 - - vgy.me + + Chevereto - - tpVgyme + + tpChevereto - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcImageUploaders - - 7 + + 6 True @@ -17890,6 +12568,9 @@ Using an encrypted library disables sharing. 2 + + You can get user key from account details page. + llVgymeAccountDetailsPage @@ -17938,6 +12619,9 @@ Using an encrypted library disables sharing. 0 + + User key: + lvlVgymeUserKey @@ -17950,80 +12634,32 @@ Using an encrypted library disables sharing. 2 - - llSomeImageAPIKey - - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSomeImage - - - 0 - - - txtSomeImageAPIKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSomeImage - - - 1 - - - lblSomeImageAPIKey - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSomeImage - - - 2 - - - cbSomeImageDirectURL - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpSomeImage - - - 3 - - + 4, 22 - - 4, 4, 4, 4 + + 3, 3, 3, 3 - - 4, 4, 4, 4 - - + 972, 493 - + 10 - - tpSomeImage + + vgy.me - + + tpVgyme + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcImageUploaders - - 8 + + 7 True @@ -18040,6 +12676,9 @@ Using an encrypted library disables sharing. 4 + + To get API key visit https://someimage.com/api + llSomeImageAPIKey @@ -18088,6 +12727,9 @@ Using an encrypted library disables sharing. 1 + + API key: + lblSomeImageAPIKey @@ -18118,6 +12760,9 @@ Using an encrypted library disables sharing. 0 + + Direct URL + cbSomeImageDirectURL @@ -18130,6 +12775,90 @@ Using an encrypted library disables sharing. 3 + + 4, 22 + + + 4, 4, 4, 4 + + + 4, 4, 4, 4 + + + 972, 493 + + + 10 + + + SomeImage + + + tpSomeImage + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcImageUploaders + + + 8 + + + Fill + + + 3, 3 + + + 780, 480 + + + 980, 519 + + + 0 + + + tcImageUploaders + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpImageUploaders + + + 0 + + + 4, 22 + + + 3, 3, 3, 3 + + + 986, 525 + + + 0 + + + Image uploaders + + + tpImageUploaders + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcUploaders + + + 0 + Fill @@ -18247,6 +12976,9 @@ Using an encrypted library disables sharing. CenterScreen + + ShareX - Destination settings + ttHelpTip diff --git a/ShareX/Controls/HotkeySelectionControl.Designer.cs b/ShareX/Controls/HotkeySelectionControl.Designer.cs index 342cbe8fa..c2b4bb6c3 100644 --- a/ShareX/Controls/HotkeySelectionControl.Designer.cs +++ b/ShareX/Controls/HotkeySelectionControl.Designer.cs @@ -45,7 +45,6 @@ private void InitializeComponent() // lblHotkeyDescription // resources.ApplyResources(this.lblHotkeyDescription, "lblHotkeyDescription"); - this.lblHotkeyDescription.BackColor = System.Drawing.Color.White; this.lblHotkeyDescription.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.lblHotkeyDescription.Name = "lblHotkeyDescription"; this.lblHotkeyDescription.UseMnemonic = false; diff --git a/ShareX/Controls/HotkeySelectionControl.cs b/ShareX/Controls/HotkeySelectionControl.cs index 9ae74225e..a1d5df2ed 100644 --- a/ShareX/Controls/HotkeySelectionControl.cs +++ b/ShareX/Controls/HotkeySelectionControl.cs @@ -56,7 +56,7 @@ public bool Selected } else { - lblHotkeyDescription.BackColor = Color.White; + lblHotkeyDescription.BackColor = SystemColors.Control; } } } @@ -256,7 +256,7 @@ private void lblHotkeyDescription_MouseLeave(object sender, EventArgs e) { if (!Selected) { - lblHotkeyDescription.BackColor = Color.White; + lblHotkeyDescription.BackColor = SystemColors.Control; } } diff --git a/ShareX/Forms/AboutForm.Designer.cs b/ShareX/Forms/AboutForm.Designer.cs index 1cee00685..ad4a34cd6 100644 --- a/ShareX/Forms/AboutForm.Designer.cs +++ b/ShareX/Forms/AboutForm.Designer.cs @@ -67,30 +67,26 @@ private void InitializeComponent() // lblBerk // resources.ApplyResources(this.lblBerk, "lblBerk"); - this.lblBerk.BackColor = System.Drawing.Color.Transparent; - this.lblBerk.ForeColor = System.Drawing.Color.Black; this.lblBerk.Name = "lblBerk"; // // lblMike // resources.ApplyResources(this.lblMike, "lblMike"); - this.lblMike.BackColor = System.Drawing.Color.Transparent; - this.lblMike.ForeColor = System.Drawing.Color.Black; this.lblMike.Name = "lblMike"; // // rtbCredits // resources.ApplyResources(this.rtbCredits, "rtbCredits"); - this.rtbCredits.BackColor = System.Drawing.Color.White; this.rtbCredits.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rtbCredits.ForeColor = System.Drawing.SystemColors.ControlText; this.rtbCredits.Name = "rtbCredits"; this.rtbCredits.ReadOnly = true; this.rtbCredits.LinkClicked += new System.Windows.Forms.LinkClickedEventHandler(this.rtb_LinkClicked); // // rtbShareXInfo // - this.rtbShareXInfo.BackColor = System.Drawing.Color.White; this.rtbShareXInfo.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rtbShareXInfo.ForeColor = System.Drawing.SystemColors.ControlText; resources.ApplyResources(this.rtbShareXInfo, "rtbShareXInfo"); this.rtbShareXInfo.Name = "rtbShareXInfo"; this.rtbShareXInfo.ReadOnly = true; @@ -164,6 +160,7 @@ private void InitializeComponent() // btnClose // resources.ApplyResources(this.btnClose, "btnClose"); + this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnClose.Name = "btnClose"; this.btnClose.UseVisualStyleBackColor = true; this.btnClose.Click += new System.EventHandler(this.btnClose_Click); @@ -199,7 +196,6 @@ private void InitializeComponent() // resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.White; this.CancelButton = this.btnClose; this.Controls.Add(this.btnLicenses); this.Controls.Add(this.btnShareXLicense); diff --git a/ShareX/Forms/AboutForm.resx b/ShareX/Forms/AboutForm.resx index 4938dcc87..5f9c184e2 100644 --- a/ShareX/Forms/AboutForm.resx +++ b/ShareX/Forms/AboutForm.resx @@ -630,9 +630,6 @@ 584, 593 - - NoControl - 600, 600 diff --git a/ShareX/Forms/ApplicationSettingsForm.Designer.cs b/ShareX/Forms/ApplicationSettingsForm.Designer.cs index 6b759c872..4e90c662c 100644 --- a/ShareX/Forms/ApplicationSettingsForm.Designer.cs +++ b/ShareX/Forms/ApplicationSettingsForm.Designer.cs @@ -1003,7 +1003,6 @@ private void InitializeComponent() // resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.White; this.Controls.Add(this.tcSettings); this.Controls.Add(this.tttvMain); this.Name = "ApplicationSettingsForm"; diff --git a/ShareX/Forms/HotkeySettingsForm.Designer.cs b/ShareX/Forms/HotkeySettingsForm.Designer.cs index 0384ec373..5d45c5653 100644 --- a/ShareX/Forms/HotkeySettingsForm.Designer.cs +++ b/ShareX/Forms/HotkeySettingsForm.Designer.cs @@ -82,7 +82,6 @@ private void InitializeComponent() // resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.White; this.Controls.Add(this.btnDuplicate); this.Controls.Add(this.btnReset); this.Controls.Add(this.flpHotkeys); diff --git a/ShareX/Forms/MainForm.Designer.cs b/ShareX/Forms/MainForm.Designer.cs index 57b71e26c..58cdc54a7 100644 --- a/ShareX/Forms/MainForm.Designer.cs +++ b/ShareX/Forms/MainForm.Designer.cs @@ -265,7 +265,7 @@ private void InitializeComponent() // lblMainFormTip // resources.ApplyResources(this.lblMainFormTip, "lblMainFormTip"); - this.lblMainFormTip.BackColor = System.Drawing.Color.White; + this.lblMainFormTip.BackColor = System.Drawing.SystemColors.Window; this.lblMainFormTip.ForeColor = System.Drawing.Color.LightGray; this.lblMainFormTip.Name = "lblMainFormTip"; this.lblMainFormTip.UseMnemonic = false; @@ -280,7 +280,6 @@ private void InitializeComponent() // lvUploads // this.lvUploads.AutoFillColumn = true; - this.lvUploads.BackColor = System.Drawing.Color.White; this.lvUploads.BorderStyle = System.Windows.Forms.BorderStyle.None; this.lvUploads.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.chFilename, @@ -333,7 +332,6 @@ private void InitializeComponent() // // pbPreview // - this.pbPreview.BackColor = System.Drawing.Color.White; resources.ApplyResources(this.pbPreview, "pbPreview"); this.pbPreview.DrawCheckeredBackground = true; this.pbPreview.EnableRightClickMenu = true; @@ -1816,7 +1814,6 @@ private void InitializeComponent() this.AllowDrop = true; resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.White; this.Controls.Add(this.scMain); this.Controls.Add(this.tsMain); this.DoubleBuffered = true; diff --git a/ShareX/Forms/TaskSettingsForm.Designer.cs b/ShareX/Forms/TaskSettingsForm.Designer.cs index 13f0a4d31..6e1b9a3bc 100644 --- a/ShareX/Forms/TaskSettingsForm.Designer.cs +++ b/ShareX/Forms/TaskSettingsForm.Designer.cs @@ -1640,7 +1640,6 @@ private void InitializeComponent() // resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.White; this.Controls.Add(this.tcTaskSettings); this.Controls.Add(this.tttvMain); this.Name = "TaskSettingsForm";