forked from danielgjackson/nback
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 1321a68
Showing
68 changed files
with
7,884 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
63419469369231,5,63419469371922,5,1.460667,1,True,True | ||
63419469370731,2,63419469373627,2,1.597333,1,True,True | ||
63419469372227,7,63419469375315,7,1.725333,1,True,True | ||
63419469375224,3,63419469378062,3,1.558667,1,True,True | ||
63419469378219,2,63419469381308,2,1.726,1,True,True | ||
63419469379715,1,63419469382823,1,1.738667,1,True,True | ||
63419469427576,4,63419469430274,4,1.465333,1,True,True | ||
63419469430571,3,63419469433500,3,1.619333,1,True,True | ||
63419469432473,7,63419469435182,7,1.472667,1,True,True | ||
63419469433531,5,63419469436295,5,1.509333,1,True,True | ||
63419469435073,1,63419469437630,1,1.371333,1,True,True | ||
63419469436561,8,63419469439322,8,1.507333,1,True,True | ||
63419469438060,2,63419469440311,2,1.167333,1,True,True | ||
63419469439556,3,63419469441595,3,1.026,1,True,True | ||
63419469441054,4,63419469443092,4,1.025333,1,True,True | ||
63419469442552,5,63419469444648,5,1.064,1,True,True | ||
63419469444050,8,63419469446481,8,1.287333,1,True,True | ||
63419469445548,6,63419469448175,6,1.418,1,True,True |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.ComponentModel; | ||
using System.Drawing; | ||
using System.Reflection; | ||
using System.Windows.Forms; | ||
|
||
namespace nback | ||
{ | ||
partial class AboutBox : Form | ||
{ | ||
public AboutBox() | ||
{ | ||
InitializeComponent(); | ||
this.Text = String.Format("About {0}", AssemblyTitle); | ||
this.textBoxProductName.Text = AssemblyProduct; | ||
this.textBoxVersion.Text = String.Format("Version {0}", AssemblyVersion); | ||
this.textBoxCopyright.Text = AssemblyCopyright; | ||
this.textBoxCompanyName.Text = AssemblyCompany; | ||
this.textBoxDescription.Text = AssemblyDescription; | ||
} | ||
|
||
#region Assembly Attribute Accessors | ||
|
||
public string AssemblyTitle | ||
{ | ||
get | ||
{ | ||
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyTitleAttribute), false); | ||
if (attributes.Length > 0) | ||
{ | ||
AssemblyTitleAttribute titleAttribute = (AssemblyTitleAttribute)attributes[0]; | ||
if (titleAttribute.Title != "") | ||
{ | ||
return titleAttribute.Title; | ||
} | ||
} | ||
return System.IO.Path.GetFileNameWithoutExtension(Assembly.GetExecutingAssembly().CodeBase); | ||
} | ||
} | ||
|
||
public string AssemblyVersion | ||
{ | ||
get | ||
{ | ||
return Assembly.GetExecutingAssembly().GetName().Version.ToString(); | ||
} | ||
} | ||
|
||
public string AssemblyDescription | ||
{ | ||
get | ||
{ | ||
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyDescriptionAttribute), false); | ||
if (attributes.Length == 0) | ||
{ | ||
return ""; | ||
} | ||
return ((AssemblyDescriptionAttribute)attributes[0]).Description; | ||
} | ||
} | ||
|
||
public string AssemblyProduct | ||
{ | ||
get | ||
{ | ||
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyProductAttribute), false); | ||
if (attributes.Length == 0) | ||
{ | ||
return ""; | ||
} | ||
return ((AssemblyProductAttribute)attributes[0]).Product; | ||
} | ||
} | ||
|
||
public string AssemblyCopyright | ||
{ | ||
get | ||
{ | ||
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false); | ||
if (attributes.Length == 0) | ||
{ | ||
return ""; | ||
} | ||
return ((AssemblyCopyrightAttribute)attributes[0]).Copyright; | ||
} | ||
} | ||
|
||
public string AssemblyCompany | ||
{ | ||
get | ||
{ | ||
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCompanyAttribute), false); | ||
if (attributes.Length == 0) | ||
{ | ||
return ""; | ||
} | ||
return ((AssemblyCompanyAttribute)attributes[0]).Company; | ||
} | ||
} | ||
#endregion | ||
|
||
private void AboutBox_Load(object sender, EventArgs e) | ||
{ | ||
|
||
} | ||
} | ||
} |
Oops, something went wrong.