Update email in code & add menu item for nightly builds

This commit is contained in:
baldurk
2014-08-22 08:13:21 +01:00
parent c75721b24f
commit 4ccc7d3901
4 changed files with 20 additions and 20 deletions
+1 -1
View File
@@ -85,7 +85,7 @@ INT_PTR CALLBACK CrashHandlerProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM
L"The only other information sent is the version of RenderDoc, C# exception callstack, and any notes you include.\n\n" \
L"Any repro steps or notes would be helpful to include with the report. If you'd like to be contacted about the bug " \
L"e.g. for updates about its status just include your email & name. Thank you!\n\n" \
L"Baldur (renderdoc@crytek.com)");
L"Baldur (baldurk@baldurk.org)");
SetDlgItemTextW(hDlg, IDC_DUMPPATH, dump.c_str());
SetDlgItemTextW(hDlg, IDC_LOGPATH, logpath.c_str());
+1 -1
View File
@@ -76,7 +76,7 @@
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(439, 122);
this.label2.TabIndex = 2;
this.label2.Text = "Baldur Karlsson\r\nrenderdoc@crytek.com\r\nhttps://github.com/baldurk/renderdoc\r\nCopy" +
this.label2.Text = "Baldur Karlsson\r\nbaldurk@baldurk.org\r\nhttps://github.com/baldurk/renderdoc\r\nCopy" +
"right Crytek 2014";
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
+16 -16
View File
@@ -100,7 +100,8 @@
this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
this.updateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
this.developerForumsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.sourceOnGithubToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.nightlybuildsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.openDialog = new System.Windows.Forms.OpenFileDialog();
this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
@@ -109,7 +110,6 @@
this.statusProgress = new System.Windows.Forms.ToolStripProgressBar();
this.dockPanel = new WeifenLuo.WinFormsUI.Docking.DockPanel();
this.saveDialog = new System.Windows.Forms.SaveFileDialog();
this.sourceOnGithubToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.menuStrip1.SuspendLayout();
this.toolStripContainer1.BottomToolStripPanel.SuspendLayout();
this.toolStripContainer1.ContentPanel.SuspendLayout();
@@ -533,7 +533,7 @@
this.updateToolStripMenuItem,
this.toolStripSeparator8,
this.sourceOnGithubToolStripMenuItem,
this.developerForumsToolStripMenuItem,
this.nightlybuildsToolStripMenuItem,
this.aboutToolStripMenuItem});
this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
this.helpToolStripMenuItem.Size = new System.Drawing.Size(40, 20);
@@ -583,12 +583,19 @@
this.toolStripSeparator8.Name = "toolStripSeparator8";
this.toolStripSeparator8.Size = new System.Drawing.Size(187, 6);
//
// developerForumsToolStripMenuItem
// sourceOnGithubToolStripMenuItem
//
this.developerForumsToolStripMenuItem.Name = "developerForumsToolStripMenuItem";
this.developerForumsToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
this.developerForumsToolStripMenuItem.Text = "Developer Forums";
this.developerForumsToolStripMenuItem.Click += new System.EventHandler(this.developerForumsToolStripMenuItem_Click);
this.sourceOnGithubToolStripMenuItem.Name = "sourceOnGithubToolStripMenuItem";
this.sourceOnGithubToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
this.sourceOnGithubToolStripMenuItem.Text = "Source on github";
this.sourceOnGithubToolStripMenuItem.Click += new System.EventHandler(this.sourceOnGithubToolStripMenuItem_Click);
//
// nightlybuildsToolStripMenuItem
//
this.nightlybuildsToolStripMenuItem.Name = "nightlybuildsToolStripMenuItem";
this.nightlybuildsToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
this.nightlybuildsToolStripMenuItem.Text = "Nightly Builds";
this.nightlybuildsToolStripMenuItem.Click += new System.EventHandler(this.nightlybuildsToolStripMenuItem_Click);
//
// aboutToolStripMenuItem
//
@@ -718,13 +725,6 @@
this.saveDialog.Filter = "Log Files (*.rdc)|*.rdc";
this.saveDialog.Title = "Save Log As";
//
// sourceOnGithubToolStripMenuItem
//
this.sourceOnGithubToolStripMenuItem.Name = "sourceOnGithubToolStripMenuItem";
this.sourceOnGithubToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
this.sourceOnGithubToolStripMenuItem.Text = "Source on github";
this.sourceOnGithubToolStripMenuItem.Click += new System.EventHandler(this.sourceOnGithubToolStripMenuItem_Click);
//
// MainWindow
//
this.AllowDrop = true;
@@ -824,7 +824,7 @@
private System.Windows.Forms.ToolStripSeparator toolStripSeparator10;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator11;
private System.Windows.Forms.ToolStripMenuItem viewLogFileToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem developerForumsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem nightlybuildsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem sourceOnGithubToolStripMenuItem;
}
+2 -2
View File
@@ -1292,9 +1292,9 @@ namespace renderdocui.Windows
m_Core.Config.CheckUpdate_UpdateAvailable = false;
}
private void developerForumsToolStripMenuItem_Click(object sender, EventArgs e)
private void nightlybuildsToolStripMenuItem_Click(object sender, EventArgs e)
{
Process.Start("http://www.crydev.net/renderdoc");
Process.Start("http://renderdoc.org/autobuild");
}
private void sourceOnGithubToolStripMenuItem_Click(object sender, EventArgs e)