Change log update.

AutoCheckUpdate is now in advanced settings
This commit is contained in:
mcored 2014-07-08 05:57:18 +08:00
parent 3b67a78425
commit a2b8fb61ec
5 changed files with 14 additions and 29 deletions

View file

@ -61,7 +61,6 @@ public ApplicationConfig()
public bool ShowTray = true;
public bool SilentRun = false;
public bool AutoCheckUpdate = true;
public bool TrayIconProgressEnabled = true;
public bool TaskbarProgressEnabled = true;
public bool RememberMainFormSize = false;
@ -124,6 +123,9 @@ public ApplicationConfig()
[Category("Application"), DefaultValue(false), Description("Show only customized tasks in main window workflows.")]
public bool WorkflowsOnlyShowEdited { get; set; }
[Category("Application"), DefaultValue(true), Description("Automatically check updates at startup.")]
public bool AutoCheckUpdate { get; set; }
[Category("Application / Config"), DefaultValue(false), Description("Automatically detect external changes to UploaderConfig file and load settigns to memory.")]
public bool DetectUploaderConfigFileChanges { get; set; }

View file

@ -36,7 +36,6 @@ private void InitializeComponent()
this.cbTaskbarProgressEnabled = new System.Windows.Forms.CheckBox();
this.cbTrayIconProgressEnabled = new System.Windows.Forms.CheckBox();
this.cbShellContextMenu = new System.Windows.Forms.CheckBox();
this.cbCheckUpdates = new System.Windows.Forms.CheckBox();
this.cbStartWithWindows = new System.Windows.Forms.CheckBox();
this.cbShowTray = new System.Windows.Forms.CheckBox();
this.cbSendToMenu = new System.Windows.Forms.CheckBox();
@ -162,7 +161,6 @@ private void InitializeComponent()
this.tpGeneral.Controls.Add(this.cbTaskbarProgressEnabled);
this.tpGeneral.Controls.Add(this.cbTrayIconProgressEnabled);
this.tpGeneral.Controls.Add(this.cbShellContextMenu);
this.tpGeneral.Controls.Add(this.cbCheckUpdates);
this.tpGeneral.Controls.Add(this.cbStartWithWindows);
this.tpGeneral.Controls.Add(this.cbShowTray);
this.tpGeneral.Controls.Add(this.cbSendToMenu);
@ -188,7 +186,7 @@ private void InitializeComponent()
// cbRememberMainFormSize
//
this.cbRememberMainFormSize.AutoSize = true;
this.cbRememberMainFormSize.Location = new System.Drawing.Point(16, 208);
this.cbRememberMainFormSize.Location = new System.Drawing.Point(16, 184);
this.cbRememberMainFormSize.Name = "cbRememberMainFormSize";
this.cbRememberMainFormSize.Size = new System.Drawing.Size(162, 17);
this.cbRememberMainFormSize.TabIndex = 8;
@ -199,7 +197,7 @@ private void InitializeComponent()
// cbTaskbarProgressEnabled
//
this.cbTaskbarProgressEnabled.AutoSize = true;
this.cbTaskbarProgressEnabled.Location = new System.Drawing.Point(16, 184);
this.cbTaskbarProgressEnabled.Location = new System.Drawing.Point(16, 160);
this.cbTaskbarProgressEnabled.Name = "cbTaskbarProgressEnabled";
this.cbTaskbarProgressEnabled.Size = new System.Drawing.Size(178, 17);
this.cbTaskbarProgressEnabled.TabIndex = 7;
@ -210,7 +208,7 @@ private void InitializeComponent()
// cbTrayIconProgressEnabled
//
this.cbTrayIconProgressEnabled.AutoSize = true;
this.cbTrayIconProgressEnabled.Location = new System.Drawing.Point(16, 160);
this.cbTrayIconProgressEnabled.Location = new System.Drawing.Point(16, 136);
this.cbTrayIconProgressEnabled.Name = "cbTrayIconProgressEnabled";
this.cbTrayIconProgressEnabled.Size = new System.Drawing.Size(150, 17);
this.cbTrayIconProgressEnabled.TabIndex = 6;
@ -229,17 +227,6 @@ private void InitializeComponent()
this.cbShellContextMenu.UseVisualStyleBackColor = true;
this.cbShellContextMenu.CheckedChanged += new System.EventHandler(this.cbShellContextMenu_CheckedChanged);
//
// cbCheckUpdates
//
this.cbCheckUpdates.AutoSize = true;
this.cbCheckUpdates.Location = new System.Drawing.Point(16, 136);
this.cbCheckUpdates.Name = "cbCheckUpdates";
this.cbCheckUpdates.Size = new System.Drawing.Size(209, 17);
this.cbCheckUpdates.TabIndex = 5;
this.cbCheckUpdates.Text = "Automatically check updates at startup";
this.cbCheckUpdates.UseVisualStyleBackColor = true;
this.cbCheckUpdates.CheckedChanged += new System.EventHandler(this.cbCheckUpdates_CheckedChanged);
//
// cbStartWithWindows
//
this.cbStartWithWindows.AutoSize = true;
@ -1120,7 +1107,6 @@ private void InitializeComponent()
private System.Windows.Forms.Label lblSaveImageSubFolderPatternPreview;
private System.Windows.Forms.TextBox txtSaveImageSubFolderPattern;
private System.Windows.Forms.Label lblSaveImageSubFolderPattern;
private System.Windows.Forms.CheckBox cbCheckUpdates;
private System.Windows.Forms.CheckBox cbUseCustomScreenshotsPath;
private System.Windows.Forms.TabPage tpPaths;
private System.Windows.Forms.Button btnBrowseCustomScreenshotsPath;

View file

@ -57,7 +57,6 @@ private void LoadSettings()
cbStartWithWindows.Checked = ShortcutHelpers.CheckShortcut(Environment.SpecialFolder.Startup); //RegistryHelper.CheckStartWithWindows();
cbSendToMenu.Checked = ShortcutHelpers.CheckShortcut(Environment.SpecialFolder.SendTo);
cbShellContextMenu.Checked = RegistryHelpers.CheckShellContextMenu();
cbCheckUpdates.Checked = Program.Settings.AutoCheckUpdate;
cbTrayIconProgressEnabled.Checked = Program.Settings.TrayIconProgressEnabled;
cbTaskbarProgressEnabled.Enabled = TaskbarManager.IsPlatformSupported;
cbTaskbarProgressEnabled.Checked = Program.Settings.TaskbarProgressEnabled;
@ -228,11 +227,6 @@ private void cbShellContextMenu_CheckedChanged(object sender, EventArgs e)
}
}
private void cbCheckUpdates_CheckedChanged(object sender, EventArgs e)
{
Program.Settings.AutoCheckUpdate = cbCheckUpdates.Checked;
}
private void cbTrayIconProgressEnabled_CheckedChanged(object sender, EventArgs e)
{
Program.Settings.TrayIconProgressEnabled = cbTrayIconProgressEnabled.Checked;

View file

@ -11,5 +11,5 @@
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: Guid("82E6AC09-0FEF-4390-AD9F-0DD3F5561EFC")]
[assembly: AssemblyVersion("9.1.0")]
[assembly: AssemblyFileVersion("9.1.0")]
[assembly: AssemblyVersion("9.2.0")]
[assembly: AssemblyFileVersion("9.2.0")]

View file

@ -1,9 +1,12 @@
ShareX 9.1.1
ShareX 9.2.0 - 2014-07-08
* Task setting to disable Aero before screen recording
* nl.cm URL shortener support
* ownCloud file uploader support
* Share and shorten right click menu items for saved/uploaded tasks
* Task setting to disable Aero while screen recording
* Main window UI and menu changes
* Google Drive file uploader enhancements (title and folder support)
* Added support to share URL to Google+ and Facebook via web browser
* Added support to share URL to Facebook, Pinterest, Reddit, Delicious, VK, and Google+ via web browser
* FTP client improvements
* bit.ly custom domain support
* ImageShack image uploader changes (better error handling, removed anonymous support)