Fixed a protential race condition with warning messages and file counts (cosmetic only) when using async transfers. Spelling correction, Seperator -> Separator. Changed so a restore operation can also supply advanced options. Changed the format of timestamps in filenames to follow the Duplicity convention, which removes the need for --time-separator and --use-short-filenames. Moved the URL utility into Core, to avoid compilation errors with Monodevelop. Reorganized the runner to better support the LiveControls on all operations rather than only for backup/restore. Update issue #210 Status: Fixed I have now changed the time format to follow the Duplicity naming convention. This means that all filenames are now generated with the time set as "yyyyMMddTHHmmssZ". This format is more portable across all platforms, and easily sortable/readable. The drawback is that the Z indicates UTC time, so if one looks at the filenames, the times are not local. The motivation for this is to avoid trouble with daylight savings time offsets. There is full backwards compatibility as long as backups have not used more than one character for --time-separator (only possible via commandline). This new format means that the options --time-separator and --use-short-filenames are now deprecated and removed from the user interface. It is possible to access them from the advanced options page, along with the --use-old-filenames option. If anyone needs these options for some reason, let me know, otherwise they will be removed in a later version. git-svn-id: https://duplicati.googlecode.com/svn/trunk@523 59da171f-624f-0410-aa54-27559c288bec
127 lines
5.8 KiB
C#
127 lines
5.8 KiB
C#
namespace Duplicati.GUI.HelperControls
|
|
{
|
|
partial class BackupItems
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Component Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.components = new System.ComponentModel.Container();
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BackupItems));
|
|
this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
|
|
this.viewFilesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.statusLabel = new System.Windows.Forms.Label();
|
|
this.progressBar = new System.Windows.Forms.ProgressBar();
|
|
this.WaitPanel = new System.Windows.Forms.Panel();
|
|
this.imageList = new System.Windows.Forms.ImageList(this.components);
|
|
this.backgroundWorker = new System.ComponentModel.BackgroundWorker();
|
|
this.listView = new System.Windows.Forms.ListView();
|
|
this.contextMenuStrip.SuspendLayout();
|
|
this.WaitPanel.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// contextMenuStrip
|
|
//
|
|
this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.viewFilesToolStripMenuItem});
|
|
this.contextMenuStrip.Name = "contextMenuStrip";
|
|
resources.ApplyResources(this.contextMenuStrip, "contextMenuStrip");
|
|
//
|
|
// viewFilesToolStripMenuItem
|
|
//
|
|
this.viewFilesToolStripMenuItem.Image = global::Duplicati.GUI.Properties.Resources.ExamineMenuIcon;
|
|
this.viewFilesToolStripMenuItem.Name = "viewFilesToolStripMenuItem";
|
|
resources.ApplyResources(this.viewFilesToolStripMenuItem, "viewFilesToolStripMenuItem");
|
|
this.viewFilesToolStripMenuItem.Click += new System.EventHandler(this.viewFilesToolStripMenuItem_Click);
|
|
//
|
|
// statusLabel
|
|
//
|
|
resources.ApplyResources(this.statusLabel, "statusLabel");
|
|
this.statusLabel.Name = "statusLabel";
|
|
//
|
|
// progressBar
|
|
//
|
|
resources.ApplyResources(this.progressBar, "progressBar");
|
|
this.progressBar.Name = "progressBar";
|
|
this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
|
|
//
|
|
// WaitPanel
|
|
//
|
|
resources.ApplyResources(this.WaitPanel, "WaitPanel");
|
|
this.WaitPanel.Controls.Add(this.statusLabel);
|
|
this.WaitPanel.Controls.Add(this.progressBar);
|
|
this.WaitPanel.Name = "WaitPanel";
|
|
//
|
|
// imageList
|
|
//
|
|
this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
|
|
resources.ApplyResources(this.imageList, "imageList");
|
|
this.imageList.TransparentColor = System.Drawing.Color.Transparent;
|
|
//
|
|
// backgroundWorker
|
|
//
|
|
this.backgroundWorker.WorkerSupportsCancellation = true;
|
|
this.backgroundWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker_DoWork);
|
|
this.backgroundWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker_RunWorkerCompleted);
|
|
//
|
|
// listView
|
|
//
|
|
this.listView.ContextMenuStrip = this.contextMenuStrip;
|
|
resources.ApplyResources(this.listView, "listView");
|
|
this.listView.FullRowSelect = true;
|
|
this.listView.MultiSelect = false;
|
|
this.listView.Name = "listView";
|
|
this.listView.ShowItemToolTips = true;
|
|
this.listView.SmallImageList = this.imageList;
|
|
this.listView.UseCompatibleStateImageBehavior = false;
|
|
this.listView.View = System.Windows.Forms.View.List;
|
|
this.listView.DoubleClick += new System.EventHandler(this.listView_DoubleClick);
|
|
//
|
|
// BackupItems
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.WaitPanel);
|
|
this.Controls.Add(this.listView);
|
|
this.Name = "BackupItems";
|
|
this.contextMenuStrip.ResumeLayout(false);
|
|
this.WaitPanel.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label statusLabel;
|
|
private System.Windows.Forms.ProgressBar progressBar;
|
|
private System.Windows.Forms.Panel WaitPanel;
|
|
private System.Windows.Forms.ContextMenuStrip contextMenuStrip;
|
|
private System.Windows.Forms.ToolStripMenuItem viewFilesToolStripMenuItem;
|
|
private System.Windows.Forms.ImageList imageList;
|
|
private System.ComponentModel.BackgroundWorker backgroundWorker;
|
|
public System.Windows.Forms.ListView listView;
|
|
}
|
|
}
|