Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
seto77 committed Jul 30, 2020
1 parent 402b0f4 commit 8d8b000
Show file tree
Hide file tree
Showing 13 changed files with 2,342 additions and 1,534 deletions.
4 changes: 2 additions & 2 deletions Crystallography.Controls/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// すべての値を指定するか、下のように '*' を使ってビルドおよびリビジョン番号を
// 既定値にすることができます:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2020.7.28.1404")]
[assembly: AssemblyFileVersion("2020.7.28.1404")]
[assembly: AssemblyVersion("2020.7.29.1125")]
[assembly: AssemblyFileVersion("2020.7.29.1125")]
4 changes: 2 additions & 2 deletions Crystallography/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
// 下にあるように、'*' を使って、すべての値を指定するか、
// ビルドおよびリビジョン番号を既定値にすることができます。

[assembly: AssemblyVersion("2020.7.28.1404")]
[assembly: AssemblyVersion("2020.7.29.1125")]

//
// アセンブリに署名するには、使用するキーを指定しなければなりません。
Expand Down Expand Up @@ -57,5 +57,5 @@
[assembly: AssemblyKeyFile("")]
[assembly: AssemblyKeyName("")]
[assembly: ComVisibleAttribute(true)]
[assembly: AssemblyFileVersion("2020.7.28.1404")]
[assembly: AssemblyFileVersion("2020.7.29.1125")]

312 changes: 210 additions & 102 deletions PDIndexer/FormCrystal.Designer.cs

Large diffs are not rendered by default.

12 changes: 11 additions & 1 deletion PDIndexer/FormCrystal.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
using Crystallography;
using Crystallography.Controls;
using System.Collections.Generic;
using System.IO;

namespace PDIndexer{
/// <summary>
Expand All @@ -27,6 +28,12 @@ public FormCrystal()

}

private void FormCrystal_Load(object sender, EventArgs e)
{
if (File.Exists(formMain.UserAppDataPath + "StdDB.cdb3"))
crystalDatabaseControl.ReadDatabase(formMain.UserAppDataPath + "StdDB.cdb3");
}

void crystalControl_CrystalChanged(object sender, EventArgs e)
{
formMain.InitializeCrystalPlane();
Expand Down Expand Up @@ -241,8 +248,11 @@ private void dataGridViewCrystal_CellMouseClick(object sender, DataGridViewCellM
formMain.dataGridViewCrystals_CellMouseClick(sender, e);
}


private void buttonSearch_Click(object sender, EventArgs e)
=> crystalDatabaseControl.Filter = searchCrystalControl.Filter;

private void crystalDatabaseControl_CrystalChanged(object sender, EventArgs e)
=> crystalControl.Crystal = crystalDatabaseControl.Crystal;

}
}
289 changes: 202 additions & 87 deletions PDIndexer/FormCrystal.ja.resx

Large diffs are not rendered by default.

2,352 changes: 1,383 additions & 969 deletions PDIndexer/FormCrystal.resx

Large diffs are not rendered by default.

675 changes: 374 additions & 301 deletions PDIndexer/FormMain.Designer.cs

Large diffs are not rendered by default.

220 changes: 152 additions & 68 deletions PDIndexer/FormMain.resx

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions PDIndexer/PDIndexer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,9 @@
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Content Include="StdDb.cdb3">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.7.2">
Expand Down
4 changes: 2 additions & 2 deletions PDIndexer/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
// 下にあるように、'*' を使って、すべての値を指定するか、
// ビルドおよびリビジョン番号を既定値にすることができます。

[assembly: AssemblyVersion("2020.5.23.1221")]
[assembly: AssemblyVersion("2020.7.30.0301")]

//
// アセンブリに署名するには、使用するキーを指定しなければなりません。
Expand Down Expand Up @@ -57,6 +57,6 @@
[assembly: AssemblyDelaySign(false)]
[assembly: AssemblyKeyFile("")]
[assembly: AssemblyKeyName("")]
[assembly: AssemblyFileVersion("2020.5.23.1221")]
[assembly: AssemblyFileVersion("2020.7.30.0301")]
[assembly: ComVisible(false)]

Binary file added PDIndexer/StdDb.cdb3
Binary file not shown.
1 change: 1 addition & 0 deletions PDIndexer/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ static public string RecentHistory
/// </summary>
static public string History =
"History" +
"\r\n ver4.384(2020/07/30) Added the AMCSD crystal database to 'Crystal Parameter' window." +
"\r\n ver4.383(2020/05/01) Fixed GUIs." +
"\r\n ver4.382(2020/04/26) Fixed a problem on loading Neutron TOF data." +
"\r\n ver4.381(2020/03/27) Refixed a bug on loading multiple profiles." +
Expand Down
Binary file added PDIndexer/image/Database.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 8d8b000

Please sign in to comment.