diff --git a/ImageEffectsLib/Drawings/DrawImage.cs b/ImageEffectsLib/Drawings/DrawImage.cs index e7b041f06..f1ee82032 100644 --- a/ImageEffectsLib/Drawings/DrawImage.cs +++ b/ImageEffectsLib/Drawings/DrawImage.cs @@ -31,7 +31,7 @@ namespace ImageEffectsLib { - [Description("Image")] + [Description("Image watermark")] public class DrawImage : ImageEffect { [DefaultValue(ContentAlignment.BottomRight)] diff --git a/ImageEffectsLib/Drawings/DrawText.cs b/ImageEffectsLib/Drawings/DrawText.cs index a30cea82e..022afec0e 100644 --- a/ImageEffectsLib/Drawings/DrawText.cs +++ b/ImageEffectsLib/Drawings/DrawText.cs @@ -34,7 +34,7 @@ namespace ImageEffectsLib { - [Description("Text")] + [Description("Text watermark")] public class DrawText : ImageEffect { [DefaultValue(ContentAlignment.BottomRight)] diff --git a/ShareX/Enums.cs b/ShareX/Enums.cs index 3267663b2..678f29f7c 100644 --- a/ShareX/Enums.cs +++ b/ShareX/Enums.cs @@ -70,30 +70,28 @@ public enum AfterCaptureTasks None = 0, [Description("Add image effects")] AddImageEffects = 1, - [Description("Add watermark")] - AddWatermark = 1 << 1, [Description("Annotate image")] - AnnotateImage = 1 << 2, + AnnotateImage = 1 << 1, [Description("Copy image to clipboard")] - CopyImageToClipboard = 1 << 3, + CopyImageToClipboard = 1 << 2, [Description("Print image")] - SendImageToPrinter = 1 << 4, + SendImageToPrinter = 1 << 3, [Description("Save image to file")] - SaveImageToFile = 1 << 5, + SaveImageToFile = 1 << 4, [Description("Save image to file as...")] - SaveImageToFileWithDialog = 1 << 6, + SaveImageToFileWithDialog = 1 << 5, [Description("Save thumbnail image to file")] - SaveThumbnailImageToFile = 1 << 7, + SaveThumbnailImageToFile = 1 << 6, [Description("Copy file to clipboard")] - CopyFileToClipboard = 1 << 8, + CopyFileToClipboard = 1 << 7, [Description("Copy file path to clipboard")] - CopyFilePathToClipboard = 1 << 9, + CopyFilePathToClipboard = 1 << 8, [Description("Perform actions")] - PerformActions = 1 << 10, + PerformActions = 1 << 9, [Description("Upload image to host")] - UploadImageToHost = 1 << 11, + UploadImageToHost = 1 << 10, [Description("Delete file locally")] - DeleteFile = 1 << 12 + DeleteFile = 1 << 11 } [Flags] diff --git a/ShareX/Forms/TaskSettingsForm.Designer.cs b/ShareX/Forms/TaskSettingsForm.Designer.cs index f8482e658..a559cd13d 100644 --- a/ShareX/Forms/TaskSettingsForm.Designer.cs +++ b/ShareX/Forms/TaskSettingsForm.Designer.cs @@ -42,12 +42,16 @@ private void InitializeComponent() this.tpTask = new System.Windows.Forms.TabPage(); this.chkOverrideFTP = new System.Windows.Forms.CheckBox(); this.cboFTPaccounts = new System.Windows.Forms.ComboBox(); + this.btnAfterCapture = new HelpersLib.MenuButton(); + this.btnAfterUpload = new HelpersLib.MenuButton(); + this.btnDestinations = new HelpersLib.MenuButton(); this.cmsDestinations = new System.Windows.Forms.ContextMenuStrip(this.components); this.tsmiImageUploaders = new System.Windows.Forms.ToolStripMenuItem(); this.tsmiTextUploaders = new System.Windows.Forms.ToolStripMenuItem(); this.tsmiFileUploaders = new System.Windows.Forms.ToolStripMenuItem(); this.tsmiURLShorteners = new System.Windows.Forms.ToolStripMenuItem(); this.tsmiURLSharingServices = new System.Windows.Forms.ToolStripMenuItem(); + this.btnTask = new HelpersLib.MenuButton(); this.tpGeneral = new System.Windows.Forms.TabPage(); this.panelGeneral = new System.Windows.Forms.Panel(); this.chkShowBeforeUploadForm = new System.Windows.Forms.CheckBox(); @@ -77,11 +81,10 @@ private void InitializeComponent() this.nudUseImageFormat2After = new System.Windows.Forms.NumericUpDown(); this.lblUseImageFormat2After = new System.Windows.Forms.Label(); this.tpEffects = new System.Windows.Forms.TabPage(); - this.gbImageEffects = new System.Windows.Forms.GroupBox(); + this.lblImageEffectsNote = new System.Windows.Forms.Label(); this.chkShowImageEffectsWindowAfterCapture = new System.Windows.Forms.CheckBox(); this.cbImageEffectOnlyRegionCapture = new System.Windows.Forms.CheckBox(); this.btnImageEffects = new System.Windows.Forms.Button(); - this.btnWatermarkSettings = new System.Windows.Forms.Button(); this.tpThumbnail = new System.Windows.Forms.TabPage(); this.cbThumbnailIfSmaller = new System.Windows.Forms.CheckBox(); this.lblThumbnailNamePreview = new System.Windows.Forms.Label(); @@ -130,6 +133,11 @@ private void InitializeComponent() this.pActions = new System.Windows.Forms.Panel(); this.btnActionsDuplicate = new System.Windows.Forms.Button(); this.btnActionsAdd = new System.Windows.Forms.Button(); + this.lvActions = new HelpersLib.MyListView(); + this.chActionsName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); + this.chActionsPath = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); + this.chActionsArgs = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); + this.chActionsExtensions = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.btnActionsEdit = new System.Windows.Forms.Button(); this.btnActionsRemove = new System.Windows.Forms.Button(); this.chkUseDefaultActions = new System.Windows.Forms.CheckBox(); @@ -164,15 +172,6 @@ private void InitializeComponent() this.tpAdvanced = new System.Windows.Forms.TabPage(); this.pgTaskSettings = new System.Windows.Forms.PropertyGrid(); this.chkUseDefaultAdvancedSettings = new System.Windows.Forms.CheckBox(); - this.btnAfterCapture = new HelpersLib.MenuButton(); - this.btnAfterUpload = new HelpersLib.MenuButton(); - this.btnDestinations = new HelpersLib.MenuButton(); - this.btnTask = new HelpersLib.MenuButton(); - this.lvActions = new HelpersLib.MyListView(); - this.chActionsName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); - this.chActionsPath = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); - this.chActionsArgs = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); - this.chActionsExtensions = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.tcHotkeySettings.SuspendLayout(); this.tpTask.SuspendLayout(); this.cmsDestinations.SuspendLayout(); @@ -184,7 +183,6 @@ private void InitializeComponent() ((System.ComponentModel.ISupportInitialize)(this.nudImageJPEGQuality)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudUseImageFormat2After)).BeginInit(); this.tpEffects.SuspendLayout(); - this.gbImageEffects.SuspendLayout(); this.tpThumbnail.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudThumbnailHeight)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudThumbnailWidth)).BeginInit(); @@ -213,13 +211,13 @@ private void InitializeComponent() // // cmsAfterCapture // - this.cmsAfterCapture.Name = "cmsAfterCapture"; resources.ApplyResources(this.cmsAfterCapture, "cmsAfterCapture"); + this.cmsAfterCapture.Name = "cmsAfterCapture"; // // cmsAfterUpload // - this.cmsAfterUpload.Name = "cmsAfterCapture"; resources.ApplyResources(this.cmsAfterUpload, "cmsAfterUpload"); + this.cmsAfterUpload.Name = "cmsAfterCapture"; // // cbUseDefaultAfterCaptureSettings // @@ -255,11 +253,12 @@ private void InitializeComponent() // // cmsTask // - this.cmsTask.Name = "cmsAfterCapture"; resources.ApplyResources(this.cmsTask, "cmsTask"); + this.cmsTask.Name = "cmsAfterCapture"; // // tcHotkeySettings // + resources.ApplyResources(this.tcHotkeySettings, "tcHotkeySettings"); this.tcHotkeySettings.Controls.Add(this.tpTask); this.tcHotkeySettings.Controls.Add(this.tpGeneral); this.tcHotkeySettings.Controls.Add(this.tpImage); @@ -269,12 +268,12 @@ private void InitializeComponent() this.tcHotkeySettings.Controls.Add(this.tpUpload); this.tcHotkeySettings.Controls.Add(this.tpIndexer); this.tcHotkeySettings.Controls.Add(this.tpAdvanced); - resources.ApplyResources(this.tcHotkeySettings, "tcHotkeySettings"); this.tcHotkeySettings.Name = "tcHotkeySettings"; this.tcHotkeySettings.SelectedIndex = 0; // // tpTask // + resources.ApplyResources(this.tpTask, "tpTask"); this.tpTask.Controls.Add(this.chkOverrideFTP); this.tpTask.Controls.Add(this.cboFTPaccounts); this.tpTask.Controls.Add(this.tbDescription); @@ -286,7 +285,6 @@ private void InitializeComponent() this.tpTask.Controls.Add(this.cbUseDefaultAfterUploadSettings); this.tpTask.Controls.Add(this.cbUseDefaultDestinationSettings); this.tpTask.Controls.Add(this.lblDescription); - resources.ApplyResources(this.tpTask, "tpTask"); this.tpTask.Name = "tpTask"; this.tpTask.UseVisualStyleBackColor = true; // @@ -299,14 +297,39 @@ private void InitializeComponent() // // cboFTPaccounts // - this.cboFTPaccounts.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; resources.ApplyResources(this.cboFTPaccounts, "cboFTPaccounts"); + this.cboFTPaccounts.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cboFTPaccounts.FormattingEnabled = true; this.cboFTPaccounts.Name = "cboFTPaccounts"; this.cboFTPaccounts.SelectedIndexChanged += new System.EventHandler(this.cboFTPaccounts_SelectedIndexChanged); // + // btnAfterCapture + // + resources.ApplyResources(this.btnAfterCapture, "btnAfterCapture"); + this.btnAfterCapture.Menu = this.cmsAfterCapture; + this.btnAfterCapture.Name = "btnAfterCapture"; + this.btnAfterCapture.UseMnemonic = false; + this.btnAfterCapture.UseVisualStyleBackColor = true; + // + // btnAfterUpload + // + resources.ApplyResources(this.btnAfterUpload, "btnAfterUpload"); + this.btnAfterUpload.Menu = this.cmsAfterUpload; + this.btnAfterUpload.Name = "btnAfterUpload"; + this.btnAfterUpload.UseMnemonic = false; + this.btnAfterUpload.UseVisualStyleBackColor = true; + // + // btnDestinations + // + resources.ApplyResources(this.btnDestinations, "btnDestinations"); + this.btnDestinations.Menu = this.cmsDestinations; + this.btnDestinations.Name = "btnDestinations"; + this.btnDestinations.UseMnemonic = false; + this.btnDestinations.UseVisualStyleBackColor = true; + // // cmsDestinations // + resources.ApplyResources(this.cmsDestinations, "cmsDestinations"); this.cmsDestinations.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsmiImageUploaders, this.tsmiTextUploaders, @@ -314,48 +337,56 @@ private void InitializeComponent() this.tsmiURLShorteners, this.tsmiURLSharingServices}); this.cmsDestinations.Name = "cmsDestinations"; - resources.ApplyResources(this.cmsDestinations, "cmsDestinations"); // // tsmiImageUploaders // + resources.ApplyResources(this.tsmiImageUploaders, "tsmiImageUploaders"); this.tsmiImageUploaders.Image = global::ShareX.Properties.Resources.image; this.tsmiImageUploaders.Name = "tsmiImageUploaders"; - resources.ApplyResources(this.tsmiImageUploaders, "tsmiImageUploaders"); // // tsmiTextUploaders // + resources.ApplyResources(this.tsmiTextUploaders, "tsmiTextUploaders"); this.tsmiTextUploaders.Image = global::ShareX.Properties.Resources.notebook; this.tsmiTextUploaders.Name = "tsmiTextUploaders"; - resources.ApplyResources(this.tsmiTextUploaders, "tsmiTextUploaders"); // // tsmiFileUploaders // + resources.ApplyResources(this.tsmiFileUploaders, "tsmiFileUploaders"); this.tsmiFileUploaders.Image = global::ShareX.Properties.Resources.application_block; this.tsmiFileUploaders.Name = "tsmiFileUploaders"; - resources.ApplyResources(this.tsmiFileUploaders, "tsmiFileUploaders"); // // tsmiURLShorteners // + resources.ApplyResources(this.tsmiURLShorteners, "tsmiURLShorteners"); this.tsmiURLShorteners.Image = global::ShareX.Properties.Resources.edit_scale; this.tsmiURLShorteners.Name = "tsmiURLShorteners"; - resources.ApplyResources(this.tsmiURLShorteners, "tsmiURLShorteners"); // // tsmiURLSharingServices // + resources.ApplyResources(this.tsmiURLSharingServices, "tsmiURLSharingServices"); this.tsmiURLSharingServices.Image = global::ShareX.Properties.Resources.globe_share; this.tsmiURLSharingServices.Name = "tsmiURLSharingServices"; - resources.ApplyResources(this.tsmiURLSharingServices, "tsmiURLSharingServices"); + // + // btnTask + // + resources.ApplyResources(this.btnTask, "btnTask"); + this.btnTask.Menu = this.cmsTask; + this.btnTask.Name = "btnTask"; + this.btnTask.UseMnemonic = false; + this.btnTask.UseVisualStyleBackColor = true; // // tpGeneral // + resources.ApplyResources(this.tpGeneral, "tpGeneral"); this.tpGeneral.Controls.Add(this.panelGeneral); this.tpGeneral.Controls.Add(this.chkUseDefaultGeneralSettings); - resources.ApplyResources(this.tpGeneral, "tpGeneral"); this.tpGeneral.Name = "tpGeneral"; this.tpGeneral.UseVisualStyleBackColor = true; // // panelGeneral // + resources.ApplyResources(this.panelGeneral, "panelGeneral"); this.panelGeneral.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.panelGeneral.Controls.Add(this.chkShowBeforeUploadForm); this.panelGeneral.Controls.Add(this.lblAfterTaskNotification); @@ -365,7 +396,6 @@ private void InitializeComponent() this.panelGeneral.Controls.Add(this.cbPlaySoundAfterUpload); this.panelGeneral.Controls.Add(this.cbHistorySave); this.panelGeneral.Controls.Add(this.cbPlaySoundAfterCapture); - resources.ApplyResources(this.panelGeneral, "panelGeneral"); this.panelGeneral.Name = "panelGeneral"; // // chkShowBeforeUploadForm @@ -382,9 +412,9 @@ private void InitializeComponent() // // cboPopUpNotification // + resources.ApplyResources(this.cboPopUpNotification, "cboPopUpNotification"); this.cboPopUpNotification.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cboPopUpNotification.FormattingEnabled = true; - resources.ApplyResources(this.cboPopUpNotification, "cboPopUpNotification"); this.cboPopUpNotification.Name = "cboPopUpNotification"; this.cboPopUpNotification.SelectedIndexChanged += new System.EventHandler(this.cboPopUpNotification_SelectedIndexChanged); // @@ -434,23 +464,24 @@ private void InitializeComponent() // // tpImage // + resources.ApplyResources(this.tpImage, "tpImage"); this.tpImage.Controls.Add(this.tcImage); this.tpImage.Controls.Add(this.chkUseDefaultImageSettings); - resources.ApplyResources(this.tpImage, "tpImage"); this.tpImage.Name = "tpImage"; this.tpImage.UseVisualStyleBackColor = true; // // tcImage // + resources.ApplyResources(this.tcImage, "tcImage"); this.tcImage.Controls.Add(this.tpQuality); this.tcImage.Controls.Add(this.tpEffects); this.tcImage.Controls.Add(this.tpThumbnail); - resources.ApplyResources(this.tcImage, "tcImage"); this.tcImage.Name = "tcImage"; this.tcImage.SelectedIndex = 0; // // tpQuality // + resources.ApplyResources(this.tpQuality, "tpQuality"); this.tpQuality.Controls.Add(this.cbImageFileExist); this.tpQuality.Controls.Add(this.lblImageFileExist); this.tpQuality.Controls.Add(this.lblImageFormat); @@ -465,15 +496,14 @@ private void InitializeComponent() this.tpQuality.Controls.Add(this.lblImageFormat2); this.tpQuality.Controls.Add(this.nudUseImageFormat2After); this.tpQuality.Controls.Add(this.lblUseImageFormat2After); - resources.ApplyResources(this.tpQuality, "tpQuality"); this.tpQuality.Name = "tpQuality"; this.tpQuality.UseVisualStyleBackColor = true; // // cbImageFileExist // + resources.ApplyResources(this.cbImageFileExist, "cbImageFileExist"); this.cbImageFileExist.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cbImageFileExist.FormattingEnabled = true; - resources.ApplyResources(this.cbImageFileExist, "cbImageFileExist"); this.cbImageFileExist.Name = "cbImageFileExist"; this.cbImageFileExist.SelectedIndexChanged += new System.EventHandler(this.cbImageFileExist_SelectedIndexChanged); // @@ -494,6 +524,7 @@ private void InitializeComponent() // // cbImageFormat // + resources.ApplyResources(this.cbImageFormat, "cbImageFormat"); this.cbImageFormat.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cbImageFormat.FormattingEnabled = true; this.cbImageFormat.Items.AddRange(new object[] { @@ -502,7 +533,6 @@ private void InitializeComponent() resources.GetString("cbImageFormat.Items2"), resources.GetString("cbImageFormat.Items3"), resources.GetString("cbImageFormat.Items4")}); - resources.ApplyResources(this.cbImageFormat, "cbImageFormat"); this.cbImageFormat.Name = "cbImageFormat"; this.cbImageFormat.SelectedIndexChanged += new System.EventHandler(this.cbImageFormat_SelectedIndexChanged); // @@ -518,9 +548,9 @@ private void InitializeComponent() // // cbImageGIFQuality // + resources.ApplyResources(this.cbImageGIFQuality, "cbImageGIFQuality"); this.cbImageGIFQuality.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cbImageGIFQuality.FormattingEnabled = true; - resources.ApplyResources(this.cbImageGIFQuality, "cbImageGIFQuality"); this.cbImageGIFQuality.Name = "cbImageGIFQuality"; this.cbImageGIFQuality.SelectedIndexChanged += new System.EventHandler(this.cbImageGIFQuality_SelectedIndexChanged); // @@ -531,6 +561,7 @@ private void InitializeComponent() // // cbImageFormat2 // + resources.ApplyResources(this.cbImageFormat2, "cbImageFormat2"); this.cbImageFormat2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cbImageFormat2.FormattingEnabled = true; this.cbImageFormat2.Items.AddRange(new object[] { @@ -539,7 +570,6 @@ private void InitializeComponent() resources.GetString("cbImageFormat2.Items2"), resources.GetString("cbImageFormat2.Items3"), resources.GetString("cbImageFormat2.Items4")}); - resources.ApplyResources(this.cbImageFormat2, "cbImageFormat2"); this.cbImageFormat2.Name = "cbImageFormat2"; this.cbImageFormat2.SelectedIndexChanged += new System.EventHandler(this.cbImageFormat2_SelectedIndexChanged); // @@ -582,20 +612,18 @@ private void InitializeComponent() // // tpEffects // - this.tpEffects.Controls.Add(this.gbImageEffects); - this.tpEffects.Controls.Add(this.btnWatermarkSettings); resources.ApplyResources(this.tpEffects, "tpEffects"); + this.tpEffects.Controls.Add(this.lblImageEffectsNote); + this.tpEffects.Controls.Add(this.chkShowImageEffectsWindowAfterCapture); + this.tpEffects.Controls.Add(this.cbImageEffectOnlyRegionCapture); + this.tpEffects.Controls.Add(this.btnImageEffects); this.tpEffects.Name = "tpEffects"; this.tpEffects.UseVisualStyleBackColor = true; // - // gbImageEffects + // lblImageEffectsNote // - this.gbImageEffects.Controls.Add(this.chkShowImageEffectsWindowAfterCapture); - this.gbImageEffects.Controls.Add(this.cbImageEffectOnlyRegionCapture); - this.gbImageEffects.Controls.Add(this.btnImageEffects); - resources.ApplyResources(this.gbImageEffects, "gbImageEffects"); - this.gbImageEffects.Name = "gbImageEffects"; - this.gbImageEffects.TabStop = false; + resources.ApplyResources(this.lblImageEffectsNote, "lblImageEffectsNote"); + this.lblImageEffectsNote.Name = "lblImageEffectsNote"; // // chkShowImageEffectsWindowAfterCapture // @@ -618,15 +646,9 @@ private void InitializeComponent() this.btnImageEffects.UseVisualStyleBackColor = true; this.btnImageEffects.Click += new System.EventHandler(this.btnImageEffects_Click); // - // btnWatermarkSettings - // - resources.ApplyResources(this.btnWatermarkSettings, "btnWatermarkSettings"); - this.btnWatermarkSettings.Name = "btnWatermarkSettings"; - this.btnWatermarkSettings.UseVisualStyleBackColor = true; - this.btnWatermarkSettings.Click += new System.EventHandler(this.btnWatermarkSettings_Click); - // // tpThumbnail // + resources.ApplyResources(this.tpThumbnail, "tpThumbnail"); this.tpThumbnail.Controls.Add(this.cbThumbnailIfSmaller); this.tpThumbnail.Controls.Add(this.lblThumbnailNamePreview); this.tpThumbnail.Controls.Add(this.lblThumbnailName); @@ -635,7 +657,6 @@ private void InitializeComponent() this.tpThumbnail.Controls.Add(this.lblThumbnailWidth); this.tpThumbnail.Controls.Add(this.nudThumbnailHeight); this.tpThumbnail.Controls.Add(this.nudThumbnailWidth); - resources.ApplyResources(this.tpThumbnail, "tpThumbnail"); this.tpThumbnail.Name = "tpThumbnail"; this.tpThumbnail.UseVisualStyleBackColor = true; // @@ -705,24 +726,25 @@ private void InitializeComponent() // // tpCapture // + resources.ApplyResources(this.tpCapture, "tpCapture"); this.tpCapture.Controls.Add(this.tcCapture); this.tpCapture.Controls.Add(this.chkUseDefaultCaptureSettings); - resources.ApplyResources(this.tpCapture, "tpCapture"); this.tpCapture.Name = "tpCapture"; this.tpCapture.UseVisualStyleBackColor = true; // // tcCapture // + resources.ApplyResources(this.tcCapture, "tcCapture"); this.tcCapture.Controls.Add(this.tpCaptureGeneral); this.tcCapture.Controls.Add(this.tpRegionCapture); this.tcCapture.Controls.Add(this.tpRectangleAnnotate); this.tcCapture.Controls.Add(this.tpScreenRecorder); - resources.ApplyResources(this.tcCapture, "tcCapture"); this.tcCapture.Name = "tcCapture"; this.tcCapture.SelectedIndex = 0; // // tpCaptureGeneral // + resources.ApplyResources(this.tpCaptureGeneral, "tpCaptureGeneral"); this.tpCaptureGeneral.Controls.Add(this.cbCaptureAutoHideTaskbar); this.tpCaptureGeneral.Controls.Add(this.lblScreenshotDelayInfo); this.tpCaptureGeneral.Controls.Add(this.nudScreenshotDelay); @@ -732,7 +754,6 @@ private void InitializeComponent() this.tpCaptureGeneral.Controls.Add(this.cbCaptureShadow); this.tpCaptureGeneral.Controls.Add(this.cbShowCursor); this.tpCaptureGeneral.Controls.Add(this.cbCaptureTransparent); - resources.ApplyResources(this.tpCaptureGeneral, "tpCaptureGeneral"); this.tpCaptureGeneral.Name = "tpCaptureGeneral"; this.tpCaptureGeneral.UseVisualStyleBackColor = true; // @@ -750,13 +771,13 @@ private void InitializeComponent() // // nudScreenshotDelay // + resources.ApplyResources(this.nudScreenshotDelay, "nudScreenshotDelay"); this.nudScreenshotDelay.DecimalPlaces = 1; this.nudScreenshotDelay.Increment = new decimal(new int[] { 5, 0, 0, 65536}); - resources.ApplyResources(this.nudScreenshotDelay, "nudScreenshotDelay"); this.nudScreenshotDelay.Maximum = new decimal(new int[] { 300, 0, @@ -818,8 +839,8 @@ private void InitializeComponent() // // tpRegionCapture // - this.tpRegionCapture.Controls.Add(this.pgRegionCapture); resources.ApplyResources(this.tpRegionCapture, "tpRegionCapture"); + this.tpRegionCapture.Controls.Add(this.pgRegionCapture); this.tpRegionCapture.Name = "tpRegionCapture"; this.tpRegionCapture.UseVisualStyleBackColor = true; // @@ -832,8 +853,8 @@ private void InitializeComponent() // // tpRectangleAnnotate // - this.tpRectangleAnnotate.Controls.Add(this.pgRectangleAnnotate); resources.ApplyResources(this.tpRectangleAnnotate, "tpRectangleAnnotate"); + this.tpRectangleAnnotate.Controls.Add(this.pgRectangleAnnotate); this.tpRectangleAnnotate.Name = "tpRectangleAnnotate"; this.tpRectangleAnnotate.UseVisualStyleBackColor = true; // @@ -846,6 +867,7 @@ private void InitializeComponent() // // tpScreenRecorder // + resources.ApplyResources(this.tpScreenRecorder, "tpScreenRecorder"); this.tpScreenRecorder.Controls.Add(this.cbScreenRecordAutoDisableAero); this.tpScreenRecorder.Controls.Add(this.lblScreenRecorderFixedDuration); this.tpScreenRecorder.Controls.Add(this.nudScreenRecordFPS); @@ -862,7 +884,6 @@ private void InitializeComponent() this.tpScreenRecorder.Controls.Add(this.cbScreenRecorderFixedDuration); this.tpScreenRecorder.Controls.Add(this.nudGIFFPS); this.tpScreenRecorder.Controls.Add(this.lblGIFPS); - resources.ApplyResources(this.tpScreenRecorder, "tpScreenRecorder"); this.tpScreenRecorder.Name = "tpScreenRecorder"; this.tpScreenRecorder.UseVisualStyleBackColor = true; // @@ -927,21 +948,21 @@ private void InitializeComponent() // // cboEncoder // + resources.ApplyResources(this.cboEncoder, "cboEncoder"); this.cboEncoder.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cboEncoder.FormattingEnabled = true; - resources.ApplyResources(this.cboEncoder, "cboEncoder"); this.cboEncoder.Name = "cboEncoder"; this.cboEncoder.SelectedIndexChanged += new System.EventHandler(this.cboEncoder_SelectedIndexChanged); // // nudScreenRecorderDuration // + resources.ApplyResources(this.nudScreenRecorderDuration, "nudScreenRecorderDuration"); this.nudScreenRecorderDuration.DecimalPlaces = 1; this.nudScreenRecorderDuration.Increment = new decimal(new int[] { 5, 0, 0, 65536}); - resources.ApplyResources(this.nudScreenRecorderDuration, "nudScreenRecorderDuration"); this.nudScreenRecorderDuration.Maximum = new decimal(new int[] { 60, 0, @@ -967,13 +988,13 @@ private void InitializeComponent() // // nudScreenRecorderStartDelay // + resources.ApplyResources(this.nudScreenRecorderStartDelay, "nudScreenRecorderStartDelay"); this.nudScreenRecorderStartDelay.DecimalPlaces = 1; this.nudScreenRecorderStartDelay.Increment = new decimal(new int[] { 5, 0, 0, 65536}); - resources.ApplyResources(this.nudScreenRecorderStartDelay, "nudScreenRecorderStartDelay"); this.nudScreenRecorderStartDelay.Maximum = new decimal(new int[] { 60, 0, @@ -989,9 +1010,9 @@ private void InitializeComponent() // // cbScreenRecorderOutput // + resources.ApplyResources(this.cbScreenRecorderOutput, "cbScreenRecorderOutput"); this.cbScreenRecorderOutput.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cbScreenRecorderOutput.FormattingEnabled = true; - resources.ApplyResources(this.cbScreenRecorderOutput, "cbScreenRecorderOutput"); this.cbScreenRecorderOutput.Name = "cbScreenRecorderOutput"; this.cbScreenRecorderOutput.SelectedIndexChanged += new System.EventHandler(this.cbScreenRecorderOutput_SelectedIndexChanged); // @@ -1044,20 +1065,20 @@ private void InitializeComponent() // // tpActions // + resources.ApplyResources(this.tpActions, "tpActions"); this.tpActions.Controls.Add(this.pActions); this.tpActions.Controls.Add(this.chkUseDefaultActions); - resources.ApplyResources(this.tpActions, "tpActions"); this.tpActions.Name = "tpActions"; this.tpActions.UseVisualStyleBackColor = true; // // pActions // + resources.ApplyResources(this.pActions, "pActions"); this.pActions.Controls.Add(this.btnActionsDuplicate); this.pActions.Controls.Add(this.btnActionsAdd); this.pActions.Controls.Add(this.lvActions); this.pActions.Controls.Add(this.btnActionsEdit); this.pActions.Controls.Add(this.btnActionsRemove); - resources.ApplyResources(this.pActions, "pActions"); this.pActions.Name = "pActions"; // // btnActionsDuplicate @@ -1074,6 +1095,39 @@ private void InitializeComponent() this.btnActionsAdd.UseVisualStyleBackColor = true; this.btnActionsAdd.Click += new System.EventHandler(this.btnActionsAdd_Click); // + // lvActions + // + resources.ApplyResources(this.lvActions, "lvActions"); + this.lvActions.AutoFillColumn = true; + this.lvActions.CheckBoxes = true; + this.lvActions.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { + this.chActionsName, + this.chActionsPath, + this.chActionsArgs, + this.chActionsExtensions}); + this.lvActions.FullRowSelect = true; + this.lvActions.MultiSelect = false; + this.lvActions.Name = "lvActions"; + this.lvActions.UseCompatibleStateImageBehavior = false; + this.lvActions.View = System.Windows.Forms.View.Details; + this.lvActions.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.lvActions_ItemChecked); + // + // chActionsName + // + resources.ApplyResources(this.chActionsName, "chActionsName"); + // + // chActionsPath + // + resources.ApplyResources(this.chActionsPath, "chActionsPath"); + // + // chActionsArgs + // + resources.ApplyResources(this.chActionsArgs, "chActionsArgs"); + // + // chActionsExtensions + // + resources.ApplyResources(this.chActionsExtensions, "chActionsExtensions"); + // // btnActionsEdit // resources.ApplyResources(this.btnActionsEdit, "btnActionsEdit"); @@ -1099,11 +1153,11 @@ private void InitializeComponent() // // tpWatchFolders // + resources.ApplyResources(this.tpWatchFolders, "tpWatchFolders"); this.tpWatchFolders.Controls.Add(this.cbWatchFolderEnabled); this.tpWatchFolders.Controls.Add(this.lvWatchFolderList); this.tpWatchFolders.Controls.Add(this.btnWatchFolderRemove); this.tpWatchFolders.Controls.Add(this.btnWatchFolderAdd); - resources.ApplyResources(this.tpWatchFolders, "tpWatchFolders"); this.tpWatchFolders.Name = "tpWatchFolders"; this.tpWatchFolders.UseVisualStyleBackColor = true; // @@ -1116,12 +1170,12 @@ private void InitializeComponent() // // lvWatchFolderList // + resources.ApplyResources(this.lvWatchFolderList, "lvWatchFolderList"); this.lvWatchFolderList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.chWatchFolderFolderPath, this.chWatchFolderFilter, this.chWatchFolderIncludeSubdirectories}); this.lvWatchFolderList.FullRowSelect = true; - resources.ApplyResources(this.lvWatchFolderList, "lvWatchFolderList"); this.lvWatchFolderList.Name = "lvWatchFolderList"; this.lvWatchFolderList.UseCompatibleStateImageBehavior = false; this.lvWatchFolderList.View = System.Windows.Forms.View.Details; @@ -1155,22 +1209,23 @@ private void InitializeComponent() // // tpUpload // + resources.ApplyResources(this.tpUpload, "tpUpload"); this.tpUpload.Controls.Add(this.tcUpload); this.tpUpload.Controls.Add(this.chkUseDefaultUploadSettings); - resources.ApplyResources(this.tpUpload, "tpUpload"); this.tpUpload.Name = "tpUpload"; this.tpUpload.UseVisualStyleBackColor = true; // // tcUpload // + resources.ApplyResources(this.tcUpload, "tcUpload"); this.tcUpload.Controls.Add(this.tpUploadNamePattern); this.tcUpload.Controls.Add(this.tpUploadClipboard); - resources.ApplyResources(this.tcUpload, "tcUpload"); this.tcUpload.Name = "tcUpload"; this.tcUpload.SelectedIndex = 0; // // tpUploadNamePattern // + resources.ApplyResources(this.tpUploadNamePattern, "tpUploadNamePattern"); this.tpUploadNamePattern.Controls.Add(this.cbFileUploadUseNamePattern); this.tpUploadNamePattern.Controls.Add(this.lblNameFormatPattern); this.tpUploadNamePattern.Controls.Add(this.txtNameFormatPatternActiveWindow); @@ -1179,7 +1234,6 @@ private void InitializeComponent() this.tpUploadNamePattern.Controls.Add(this.txtNameFormatPattern); this.tpUploadNamePattern.Controls.Add(this.lblNameFormatPatternPreview); this.tpUploadNamePattern.Controls.Add(this.lblNameFormatPatternPreviewActiveWindow); - resources.ApplyResources(this.tpUploadNamePattern, "tpUploadNamePattern"); this.tpUploadNamePattern.Name = "tpUploadNamePattern"; this.tpUploadNamePattern.UseVisualStyleBackColor = true; // @@ -1231,11 +1285,11 @@ private void InitializeComponent() // // tpUploadClipboard // + resources.ApplyResources(this.tpUploadClipboard, "tpUploadClipboard"); this.tpUploadClipboard.Controls.Add(this.cbClipboardUploadShareURL); this.tpUploadClipboard.Controls.Add(this.chkClipboardUploadURLContents); this.tpUploadClipboard.Controls.Add(this.cbClipboardUploadAutoIndexFolder); this.tpUploadClipboard.Controls.Add(this.cbClipboardUploadShortenURL); - resources.ApplyResources(this.tpUploadClipboard, "tpUploadClipboard"); this.tpUploadClipboard.Name = "tpUploadClipboard"; this.tpUploadClipboard.UseVisualStyleBackColor = true; // @@ -1278,9 +1332,9 @@ private void InitializeComponent() // // tpIndexer // + resources.ApplyResources(this.tpIndexer, "tpIndexer"); this.tpIndexer.Controls.Add(this.pgIndexerConfig); this.tpIndexer.Controls.Add(this.chkUseDefaultIndexerSettings); - resources.ApplyResources(this.tpIndexer, "tpIndexer"); this.tpIndexer.Name = "tpIndexer"; this.tpIndexer.UseVisualStyleBackColor = true; // @@ -1302,9 +1356,9 @@ private void InitializeComponent() // // tpAdvanced // + resources.ApplyResources(this.tpAdvanced, "tpAdvanced"); this.tpAdvanced.Controls.Add(this.pgTaskSettings); this.tpAdvanced.Controls.Add(this.chkUseDefaultAdvancedSettings); - resources.ApplyResources(this.tpAdvanced, "tpAdvanced"); this.tpAdvanced.Name = "tpAdvanced"; this.tpAdvanced.UseVisualStyleBackColor = true; // @@ -1324,71 +1378,6 @@ private void InitializeComponent() this.chkUseDefaultAdvancedSettings.UseVisualStyleBackColor = true; this.chkUseDefaultAdvancedSettings.CheckedChanged += new System.EventHandler(this.chkUseDefaultAdvancedSettings_CheckedChanged); // - // btnAfterCapture - // - resources.ApplyResources(this.btnAfterCapture, "btnAfterCapture"); - this.btnAfterCapture.Menu = this.cmsAfterCapture; - this.btnAfterCapture.Name = "btnAfterCapture"; - this.btnAfterCapture.UseMnemonic = false; - this.btnAfterCapture.UseVisualStyleBackColor = true; - // - // btnAfterUpload - // - resources.ApplyResources(this.btnAfterUpload, "btnAfterUpload"); - this.btnAfterUpload.Menu = this.cmsAfterUpload; - this.btnAfterUpload.Name = "btnAfterUpload"; - this.btnAfterUpload.UseMnemonic = false; - this.btnAfterUpload.UseVisualStyleBackColor = true; - // - // btnDestinations - // - resources.ApplyResources(this.btnDestinations, "btnDestinations"); - this.btnDestinations.Menu = this.cmsDestinations; - this.btnDestinations.Name = "btnDestinations"; - this.btnDestinations.UseMnemonic = false; - this.btnDestinations.UseVisualStyleBackColor = true; - // - // btnTask - // - resources.ApplyResources(this.btnTask, "btnTask"); - this.btnTask.Menu = this.cmsTask; - this.btnTask.Name = "btnTask"; - this.btnTask.UseMnemonic = false; - this.btnTask.UseVisualStyleBackColor = true; - // - // lvActions - // - resources.ApplyResources(this.lvActions, "lvActions"); - this.lvActions.AutoFillColumn = true; - this.lvActions.CheckBoxes = true; - this.lvActions.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { - this.chActionsName, - this.chActionsPath, - this.chActionsArgs, - this.chActionsExtensions}); - this.lvActions.FullRowSelect = true; - this.lvActions.MultiSelect = false; - this.lvActions.Name = "lvActions"; - this.lvActions.UseCompatibleStateImageBehavior = false; - this.lvActions.View = System.Windows.Forms.View.Details; - this.lvActions.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.lvActions_ItemChecked); - // - // chActionsName - // - resources.ApplyResources(this.chActionsName, "chActionsName"); - // - // chActionsPath - // - resources.ApplyResources(this.chActionsPath, "chActionsPath"); - // - // chActionsArgs - // - resources.ApplyResources(this.chActionsArgs, "chActionsArgs"); - // - // chActionsExtensions - // - resources.ApplyResources(this.chActionsExtensions, "chActionsExtensions"); - // // TaskSettingsForm // resources.ApplyResources(this, "$this"); @@ -1415,8 +1404,7 @@ private void InitializeComponent() ((System.ComponentModel.ISupportInitialize)(this.nudImageJPEGQuality)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudUseImageFormat2After)).EndInit(); this.tpEffects.ResumeLayout(false); - this.gbImageEffects.ResumeLayout(false); - this.gbImageEffects.PerformLayout(); + this.tpEffects.PerformLayout(); this.tpThumbnail.ResumeLayout(false); this.tpThumbnail.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudThumbnailHeight)).EndInit(); @@ -1488,7 +1476,6 @@ private void InitializeComponent() private System.Windows.Forms.NumericUpDown nudUseImageFormat2After; private System.Windows.Forms.Label lblUseImageFormat2After; private System.Windows.Forms.TabPage tpEffects; - private System.Windows.Forms.Button btnWatermarkSettings; private System.Windows.Forms.TabControl tcCapture; private System.Windows.Forms.TabPage tpCaptureGeneral; private System.Windows.Forms.CheckBox cbCaptureAutoHideTaskbar; @@ -1562,7 +1549,6 @@ private void InitializeComponent() private System.Windows.Forms.Label lblScreenRecorderStartDelay; private System.Windows.Forms.Button btnImageEffects; private System.Windows.Forms.CheckBox cbImageEffectOnlyRegionCapture; - private System.Windows.Forms.GroupBox gbImageEffects; private System.Windows.Forms.CheckBox chkShowImageEffectsWindowAfterCapture; private System.Windows.Forms.CheckBox chkOverrideFTP; private System.Windows.Forms.ComboBox cboFTPaccounts; @@ -1601,6 +1587,7 @@ private void InitializeComponent() private System.Windows.Forms.PropertyGrid pgRectangleAnnotate; private System.Windows.Forms.ColumnHeader chActionsExtensions; private System.Windows.Forms.Button btnActionsDuplicate; + private System.Windows.Forms.Label lblImageEffectsNote; diff --git a/ShareX/Forms/TaskSettingsForm.cs b/ShareX/Forms/TaskSettingsForm.cs index 1587ad834..fe70a8299 100644 --- a/ShareX/Forms/TaskSettingsForm.cs +++ b/ShareX/Forms/TaskSettingsForm.cs @@ -609,14 +609,6 @@ private void cbImageFileExist_SelectedIndexChanged(object sender, EventArgs e) TaskSettings.ImageSettings.FileExistAction = (FileExistAction)cbImageFileExist.SelectedIndex; } - private void btnWatermarkSettings_Click(object sender, EventArgs e) - { - using (WatermarkForm watermarkForm = new WatermarkForm(TaskSettings.ImageSettings.WatermarkConfig) { Icon = Icon }) - { - watermarkForm.ShowDialog(); - } - } - private void cbImageEffectOnlyRegionCapture_CheckedChanged(object sender, EventArgs e) { TaskSettings.ImageSettings.ImageEffectOnlyRegionCapture = cbImageEffectOnlyRegionCapture.Checked; diff --git a/ShareX/Forms/TaskSettingsForm.de.resx b/ShareX/Forms/TaskSettingsForm.de.resx index dc4b091fc..a121fa16f 100644 --- a/ShareX/Forms/TaskSettingsForm.de.resx +++ b/ShareX/Forms/TaskSettingsForm.de.resx @@ -1,6 +1,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - NoControl - - - - 281, 17 - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + 281, 17 + + Standard "Nach Aufnahme" Einstellungen verwenden - - NoControl - - - 267, 17 - - + + 267, 17 + + Standard "Nach Upload" Einstellungen verwenden - - NoControl - - - 221, 17 - - + + 221, 17 + + Standard "Ziel" Einstellungen verwenden - - NoControl - - - 75, 13 - - + + 75, 13 + + Beschreibung: - - 87, 9 - - - 425, 20 - - - NoControl - - - 208, 17 - - + + 87, 9 + + + 425, 20 + + + 208, 17 + + Standard FTP Account überschreiben: - - 222, 238 - - - 289, 21 - - - NoControl - - + + 222, 238 + + + 289, 21 + + Nach Aufnahme... - - NoControl - - + Nach Upload... - - NoControl - - + + 151, 22 + + + Bild uploader + + + 151, 22 + + + Text uploader + + + 151, 22 + + + Datei uploader + + + 151, 22 + + + URL kürzer + + + 151, 22 + + + Sozial + + + 152, 114 + + Ziele... - - NoControl - - - NoControl - - - 440, 17 - - + + 450, 17 + + "Vor dem Upload" Fenster anzeigen um dynamisch das Ziel vor dem Hochladen zu setzen - - NoControl - - - 131, 13 - - + + 131, 13 + + Wenn aktionen fertig sind: - - 145, 156 - - - 207, 21 - - - NoControl - - - 224, 17 - - + + 145, 156 + + + 207, 21 + + + 224, 17 + + "Nach dem Hochladen" Fenster anzeigen - - NoControl - - - 273, 17 - - + + 273, 17 + + "Aufgaben nach dem Aufnehmen" Fenster anzeigen - - NoControl - - - 159, 17 - - + + 159, 17 + + Sound nach allem abspielen - - NoControl - - - 207, 17 - - + + 207, 17 + + Informationen in den Verlauf speichern - - NoControl - - - 185, 17 - - + + 185, 17 + + Nach Aufnahme Sound abspielen - - NoControl - - + Einstellungen aus Hauptfenster nutzen - + Generell - - 119, 172 - - - 161, 21 - - - NoControl - - - 97, 13 - - + + 119, 172 + + + 161, 21 + + + 97, 13 + + Falls Datei existiert: - - NoControl - - - 56, 13 - - + + 56, 13 + + Bildformat: - - NoControl - - - 306, 112 - - - NoControl - - - NoControl - - - 74, 13 - - + + 306, 112 + + + 141, 13 + + + kB 0 - 5000 (0 = deaktiviert) + + + 74, 13 + + JPEG qualität: - - NoControl - - - 64, 13 - - + + 64, 13 + + GIF qualität: - - 137, 140 - - - NoControl - - - 116, 13 - - + + 137, 140 + + + 116, 13 + + Sekundäres Bildformat: - - 242, 108 - - - NoControl - - - 220, 13 - - + + 242, 108 + + + 220, 13 + + Maximale Bildgröße für sekundäres Bildformat - + Generell - - NoControl - - - 219, 17 - - + + 219, 17 + + Bildeffektsfenster nach Aufnahme zeigen - - NoControl - - - 185, 17 - - + + 185, 17 + + Nur für Auswahlen Effekte nutzen - - NoControl - - + Effekteinstellungen... - - Bildeffekte - - - NoControl - - - Wasserzeichen Einstellungen... - - + Effekte - - NoControl - - - 368, 17 - - + + 368, 17 + + Thumbnail nur erstellen wenn das Bild größer als das Thumbnail selbst ist - - NoControl - - - 52, 13 - - + + 52, 13 + + Vorschau - - NoControl - - - 90, 13 - - + + 90, 13 + + Thumbnail Name: - - NoControl - - - 36, 13 - - + + 36, 13 + + Höhe: - - NoControl - - - 37, 13 - - + + 37, 13 + + Breite: - - NoControl - - + Bildeinstellungen aus Hauptfenster nutzen - + Bilder - - NoControl - - - 318, 17 - - + + 318, 17 + + Taksbar bei Fensteraufnahme ausblenden falls sie überlappen - - NoControl - - - 226, 114 - - - 56, 13 - - + + 226, 114 + + + 56, 13 + + Sekunden - - 162, 110 - - - NoControl - - - 145, 17 - - + + 162, 110 + + + 145, 17 + + Screenshot verzögerung: - - 393, 62 - - - NoControl - - - 243, 17 - - + + 393, 62 + + + 243, 17 + + Fensterleiste bei Fensteraufnahme aufnehmen - - NoControl - - - 371, 17 - - + + 371, 17 + + Fensterschatten aufnehmen (Transparenz muss an sein) Schatten offset: - - NoControl - - - 184, 17 - - + + 184, 17 + + Mauszeiger im Screenshot zeigen - - NoControl - - - 195, 17 - - + + 195, 17 + + Fenster mit Transparenz aufnehmen - + Generell - + Regionenauswahl - + Rechteckbearbeitung - - NoControl - - - 391, 17 - - + + 391, 17 + + Windows Aero während der Aufnahme deaktivieren (Verbessert Performance) - - NoControl - - - 56, 13 - - + + 56, 13 + + Sekunden - - NoControl - - - 81, 13 - - + + 81, 13 + + Aufnahme FPS: - - NoControl - - - 141, 17 - - + + 141, 17 + + CLI nachträglich nutzen: - - NoControl - - + Optionen... - - NoControl - - + Profile... - - 165, 36 - - - 235, 21 - - - NoControl - - - 91, 13 - - + + 165, 36 + + + 235, 21 + + + 91, 13 + + Startverzögerung: - - NoControl - - - 52, 13 - - + + 52, 13 + + Ausgang: - - NoControl - - - 84, 17 - - + + 84, 17 + + Feste länge: - - NoControl - - + Bildschirm Videoaufnahme - - NoControl - - + Aufnahmeeinstellungen aus Hauptfenster nutzen - + Aufnahme - - NoControl - - + Duplizieren - - NoControl - - + Hinzufügen - + Pfad - + Erweiterungen - - NoControl - - + Editieren - - NoControl - - + Entfernen - - NoControl - - + Verfahrenseinstellungen aus Hauptfenster nutzen - + Verfahren - - NoControl - - - 307, 17 - - + + 307, 17 + + Bei neuer Datei im beaufsichtigten Ordner direkt hochladen. - + Ordnerpfad - + Unterordner einbinden - - NoControl - - - 100, 32 - - + + 100, 32 + + Entfernen - - NoControl - - - 86, 23 - - + + 86, 23 + + Hinzufügen... - + Beaufsichtigte Ordner - - NoControl - - - 173, 17 - - + + 173, 17 + + Muster für Dateiuploads nutzen - - NoControl - - - 250, 13 - - + + 250, 13 + + Muster für Aufnahme oder Zwischenablage Upload: - - NoControl - - + Automatische Zahl reseten - - NoControl - - - 139, 13 - - + + 139, 13 + + Muster für Fensteraufnahme - - NoControl - - - 55, 13 - - + + 55, 13 + + Vorschau: - - NoControl - - - 58, 13 - - + + 58, 13 + + Vorschau: - + Namensmuster - - NoControl - - - NoControl - - - NoControl - - - NoControl - - - NoControl - - + + 305, 17 + + + Falls Zwischenablage URL beinhaltet soll sie geteilt werden + + + 443, 17 + + + Falls Zwischenablage Datei URL beinhaltet soll sie gedownloaded und uploaded werden + + + 397, 17 + + + Falls Zwischenablage Ordnerpfad beinhaltet soll dieser Ordner indexiert werden + + + 387, 17 + + + Falls Zwischenablage URL beinhaltet soll der URL Kürzer verwendet werden + + + Zwischenablage + + Uploadeinstellungen aus Hauptfenster nutzen - - NoControl - - + Indexereinstellungen aus Hauptfenster nutzen - - NoControl - - + Erweiterte Einstellungen aus Hauptfenster nutzen - + Erweitert - - NoControl - - + ShareX - Taskeinstellungen - - Task - - - Schwarzweiß - - - Name - - - URL kürzer - - - PNG - - - Args - - - BMP - - - Text uploader - - - Task... - - - Zwischenablage - - - Falls Zwischenablage URL beinhaltet soll der URL Kürzer verwendet werden - - - Filter - - - Thumbnail - - - Sozial - - - Indexer - - - JPEG - - - Falls Zwischenablage Datei URL beinhaltet soll sie gedownloaded und uploaded werden - - - GIF - - - Datei uploader - - - 0 - 100 - - - 256 Farben (8 bit) - - - TIFF - - - BMP - - - GIF - - - TIFF - - - Bild uploader - - - Upload - - - kB 0 - 5000 (0 = deaktiviert) - - - Falls Zwischenablage Ordnerpfad beinhaltet soll dieser Ordner indexiert werden - - - JPEG - - - PNG - - - GIF FPS: - - - Falls Zwischenablage URL beinhaltet soll sie geteilt werden - - - 16 Farben (4 bit) - - - Standard (Schnell) - \ No newline at end of file diff --git a/ShareX/Forms/TaskSettingsForm.resx b/ShareX/Forms/TaskSettingsForm.resx index 67ca13a62..5b771b82b 100644 --- a/ShareX/Forms/TaskSettingsForm.resx +++ b/ShareX/Forms/TaskSettingsForm.resx @@ -117,608 +117,1796 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 17, 17 - - - - 61, 4 - - - cmsAfterCapture - - - System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 160, 17 - - - 61, 4 - - - cmsAfterUpload - - - System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - True - - - - NoControl - - - 8, 70 - - - 193, 17 - - - 4 - - - Use default "After capture" settings - - - cbUseDefaultAfterCaptureSettings - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTask - - - 6 - - - True - - - NoControl - - - 8, 126 - - - 189, 17 - - - 6 - - - Use default "After upload" settings - - - cbUseDefaultAfterUploadSettings - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTask - - - 8 - - - True - - - NoControl - - - 8, 182 - - - 185, 17 - - - 8 - - - Use default "Destination" settings - - - cbUseDefaultDestinationSettings - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTask - - - 9 - - - True - - - NoControl - - - 6, 13 - - - 63, 13 - - - 0 - - - Description: - lblDescription - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + nudScreenRecorderDuration - - tpTask + + Show "Post capture tasks" window after capture is made - - 10 + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 78, 9 - - - 434, 20 - - - 1 - - - tbDescription - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTask - - - 2 - - - 299, 17 - - - 61, 4 - - - cmsTask - - - System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + True - - NoControl + + lblNameFormatPatternPreviewActiveWindow - - 8, 240 + + + 95, 17 - - 169, 17 - - - 10 - - - Override default FTP account: - - - chkOverrideFTP - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTask - - - 0 - - - False - - - 181, 238 - - - 330, 21 - - - 11 - - - cboFTPaccounts - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTask - - - 1 - - - NoControl - - - 6, 93 - - - 506, 23 - - - 5 - - - After capture... - - - MiddleLeft - - - btnAfterCapture - - - HelpersLib.MenuButton, HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpTask - - + 3 - - NoControl - - - 6, 149 - - - 506, 23 - - - 7 - - - After upload... - - - MiddleLeft - - - btnAfterUpload - - - HelpersLib.MenuButton, HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpTask - - - 4 - - - NoControl - - - 6, 205 - - - 396, 17 - - - 181, 22 - - - Image uploaders - - - 181, 22 - - - Text uploaders - - - 181, 22 - - - File uploaders - - - 181, 22 - - - URL shorteners - - - 181, 22 - - - URL sharing services - - - 182, 114 - - - cmsDestinations - - - System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 506, 23 - - 9 + + 128, 20 - - Destinations... + + tpUploadNamePattern - - MiddleLeft - - - btnDestinations - - - HelpersLib.MenuButton, HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpTask - - - 5 - - - NoControl - - - 6, 37 - - - 506, 23 - - - 3 - - - Task... - - - MiddleLeft - - - btnTask - - - HelpersLib.MenuButton, HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpTask - - - 7 - - + 4, 22 - - 3, 3, 3, 3 + + 3, 30 - - 523, 360 + + tpScreenRecorder - + + tpUploadClipboard + + + tpActions + + + 14 + + 0 + + chkUseDefaultGeneralSettings + + + tpCapture + + + True + + + 16, 16 + + + 323 + + + 104, 140 + + + lblImageGIFQuality + + + 16, 129 + + + tpUploadNamePattern + + + cbCaptureShadow + + + + Top, Bottom, Left, Right + + + pgRectangleAnnotate + + + NoControl + + + 1 + + + True + Task - - tpTask + + tpThumbnail - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 360, 21 - - tcHotkeySettings + + btnActionsAdd - - 0 - - + True - + + Image format: + + + 0 + + NoControl - - 8, 58 + + tcHotkeySettings - - 415, 17 - - + 2 - - Show "Before upload" window to dynamically change destination before uploading + + Image format 2: + + + 8 + + + tpActions + + + pgTaskSettings + + + tpTask + + + 56, 21 + + + 4 + + + 12 + + + NoControl + + + Use image settings in main window task settings + + + lblGIFPS + + + 88, 13 + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 6 + + + 0 + + + 3, 3, 3, 3 + + + tcCapture + + + Only apply effects to region capture + + + 144, 108 + + + 8, 160 + + + 3, 30 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + panelGeneral + + + 1 + + + 1 + + + Use general settings in main window task settings + + + tpAdvanced + + + 0 + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Name + + + True + + + 5, 5, 5, 5 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Play sound after task is completed + + + 13 + + + tpTask + + + 308, 17 + + + 3, 3 + + + 78, 9 + + + 13 + + + Include subdirectories + + + 1 + + + URL shorteners + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiURLSharingServices + + + 2 + + + 4, 22 + + + 1 + + + cbImageEffectOnlyRegionCapture + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + MiddleLeft + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 7 chkShowBeforeUploadForm - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - panelGeneral + + lblScreenRecorderFixedDuration - + + 3, 3, 3, 3 + + + True + + + 4 + + 0 - + + Use actions in main window task settings + + + 334, 17 + + + NoControl + + + 16, 144 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 48, 20 + + + 1 + + + System.Windows.Forms.PropertyGrid, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Rectangle annotate + + + 1 + + + 111, 17 + + + Description: + + + 4, 22 + + + tpEffects + + + True + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 3, 3, 3, 3 + + + tpCaptureGeneral + + + NoControl + + + 16, 96 + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 0 + + + Capture window with transparency + + + 3 + + + 120, 17 + + + 4 + + + 16, 136 + + + chActionsExtensions + + + NoControl + + + 3, 30 + + + 7 + + + tpAdvanced + + + 56, 20 + + + tpCaptureGeneral + + + nudScreenRecordFPS + + + 180, 17 + + + 1 + + + 368, 62 + + + lblImageJPEGQualityHint + + + lblNameFormatPatternActiveWindow + + + NoControl + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + After capture... + + + 128, 110 + + + 124 + + + tpQuality + + + tpUploadNamePattern + + + 104, 172 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 8 + + + lblImageFormat2 + + + 181, 238 + + + 3 + + + 188, 17 + + + tpRectangleAnnotate + + + PNG + + + tpCaptureGeneral + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 8 + + + 2 + + + 16, 80 + + + 7 + + + cbCaptureTransparent + + + tpQuality + + + TaskSettingsForm + + + 10 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + NoControl + + + tpQuality + + True NoControl - - 8, 160 + + True - - 117, 13 + + tpThumbnail - - 6 + + btnActionsRemove - - After task is completed: + + 2 - - lblAfterTaskNotification + + 517, 327 - + + 517, 327 + + + Top + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - panelGeneral + + tpUploadNamePattern - - 1 + + 402, 17 - - 128, 156 + + tcCapture - - 224, 21 + + True - - 7 + + tpQuality - - cboPopUpNotification + + lblThumbnailHeight - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + nudThumbnailWidth + + + tsmiURLShorteners + + + Args + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpScreenRecorder + + + 13 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 2 + + + tpGeneral + + + 523, 360 + + + 16, 16 + + + 4, 22 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 4, 22 panelGeneral - + + 1 + + + Fill + + + 0, 0, 0, 0 + + + 16, 64 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpThumbnail + + + lvActions + + 2 + + tpUpload + + + NoControl + + + NoControl + + + NoControl + + + True + + + Add + + + tpTask + + + 3, 3 + + + tpThumbnail + + + tpScreenRecorder + + + 0 + + + tpUpload + + + 211, 111 + + + 0 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpGeneral + + + True + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + nudCaptureShadowOffset + + + nudThumbnailHeight + + + 7 + + + pActions + + + 8, 64 + + + 0 + + + 4, 22 + + + tpScreenRecorder + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 10 + + + NoControl + + + True + + + Text uploaders + + + NoControl + + + tpCaptureGeneral + + + NoControl + + + HelpersLib.MyListView, HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + + Capture + + + tpUploadNamePattern + + + 2 + + + lblThumbnailName + + + 43 + + + Task... + + + General + + + NoControl + + + tpScreenRecorder + + + Clipboard upload + + + 12 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpScreenRecorder + + + NoControl + + + You can enable/disable Image effects from "After capture tasks -> Add image effects" + + + If clipboard contains a URL then use URL shortener + + + 3 + + + 3, 3, 3, 3 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 20, 104 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcUpload + + + 517, 27 + + + cbShowCursor + + + 5, 5, 5, 5 + + + 3, 3, 3, 3 + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 8, 83 + + + 117, 13 + + + True + + + 0 + + + Filter + + + 509, 301 + + + Destinations... + + + 517, 27 + + + 2 + + + NoControl + + + 2 + + + 6 + + + NoControl + + + chkUseDefaultCaptureSettings + + + cbClipboardUploadShortenURL + + + 16, 20 + + + Top + + + 4, 22 + + + 4, 22 + + + NoControl + + + Show "Before upload" window to dynamically change destination before uploading + + + 412, 13 + + + 6, 13 + + + 114 + + + NoControl + + + btnDestinations + + + 0 + + + 6 + + + NoControl + + + True + + + 168, 48 + + + tpEffects + + + 181, 22 + + + cbUseDefaultAfterUploadSettings + + + 0 + + + System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 11 + + + Thumbnail + + + tpUploadClipboard + + + NoControl + + + True + + + 6 + + + lblUseImageFormat2AfterHint + + + cbPlaySoundAfterCapture + + + Run CLI afterwards: + + + nudUseImageFormat2After + + + NoControl + + + Use indexer settings in main window task settings + + + 509, 301 + + + 5 + + + lblThumbnailNamePreview + + + chActionsPath + + + panelGeneral + + + tpImage + + + 208, 23 + + + 15 + + + 1 + + + 6 + + + tpCaptureGeneral + + + tsmiFileUploaders + + + 15 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + btnActionsDuplicate + + + 523, 360 + + + txtNameFormatPattern + + + True + + + tpCapture + + + tpQuality + + + URL sharing services + + + 11 + + + 3 + + + 56, 20 + + + True + + + 40, 13 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 5, 5, 5, 5 + + + tpQuality + + + tpQuality + + + tpQuality + + + 5 + + + 2 + + + Indexer + + + cbImageFormat + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpUploadNamePattern + + + tpCaptureGeneral + + + pgRegionCapture + + + 1 + + + 0 + + + pActions + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpThumbnail + + + Center + + + 1 + + + 0 + + + Fill + + + 288, 112 + + + True + + + 0 + + + 4 + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 322, 17 + + + 517, 327 + True + + NoControl + + + 220 + + + cmsAfterCapture + + + 6 + + + 8 + + + HelpersLib.MenuButton, HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + + 4, 22 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + + tpScreenRecorder + + + 448, 20 + + + 221, 17 + + + JPEG + + + btnTask + + + tpScreenRecorder + + + 2 + + + Center + + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 7 + + + 3 + + + 517, 327 + + + 38, 13 + + + lblAfterTaskNotification + + + Show cursor in screenshots + + + pActions + + + 0 + + + Preview + + + 0 + + + tpCaptureGeneral + + + btnImageEffects + + + 509, 301 + + + 517, 27 + + + True + + + 6, 149 + + + 3 + + + tpImage + + + 6 + + + tpTask + + + NoControl + + + NoControl + + + tpUploadClipboard + + + Center + + + 16, 136 + + + 509, 301 + + + tpTask + + + 1 + + + NoControl + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 16, 161 + + + CenterScreen + + + lblNameFormatPatternPreview + + + 4, 22 + + + 16, 44 + + + 465, 17 + + + 3, 3, 3, 3 + + + 351, 17 + + + 4 + + + NoControl + + + Screen recorder + + + 18, 38 + + + True + + + cmsAfterUpload + + + 3 + + + System.Windows.Forms.PropertyGrid, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.PropertyGrid, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Image size limit for use "Image format 2": + + + tcHotkeySettings + + + 7 + + + 6 + + + Edit + + + cbWatchFolderEnabled + + + 1 + + + 0 + + + Screenshot delay: + + + 4, 22 + + + 42, 13 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + chkUseDefaultImageSettings + + + NoControl + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcHotkeySettings + + + cbShowAfterCaptureTasksForm + + + Automatically disable Windows Aero while recording (Aero decreasing recording performance) + + + 75, 23 + + + NoControl + + + 3, 30 + + + Output: + + + Thumbnail name: + + + 5 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + False + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 0 + + + Path + + + 75 + + + True + + + Start delay: + + + 128, 156 + + + 0 + + + 537, 392 + + + 10 + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + NoControl + + + 0 + + + tcHotkeySettings + + + 1 + + + 16, 16 + + + Remove + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 144, 60 + + + 8 + + + tpUploadClipboard + + + 8, 32 + + + 88, 32 + + + 6 + + + tpThumbnail + + + 509, 301 + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + panelGeneral + + + 2 + + + 8, 8 + + + NoControl + + + 0 + + + GIF + + + Use default "Destination" settings + + + tpQuality + + + tsmiTextUploaders + + + panelGeneral + + + 0 + + + 523, 360 + + + lblScreenRecorderOutput + + + 509, 301 + + + 509, 301 + + + 16, 176 + + + File uploaders + + + True + + + 402, 35 + + + 4 + + + chActionsName + + + 16, 76 + + + NoControl + + + tpScreenRecorder + + + 61, 4 + + + 70, 23 + + + tpScreenRecorder + + + Region capture + + + 3, 3, 3, 3 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcImage + + + 509, 301 + + + True + NoControl - - 8, 83 + + 0 - + + 64, 12 + + + 402, 11 + + + 16, 76 + + + True + + + Image effects configuration... + + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 16, 88 + + + NoControl + + + tpIndexer + + + 3 + + 271, 17 - - 3 + + 63, 13 - - Show "After upload" window after task is completed + + Capture window with shadow (requires transparency) Shadow offset: - - chkShowAfterUploadForm + + 181, 22 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + cmsTask - - panelGeneral + + 509, 301 - - 3 + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + Fill - - NoControl + + chkRunScreencastCLI - - 8, 33 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 295, 17 + + 121, 13 - + 1 - - Show "Post capture tasks" window after capture is made + + MiddleLeft - - cbShowAfterCaptureTasksForm + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - panelGeneral - - - 4 - - - True - - - NoControl - - - 8, 133 - - - 187, 17 - - + 5 - - Play sound after task is completed + + 2 - - cbPlaySoundAfterUpload + + cbUseDefaultDestinationSettings - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - panelGeneral + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 5 + + + 0 + + + Override default FTP account: + + + 61, 4 + + + 198, 13 + + + 56, 13 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 3 + + + cbScreenshotDelay + + + 434, 20 + + + True + + + 48, 13 + + + 0 + + + lblScreenshotDelayInfo + + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 5 - - True + + Show image effects window after capture - - NoControl + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 8, 108 + + 61, 4 + + + pActions + + + 64, 20 + + + Fill + + + 18, 110 + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 3 + + + tpRegionCapture + + + 0 - 100 + + + 506, 23 + + + 4 + + + 3, 3, 3, 3 + + + Fill 139, 17 @@ -726,3163 +1914,1951 @@ 4 - - Save task info to history + + 75, 23 - - cbHistorySave - - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - panelGeneral - - - 6 - - - True - - + NoControl - - 8, 8 + + 9 - - 180, 17 - - - 0 - - - Play sound after capture is made - - - cbPlaySoundAfterCapture - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - panelGeneral - - - 7 - - - Fill - - - 3, 30 - - - 517, 327 - - - 1 - - - panelGeneral - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGeneral - - - 0 - - - True - - - Top - - + NoControl - - 3, 3 - - - 5, 5, 5, 5 - - - 517, 27 - - - 0 - - - Use general settings in main window task settings - - - chkUseDefaultGeneralSettings - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGeneral - - - 1 - - - 4, 22 - - - 3, 3, 3, 3 - - - 523, 360 - - - 7 - - - General - - - tpGeneral - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcHotkeySettings - - - 1 - - - 104, 172 - - - 176, 21 - - - 13 - - - cbImageFileExist - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpQuality - - - 0 - - - True - - - NoControl - - - 16, 176 - - - 56, 13 - 12 - - If file exist: + + 7 - - lblImageFileExist + + 8 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + cbScreenRecorderOutput - - tpQuality + + tpTask - - 1 + + 503, 295 - - True - - - NoControl - - - 16, 16 - - - 71, 13 - - + 0 - - Image format: - - - lblImageFormat - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpQuality - - - 2 - - - True - - - NoControl - - - 288, 112 - - - 121, 13 - - - 9 - - - kB 0 - 5000 (0 disables) - - - lblUseImageFormat2AfterHint - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpQuality - - - 3 - - - PNG - - - JPEG - - - GIF - - - BMP - - - TIFF - - - 104, 12 - - - 56, 21 - - + 1 - - cbImageFormat - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpQuality - - - 4 - - - True - - - NoControl - - - 168, 48 - - - 40, 13 - - - 4 - - - 0 - 100 - - - lblImageJPEGQualityHint - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpQuality - - - 5 - - - True - - - NoControl - - - 16, 48 - - - 70, 13 - - - 2 - - - JPEG quality: - - - lblImageJPEGQuality - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpQuality - - - 6 - - - 104, 76 - - - 360, 21 - - - 6 - - - cbImageGIFQuality + + panelGeneral System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tpQuality + + tcUpload - - 7 + + tcImage - - True + + tcHotkeySettings - - NoControl + + btnWatchFolderAdd - - 16, 80 + + 3, 3, 3, 3 - - 60, 13 - - + 5 - - GIF quality: + + btnEncoderConfig - - lblImageGIFQuality - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpQuality - - - 8 - - - PNG - - - JPEG - - - GIF - - - BMP - - - TIFF - - - 104, 140 - - - 56, 21 - - - 11 - - - cbImageFormat2 - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpQuality - - - 9 - - - 104, 44 - - - 56, 20 - - - 3 - - - Center - - - nudImageJPEGQuality - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpQuality - - - 10 - - - True - - + NoControl - - 16, 144 + + 71, 13 + + + 3 + + + 70, 23 + + + tpEffects + + + Watch folders and if new file created then upload it + + + Watch folders + + + 295, 17 80, 13 - - 10 + + tcImage - - Image format 2: + + 9 - - lblImageFormat2 + + cboPopUpNotification - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpQuality - - - 11 - - - 224, 108 - - - 56, 20 - - - 8 - - - Center - - - nudUseImageFormat2After - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpQuality - - - 12 - - - True - - - NoControl - - - 16, 112 - - - 198, 13 + + 256, 21 7 - - Image size limit for use "Image format 2": + + 5 - - lblUseImageFormat2After + + 11 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tpQuality + + NoControl - - 13 - - - 4, 22 - - - 3, 3, 3, 3 - - - 509, 301 + + 2 0 - - General + + When doing window capture if window intersects with taskbar then hide taskbar - - tpQuality + + lvWatchFolderList - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Preview: - - tcImage + + 6 - - 0 - - + True - - NoControl + + 90 - - 16, 56 - - - 221, 17 - - + 1 - - Show image effects window after capture - - - chkShowImageEffectsWindowAfterCapture - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbImageEffects - - - 0 - - - True - - - NoControl - - - 16, 80 - - - 193, 17 - - - 2 - - - Only apply effects to region capture - - - cbImageEffectOnlyRegionCapture - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbImageEffects - - - 1 - - - NoControl - - - 16, 24 - - - 208, 23 - - - 0 - - - Image effects configuration... - - - btnImageEffects - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gbImageEffects - - - 2 - - - 16, 16 - - - 304, 112 - - - 0 - - - Image effects - - - gbImageEffects - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEffects - - - 0 - - - NoControl - - - 16, 144 - - - 208, 23 - - - 1 - - - Watermark configuration... - - - btnWatermarkSettings - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEffects - - - 1 - - - 4, 22 - - - 3, 3, 3, 3 - - - 509, 301 - - - 2 - - - Effects - - - tpEffects - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcImage - - - 1 - - - True - - - NoControl - - - 20, 104 - - - 322, 17 - - - 7 - - - Create thumbnail only if image size is bigger than thumbnail size - - - cbThumbnailIfSmaller - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpThumbnail - - - 0 - - - True - NoControl - - 248, 76 + + NoControl - - 45, 13 + + cbPlaySoundAfterUpload - - 6 + + 2 - - Preview + + 3 - - lblThumbnailNamePreview + + True - + + 0 + + + JPEG quality: + + + pgIndexerConfig + + + lblImageJPEGQuality + + + tcCapture + + + 3 + + + Top + + + NoControl + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpCapture + + + 16, 112 + + + 2 + + + nudGIFFPS + + + If clipboard contains a file URL then download it and upload + + + 8, 33 + + + Show "After upload" window after task is completed + + + NoControl + + + lblScreenRecordFPS + + + 5 + + + 3, 30 + + + 4, 22 + + + 64, 20 + + + 4 + + + tpWatchFolders + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tpThumbnail + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + NoControl + + + 70, 13 + + + 509, 301 + + + 60, 13 + + + 50, 13 + + + Fill + + + 56, 20 + + + 185, 17 + + + 4 + + + 5 + + + 16, 64 + + + tcHotkeySettings + + + 3 + + + Effects + + + 8, 182 + + + panelGeneral + + + 9 + + + 523, 360 + + + 504, 288 + + + 7 + + + 6, 205 + + + 144, 132 + + + 10 + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpScreenRecorder + + 1 + + 1 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Fill + + + 100, 13 + + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + + $this + + + tpUploadNamePattern + + + tpQuality + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 256, 21 + + + nudImageJPEGQuality + + + tpUploadClipboard + + + 4 + + + 3, 3 + True - + + BMP + + NoControl - - 16, 76 + + 517, 327 - - 88, 13 + + TIFF - - 4 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Thumbnail name: + + 7 - - lblThumbnailName + + tpWatchFolders - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tpThumbnail + + 0 - - 2 + + tpTask - - 112, 72 + + 0 - - 128, 20 + + tpQuality - - 5 + + True + + + 4, 22 + + + tpScreenRecorder + + + True + + + btnResetAutoIncrementNumber + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Image uploaders + + + cmsDestinations + + + NoControl + + + 1 + + + chkShowImageEffectsWindowAfterCapture + + + 1 txtThumbnailName - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 - - tpThumbnail - - - 3 - - - True - - - NoControl - - - 16, 44 - - - 41, 13 - - - 2 - - - Height: - - - lblThumbnailHeight - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tpThumbnail + + 1 - + + tpActions + + + ShareX - Task settings + + + 4, 22 + + + GIF quality: + + + 75, 23 + + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpEffects + + + tpUploadNamePattern + + + System.Windows.Forms.PropertyGrid, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + btnWatchFolderRemove + + + lblUseImageFormat2After + + + tcUpload + + + 5 + + + 1 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 181, 22 + + 4 - + + cbScreenRecorderFixedDuration + + + 3 + + True - + + 5 + + + 0 + + + 6 + + + 517, 27 + + + Duplicate + + + tpScreenRecorder + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 4 + + NoControl - - 16, 16 + + NoControl - - 38, 13 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + 187, 17 + + + 64, 40 + + + 1 + + + 8, 40 + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 1 + + + 168, 8 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 104, 12 + + + 88, 8 + + + nudScreenshotDelay + + + 2 + + + tpGeneral + + + After task is completed: + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 7 + + + 4 + + + 224, 21 + + + chkUseDefaultAdvancedSettings + + + cbCaptureAutoHideTaskbar + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 6, 37 + + + Fill + + + 448, 20 + + + 0, 0 + + + Center + + + True + + + btnAfterCapture + + + True + + + 3, 3, 3, 3 + + + 64, 20 + + + 144, 36 + + + NoControl + + + 3 + + + 248, 76 + + + 4, 22 + + + 8, 240 + + + 3, 30 + + + NoControl + + + 0 + + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + General + + + Upload + + + 189, 17 + + + tpQuality + + + True + + + True + + + 16, 192 + + + tpWatchFolders + + + Capture client area when doing window or active window capture + + + True + + + 16, 72 + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcHotkeySettings + + + tpEffects + + + 47, 13 + + + 3, 3 + + + 1 + + + Center + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + cboFTPaccounts + + + 5 + + + 8, 8 + + + 523, 360 + + + System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 64, 20 + + + 5, 5, 5, 5 + + + 6, 13 + + + 8 + + + 3, 3, 3, 3 + + + tpImage + + + 3, 3, 3, 3 + + + True + + + NoControl + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + NoControl + + 0 Width: - - lblThumbnailWidth - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tpThumbnail - - - 5 - - - 64, 40 - - - 64, 20 - - - 3 - - - Center - - - nudThumbnailHeight - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpThumbnail - - - 6 - - - 64, 12 - - - 64, 20 - - - 1 - - - Center - - - nudThumbnailWidth - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpThumbnail - - - 7 - - - 4, 22 - - - 3, 3, 3, 3 - - - 509, 301 - - - 3 - - - Thumbnail - - - tpThumbnail - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcImage - - - 2 - - - Fill - - - 3, 30 - - - 517, 327 - - - 1 - - - tcImage - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImage - - - 0 - - - True - - - Top - - - NoControl - - - 3, 3 - - - 5, 5, 5, 5 - - - 517, 27 - - - 0 - - - Use image settings in main window task settings - - - chkUseDefaultImageSettings - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImage - - - 1 - - - 4, 22 - - - 3, 3, 3, 3 - - - 523, 360 - - - 1 - - - Image - - - tpImage - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcHotkeySettings - - - 2 - - - True - - - NoControl - - - 16, 136 - - - 402, 17 - - - 8 - - - When doing window capture if window intersects with taskbar then hide taskbar - - - cbCaptureAutoHideTaskbar - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCaptureGeneral - - - 0 - - - True - - - NoControl - - - 192, 114 - - - 47, 13 - - - 7 - - - seconds - - - lblScreenshotDelayInfo - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tpCaptureGeneral - - - 1 - - - 128, 110 - - - 56, 20 - - - 6 - - - Center - - - nudScreenshotDelay - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCaptureGeneral - - - 2 - - - True - - - NoControl - - - 16, 112 - - - 111, 17 - - - 5 - - - Screenshot delay: - - - cbScreenshotDelay - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCaptureGeneral - - - 3 - - - 368, 62 - - - 48, 20 - - - 3 - - - Center - - - nudCaptureShadowOffset - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCaptureGeneral - - - 4 - - - True - - - NoControl - - - 16, 88 - - - 334, 17 - - - 4 - - - Capture client area when doing window or active window capture - - - cbCaptureClientArea - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCaptureGeneral - - - 5 - - - True - - - NoControl - - - 16, 64 - - - 351, 17 - - - 2 - - - Capture window with shadow (requires transparency) Shadow offset: - - - cbCaptureShadow - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCaptureGeneral - - - 6 - - - True - - - NoControl - - - 16, 16 - - - 156, 17 - - - 0 - - - Show cursor in screenshots - - - cbShowCursor - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCaptureGeneral - - - 7 - - - True - - - NoControl - - - 16, 40 - - - 188, 17 - - - 1 - - - Capture window with transparency - - - cbCaptureTransparent - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCaptureGeneral - - - 8 - - - 4, 22 - - - 3, 3, 3, 3 - - - 509, 301 - - - 0 - - - General - - - tpCaptureGeneral - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcCapture - - - 0 - - - Fill - - - 3, 3 - - - 503, 295 - - - 0 - - - pgRegionCapture - - - System.Windows.Forms.PropertyGrid, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpRegionCapture - - - 0 - - - 4, 22 - - - 3, 3, 3, 3 - - - 509, 301 - - - 1 - - - Region capture - - - tpRegionCapture - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcCapture - - - 1 - - - Fill - - - 0, 0 - - - 509, 301 - - - 1 - - - pgRectangleAnnotate - - - System.Windows.Forms.PropertyGrid, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpRectangleAnnotate - - - 0 - - - 4, 22 - - - 509, 301 - - - 3 - - - Rectangle annotate - - - tpRectangleAnnotate - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcCapture - - - 2 - - - True - - - NoControl - - - 18, 160 - - - 465, 17 - - - 15 - - - Automatically disable Windows Aero while recording (Aero decreasing recording performance) - - - cbScreenRecordAutoDisableAero - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder - - - 0 - - - True - NoControl - - 211, 111 + + btnActionsEdit - - 47, 13 + + 506, 23 - - 12 - - - seconds - - - lblScreenRecorderFixedDuration - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder - - - 1 - - - 144, 60 - - - 64, 20 - - - 7 - - - Center - - - nudScreenRecordFPS - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder - - + 2 - - True + + tpQuality - - NoControl - - - 16, 64 - - - 100, 13 - - - 6 - - - Screen record FPS: - - - lblScreenRecordFPS - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tpScreenRecorder + + 47, 13 - - 3 + + tpTask - - True + + tpThumbnail - + + 13 + + + 4, 22 + + + kB 0 - 5000 (0 disables) + + + tpTask + + + 1 + + + 16, 40 + + NoControl - - 18, 38 + + NoControl - - 120, 17 + + True + + + 387, 17 + + + 16, 48 + + + tpUpload + + + lblThumbnailWidth + + + chkOverrideFTP + + + 8, 126 3 - - Run CLI afterwards: - - - chkRunScreencastCLI - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder - - - 4 - - - NoControl - - - 402, 11 - - - 70, 23 - - - 2 - - - Options... - - - btnScreenRecorderOptions - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder - - - 5 - - - NoControl - - - 402, 35 - - - 70, 23 - - - 5 - - - Profiles... - - - btnEncoderConfig - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder - - - 6 - - - 144, 36 - - - 256, 21 - - - 4 - - - cboEncoder - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder + + 0 7 - - 144, 108 - - - 64, 20 - - - 11 - - - Center - - - nudScreenRecorderDuration - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + tpScreenRecorder - - 8 + + 5, 5, 5, 5 - + + 3 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 16, 105 + + + 0 + + + tsmiImageUploaders + + + If clipboard contains a folder path then index that folder and upload the index + + + 182, 114 + + + 16, 88 + + + 10 + + + cbCaptureClientArea + + + tpWatchFolders + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 11 + + + 271, 17 + + + 6, 93 + + + 415, 17 + + + 1 + + + lblImageEffectsNote + + True - + + 75, 23 + + + chWatchFolderFolderPath + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Use default "After upload" settings + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 16, 136 + + 6 - - 60, 13 + + 3, 3, 3, 3 - - 13 + + 2 - - Start delay: + + tpScreenRecorder - - lblScreenRecorderStartDelay + + Use name pattern for file uploads too instead actual file name + + + NoControl + + + 1 + + + cbImageGIFQuality + + + True + + + 7 + + + 0 + + + NoControl + + + True + + + 8, 133 + + + 517, 27 + + + tpCaptureGeneral + + + chWatchFolderFilter + + + True + + + Add... + + + 3, 3, 3, 3 + + + 330, 21 + + + 199, 13 + + + Name pattern + + + NoControl + + + 0 + + + JPEG + + + 6 + + + 14 + + + NoControl + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcHotkeySettings + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + + 3, 3 + + + tpCaptureGeneral + + + 8, 70 + + + 1 + + + Fill + + + cbClipboardUploadShareURL + + + tbDescription + + + cbImageFileExist + + + 0 + + + Image + + + 7 + + + 16, 112 + + + 6 + + + True + + + HelpersLib.MenuButton, HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + + tcHotkeySettings + + + 8 + + + 3 + + + Reset auto increment number + + + 5, 5, 5, 5 + + + MiddleLeft + + + Screen record FPS: + + + 1 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 3, 3, 3, 3 + + + Top + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pActions + + + 313, 17 + + + cbUseDefaultAfterCaptureSettings + + + 5 + + + PNG + + + tpTask System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tpScreenRecorder + + Top - + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Use advanced settings in main window task settings + + 9 - - 144, 132 + + Use capture settings in main window task settings - - 64, 20 + + True - - 14 - - + Center - - nudScreenRecorderStartDelay + + lblImageFileExist - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 192, 114 - - tpScreenRecorder + + 506, 23 - - 10 + + lblImageFormat - - 144, 12 + + True - - 256, 21 + + tpIndexer - - 1 - - - cbScreenRecorderOutput + + tcHotkeySettings System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tpScreenRecorder + + 2 - + + 2 + + + lblNameFormatPattern + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 104, 76 + + + 16, 44 + + + 224, 108 + + + 517, 27 + + + cbClipboardUploadAutoIndexFolder + + + 16, 40 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 169, 17 + + + 64, 20 + + + 56, 21 + + + Advanced + + + BMP + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 104, 44 + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + panelGeneral + + + Center + + + 3 + + + 144, 84 + + + 8 + + + 1 + + + Height: + + + cboEncoder + + + 4, 22 + + + If file exist: + + + MiddleLeft + + + tcCapture + + + 2 + + + Save task info to history + + + Profiles... + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 0 + + + True + + + 12 + + + 16, 16 + + 11 + + chkUseDefaultActions + + + 3, 3 + + + 16, 88 + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + btnScreenRecorderOptions + + + 0 + + + GIF FPS: + + + 517, 27 + + + 8, 108 + + + 1 + + + HelpersLib.MenuButton, HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + + 3, 3 + + + Preview: + + + cbScreenRecordAutoDisableAero + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + True + + True + NoControl - - 16, 16 - - - 42, 13 - - - 0 - - - Output: - - - lblScreenRecorderOutput - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder - - - 12 - - - True - - - NoControl - - - 18, 110 - - - 95, 17 - - - 10 - - - Fixed duration: - - - cbScreenRecorderFixedDuration - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder - - - 13 - - - 144, 84 - - - 64, 20 - - - 9 - - - Center - - - nudGIFFPS - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder - - - 14 - - - True - - - NoControl - - - 16, 88 - - - 50, 13 - - - 8 - - - GIF FPS: - - - lblGIFPS - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder - - - 15 - - - 4, 22 - - - 3, 3, 3, 3 - - - 509, 301 - - - 2 - - - Screen recorder - - - tpScreenRecorder - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcCapture - - - 3 - - - Fill - - - 3, 30 - - - 517, 327 - - - 1 - - - tcCapture - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCapture - - - 0 - - - True - - - Top - - - NoControl - - - 3, 3 - - - 5, 5, 5, 5 - - - 517, 27 - - - 0 - - - Use capture settings in main window task settings - - - chkUseDefaultCaptureSettings - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCapture - - - 1 - - - 4, 22 - - - 3, 3, 3, 3 - - - 523, 360 - - - 2 - - - Capture - - - tpCapture - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcHotkeySettings - - - 3 - - - NoControl - - - 168, 8 - - - 75, 23 - - - 2 - - - Duplicate - - - btnActionsDuplicate - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pActions - - - 0 - - - NoControl - - - 8, 8 - - - 75, 23 - - - 0 - - - Add - - - btnActionsAdd - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pActions - - - 1 - - - Top, Bottom, Left, Right - - - Name - - - 90 - - - Path - - - 220 - - - Args - - - 114 - - - Extensions - - - 75 - - - 8, 40 - - - 504, 280 - - - 4 - - - lvActions - - - HelpersLib.MyListView, HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - pActions - - - 2 - - - NoControl - - - 88, 8 - - - 75, 23 - - - 1 - - - Edit - - - btnActionsEdit - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pActions - - - 3 - - - NoControl - - - 248, 8 - - - 75, 23 - - - 3 - - - Remove - - - btnActionsRemove - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pActions - - - 4 - - - Fill - - - 3, 30 - - - 0, 0, 0, 0 - - - 517, 327 - - - 1 - - - pActions - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpActions - - - 0 - - - True - - - Top - - - NoControl - - - 3, 3 - - - 5, 5, 5, 5 - - - 517, 27 - - - 0 - - - Use actions in main window task settings - - - chkUseDefaultActions - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpActions - - - 1 - - - 4, 22 - - - 3, 3, 3, 3 - - - 523, 360 - - - 3 - - - Actions - - - tpActions - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcHotkeySettings - - - 4 - - - True - - - NoControl - - - 8, 8 - - - 266, 17 - - - 0 - - - Watch folders and if new file created then upload it - - - cbWatchFolderEnabled - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpWatchFolders - - - 0 - - - Folder path - - - 323 - - - Filter - - - 43 - - - Include subdirectories - - - 124 - - - 8, 64 - - - 504, 288 - - - 3 - - - lvWatchFolderList - - - System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpWatchFolders - - - 1 - - - NoControl - - - 88, 32 - - - 75, 23 - - - 2 - - - Remove - - - btnWatchFolderRemove - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpWatchFolders - - - 2 - - - NoControl - - - 8, 32 - - - 75, 23 - - - 1 - - - Add... - - - btnWatchFolderAdd - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpWatchFolders - - - 3 - - - 4, 22 - - - 3, 3, 3, 3 - - - 523, 360 - - - 5 - - - Watch folders - - - tpWatchFolders - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcHotkeySettings - - - 5 - - - True - - - NoControl - - - 16, 192 - - - 313, 17 - - - 7 - - - Use name pattern for file uploads too instead actual file name - - - cbFileUploadUseNamePattern - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUploadNamePattern - - - 0 - - - True - - - NoControl - - - 16, 20 - - - 221, 13 - - - 0 - Name pattern for capture or clipboard upload: - - lblNameFormatPattern - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUploadNamePattern - - - 1 - - - 16, 129 - - - 448, 20 - - - 5 - - - txtNameFormatPatternActiveWindow - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUploadNamePattern - - - 2 - - - NoControl - - - 296, 17 - - - 168, 23 - - - 1 - - - Reset auto increment number - - - btnResetAutoIncrementNumber - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUploadNamePattern - - - 3 - - - True - - - NoControl - - - 16, 105 - - - 199, 13 - - - 4 - - - Name pattern for active window capture: - - - lblNameFormatPatternActiveWindow - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUploadNamePattern - - - 4 - - - 16, 44 - - - 448, 20 - - - 2 - - - txtNameFormatPattern - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUploadNamePattern - - - 5 - - - True - - - NoControl - - - 16, 76 - - - 48, 13 - - - 3 - - - Preview: - - - lblNameFormatPatternPreview - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUploadNamePattern - - - 6 - - - True - - - NoControl - - - 16, 161 - - - 48, 13 - - - 6 - - - Preview: - - - lblNameFormatPatternPreviewActiveWindow - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUploadNamePattern - - - 7 - - - 4, 22 - - - 3, 3, 3, 3 - - - 509, 301 - - - 0 - - - Name pattern - - - tpUploadNamePattern - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tcUpload + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + 517, 327 + + + txtNameFormatPatternActiveWindow + + + 176, 21 + + 0 - - True + + 75, 23 - - NoControl + + 144, 12 - - 16, 64 - - - 343, 17 - - - 3 - - - If clipboard contains a URL then share it using URL sharing service - - - cbClipboardUploadShareURL - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUploadClipboard - - - 0 - - - True - - - NoControl - - - 16, 16 - - - 308, 17 - - - 0 - - - If clipboard contains a file URL then download it and upload - - - chkClipboardUploadURLContents - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUploadClipboard - - - 1 - - - True - - - NoControl - - - 16, 88 - - - 387, 17 - - + 2 - - If clipboard contains a folder path then index that folder and upload the index + + tpWatchFolders - - cbClipboardUploadAutoIndexFolder + + 45, 13 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUploadClipboard - - - 2 - - - True - - - NoControl - - - 16, 40 - - - 271, 17 - - - 1 - - - If clipboard contains a URL then use URL shortener - - - cbClipboardUploadShortenURL - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUploadClipboard - - - 3 - - - 4, 22 - - - 3, 3, 3, 3 - - - 509, 301 - - - 1 - - - Clipboard upload - - - tpUploadClipboard - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcUpload - - - 1 - - - Fill - - - 3, 30 - - - 517, 327 - - - 1 - - - tcUpload - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUpload - - - 0 - - - True - - - Top - - - NoControl - - - 3, 3 - - - 5, 5, 5, 5 - - - 517, 27 - - - 0 - - - Use upload settings in main window task settings - - - chkUseDefaultUploadSettings - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUpload - - - 1 - - - 4, 22 - - - 3, 3, 3, 3 - - + 523, 360 - - 4 + + 48, 13 - - Upload + + 9 - - tpUpload + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcHotkeySettings - - - 6 - - - Fill - - - 3, 30 - - - 517, 327 - - - 1 - - - pgIndexerConfig - - - System.Windows.Forms.PropertyGrid, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpIndexer - - - 0 - - - True - - - Top - - - NoControl - - - 3, 3 - - - 5, 5, 5, 5 - - - 517, 27 - - - 0 - - - Use indexer settings in main window task settings - - - chkUseDefaultIndexerSettings - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpIndexer - - - 1 - - - 4, 22 - - - 3, 3, 3, 3 - - - 523, 360 - - - 8 - - - Indexer - - - tpIndexer - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcHotkeySettings - - - 7 - - - Fill - - - 3, 30 - - - 517, 327 - - - 1 - - - pgTaskSettings - - - System.Windows.Forms.PropertyGrid, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAdvanced - - - 0 - - - True - - - Top - - - NoControl - - - 3, 3 - - - 5, 5, 5, 5 - - - 517, 27 - - - 0 - - - Use advanced settings in main window task settings - - - chkUseDefaultAdvancedSettings - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAdvanced - - - 1 - - - 4, 22 - - - 3, 3, 3, 3 + + Fixed duration: 523, 360 - - 6 + + tcImage - - Advanced + + 5, 5, 5, 5 - - tpAdvanced + + 4, 22 - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tpQuality - - tcHotkeySettings + + NoControl - - 8 - - - Fill - - - 3, 3 - - - 531, 386 - - - 0 - - - tcHotkeySettings - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 4 - - - True - - - 6, 13 - - - 537, 392 - - + 3, 3, 3, 3 - - CenterScreen + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ShareX - Task settings + + 0 - - tsmiImageUploaders + + True - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Play sound after capture is made - - tsmiTextUploaders + + tpTask - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Options... - - tsmiFileUploaders - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiURLShorteners - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiURLSharingServices + + 4 System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - chWatchFolderFolderPath + + 18, 160 - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Folder path - - chWatchFolderFilter + + 1 - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 16, 16 - - chWatchFolderIncludeSubdirectories + + If clipboard contains a URL then share it using URL sharing service + + + 523, 360 + + + General + + + 16, 64 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + NoControl + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 2 + + + btnAfterUpload + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Name pattern for active window capture: + + + 181, 22 + + + 112, 72 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 2 + + + 1 + + + 8 + + + 4 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 3 + + + panelGeneral + + + chkUseDefaultUploadSettings + + + tpCaptureGeneral + + + 3 + + + cbThumbnailIfSmaller + + + 517, 327 + + + 3, 3, 3, 3 + + + 523, 360 + + + chkUseDefaultIndexerSettings + + + Fill + + + 5 + + + chkClipboardUploadURLContents + + + 1 + + + TIFF + + + True System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - chActionsName + + 41, 13 - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - chActionsPath + + Extensions - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - chActionsArgs + + 10 - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - chActionsExtensions + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + NoControl System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TaskSettingsForm + + tpRectangleAnnotate - - System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 + + 3 + + + 193, 17 + + + NoControl + + + cbFileUploadUseNamePattern + + + tpScreenRecorder + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 60, 13 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 0 + + + 3 + + + tpTask + + + 0 + + + NoControl + + + NoControl + + + GIF + + + chWatchFolderIncludeSubdirectories + + + nudScreenRecorderStartDelay + + + 168, 23 + + + 1 + + + tcCapture + + + 1 + + + 64, 20 + + + 1 + + + 3, 30 + + + 6 + + + 16, 16 + + + tpThumbnail + + + 7 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpQuality + + + Center + + + 3, 3, 3, 3 + + + Create thumbnail only if image size is bigger than thumbnail size + + + NoControl + + + Center + + + 16, 40 + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 504, 280 + + + 7 + + + 531, 386 + + + 156, 17 + + + 8, 8 + + + Center + + + Actions + + + 9 + + + tpUploadNamePattern + + + 75, 23 + + + 181, 22 + + + 4 + + + 1 + + + chActionsArgs + + + seconds + + + cbHistorySave + + + Remove + + + 4 + + + 343, 17 + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 0 + + + 193, 17 + + + Top + + + 3 + + + NoControl + + + True + + + 296, 17 + + + 266, 17 + + + 3, 3 + + + chkShowAfterUploadForm + + + True + + + Use upload settings in main window task settings + + + 3, 3 + + + 8, 58 + + + tpScreenRecorder + + + tpThumbnail + + + NoControl + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Top + + + 221, 13 + + + lblScreenRecorderStartDelay + + + 1 + + + tpAdvanced + + + tpIndexer + + + seconds + + + After upload... + + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 248, 8 + + + 1 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + cbImageFormat2 + + + HelpersLib.MenuButton, HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + + pActions + + + 5 + + + 3 + + + Use default "After capture" settings + + + 0 + + + True + + + 4 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 396, 17 + + + 17, 17 + + + 160, 17 + + + True + + + 299, 17 + \ No newline at end of file diff --git a/ShareX/Forms/TaskSettingsForm.tr.resx b/ShareX/Forms/TaskSettingsForm.tr.resx index bdf539953..8eaf59721 100644 --- a/ShareX/Forms/TaskSettingsForm.tr.resx +++ b/ShareX/Forms/TaskSettingsForm.tr.resx @@ -117,10 +117,6 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - 245, 17 @@ -128,57 +124,36 @@ Varsayılan "Yakalama sonrası" ayarlarını kullan - - NoControl - 239, 17 Varsayılan "Yükleme sonrası" ayarlarını kullan - - NoControl - 191, 17 Varsayılan "Hedef" ayarlarını kullan - - NoControl - 53, 13 Açıklama: - - NoControl - 127, 17 FTP hesabını değiştir: - - NoControl - Yakalama sonrası... - - NoControl - Yükleme sonrası... - - NoControl - 193, 22 @@ -215,159 +190,96 @@ Hedefler... - - NoControl - Görev... Görev - - NoControl - 384, 17 Yükleme öncesi hedefi değiştirebilmek için "Yükleme öncesi" ekranını göster - - NoControl - 108, 13 Görev bittikten sonra: - - NoControl - 299, 17 Görev tamamlandığında "Yükleme sonrası" ekranını göster - - NoControl - 364, 17 Yakalama yapıldıktan sonra "Yakalama sonrası görevler" ekranını göster - - NoControl - 160, 17 Görev bittikten sonra ses çal - - NoControl - 168, 17 Görev bilgisini geçmişe kaydet - - NoControl - 191, 17 Yakalama yapıldıktan sonra ses çal - - NoControl - Varsayılan genel ayarları kullan Genel - - NoControl - 69, 13 Dosya varsa: - - NoControl - 68, 13 Resim biçimi: - - NoControl - 126, 13 kB 0 - 5000 (0 iptal eder) - - NoControl - - - NoControl - 72, 13 JPEG kalitesi: - - Varsayılan (Hızlı) - - - 256 renk (8 bit) - - - 16 renk (4 bit) - - - Gri ton - - - NoControl - 62, 13 GIF kalitesi: - - NoControl - 75, 13 Resim biçim 2: - - NoControl - 188, 13 @@ -377,81 +289,48 @@ Genel - - NoControl - 248, 17 Yakalama sonrası resim efektleri ekranını göster - - NoControl - 232, 17 Efektleri sadece yakalama bölgesine uygula - - NoControl - Resim efektleri ayarları... - - Resim efektleri - - - NoControl - - - Damga ayarları... - Efekt - - NoControl - 382, 17 Küçük resimi sadece resim boyutu küçük resim boyutundan büyükse oluştur - - NoControl - 53, 13 Ön izleme - - NoControl - 85, 13 Küçük resim adı: - - NoControl - 28, 13 Boy: - - NoControl - 23, 13 @@ -461,72 +340,48 @@ Küçük resim - - NoControl - Varsayılan resim ayarlarını kullan Resim - - NoControl - 430, 17 Pencere yakalama sırasında pencere görev çubuğu ile kesişirse görev çubuğunu gizle - - NoControl - 37, 13 saniye - - NoControl - 107, 17 Beklemesi süresi: - - NoControl - 378, 17 Pencere veya aktif pencere yakalama sırasında başlık çubuğunu yakalama - - NoControl - 311, 17 Pencereyi gölge ile yakala (şeffaflık gerektirir) Gölge çıkıntısı: - - NoControl - 185, 17 Ekran görüntülerinde imleci göster - - NoControl - 159, 17 @@ -542,105 +397,66 @@ Dikdörtgen dipnot - - NoControl - 462, 17 Kaydetme sırasında Windows Aero otomatik kapatılsın (Aero kaydetme performansını düşürür) - - NoControl - 37, 13 saniye - - NoControl - 86, 13 Ekran kayıt FPS: - - NoControl - 112, 17 Peşine CLI çalıştır: - - NoControl - Ayarlar... - - NoControl - Profiller... - - NoControl - 106, 13 Başlangıç gecikmesi: - - NoControl - 32, 13 Çıkış: - - NoControl - 76, 17 Sabit süre: - - NoControl - Ekran kaydedici - - NoControl - Varsayılan yakalama ayarlarını kullan Yakalama - - NoControl - Kopyala - - NoControl - Ekle @@ -656,30 +472,18 @@ Uzantılar - - NoControl - Düzenle - - NoControl - Kaldır - - NoControl - Varsayılan aksiyon ayarlarını kullan Aksiyon - - NoControl - 287, 17 @@ -695,66 +499,42 @@ Alt dizinleri de dahil et - - NoControl - Kaldır - - NoControl - Ekle... Takipteki dizinler - - NoControl - 335, 17 Dosya yükleme için de gerçek dosya ismi yerine isim deseni kullan - - NoControl - 243, 13 Yakalama veya panodan yükleme için isim deseni: - - NoControl - Otomatik artan sayıyı sıfırla - - NoControl - 188, 13 Aktif pencere yakalam için isim deseni: - - NoControl - 56, 13 Ön izleme: - - NoControl - 56, 13 @@ -764,36 +544,24 @@ İsim deseni - - NoControl - 269, 17 Pano URL içeriyorsa URL paylaşım servisi ile paylaş - - NoControl - 271, 17 Eğer pano dosya URL bilgisi içeriyorsa indir ve yükle - - NoControl - 291, 17 Pano dizin yolu içeriyorsa dizini indeksle ve indeksi yükle - - NoControl - 216, 17 @@ -803,27 +571,18 @@ Panodan yükleme - - NoControl - Varsayılan yükleme ayarlarını kullan Yükleme - - NoControl - Varsayılan indeksleyici görev ayarlarını kullan İndeksleyici - - NoControl - Varsayılan gelişmiş ayarları kullan diff --git a/ShareX/TaskSettings.cs b/ShareX/TaskSettings.cs index 5ef28ba19..30a04bfbe 100644 --- a/ShareX/TaskSettings.cs +++ b/ShareX/TaskSettings.cs @@ -280,8 +280,6 @@ public class TaskSettingsImage public bool ShowImageEffectsWindowAfterCapture = false; public bool ImageEffectOnlyRegionCapture = false; - public WatermarkConfig WatermarkConfig = new WatermarkConfig(); - #endregion Image / Effects #region Image / Thumbnail diff --git a/ShareX/UploadTask.cs b/ShareX/UploadTask.cs index b1b25547d..3a0cdcf0d 100644 --- a/ShareX/UploadTask.cs +++ b/ShareX/UploadTask.cs @@ -449,11 +449,6 @@ private bool DoAfterCaptureJobs() tempImage = TaskHelpers.AddImageEffects(tempImage, Info.TaskSettings); } - if (Info.TaskSettings.AfterCaptureJob.HasFlag(AfterCaptureTasks.AddWatermark) && Info.TaskSettings.ImageSettings.WatermarkConfig != null) - { - Info.TaskSettings.ImageSettings.WatermarkConfig.Apply(tempImage); - } - if (Info.TaskSettings.AfterCaptureJob.HasFlag(AfterCaptureTasks.AnnotateImage)) { tempImage = TaskHelpers.AnnotateImage(tempImage, Info.FileName);