Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
seto77 committed Jan 13, 2024
1 parent 608307f commit 79832a2
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 16 deletions.
4 changes: 2 additions & 2 deletions CSManager/CSManager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows10.0.22621.0</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<AssemblyVersion>2024.1.13.0911</AssemblyVersion>
<FileVersion>2024.1.13.0911</FileVersion>
<AssemblyVersion>2024.1.13.1153</AssemblyVersion>
<FileVersion>2024.1.13.1153</FileVersion>
<ApplicationIcon>App.ico</ApplicationIcon>
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
</PropertyGroup>
Expand Down
17 changes: 9 additions & 8 deletions CSManager/FormMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -675,10 +675,8 @@ private void programUpdatesToolStripMenuItem_Click(object sender, EventArgs e)
#endregion

#region その他ファイルメニュー
private void RecalculateDensityFormulaAndDvaluesToolStripMenuItem_Click(object sender, EventArgs e)
{
crystalDatabaseControl.RecalculateDensityAndFormula();
}
private void RecalculateDensityFormulaAndDvaluesToolStripMenuItem_Click(object sender, EventArgs e)
=> crystalDatabaseControl.RecalculateDensityAndFormula();
private void closeToolStripMenuItem_Click(object sender, EventArgs e) => this.Close();
private void toolTipToolStripMenuItem_Click(object sender, EventArgs e)
=> toolTip.Active = crystalControl.toolTip.Active = toolTipToolStripMenuItem.Checked;
Expand All @@ -689,6 +687,13 @@ private void helpwebToolStripMenuItem_Click(object sender, EventArgs e)
var f = new FormPDF(appPath + fn) { Text = "CSManager manual" };
f.Show();
}

private void toolStripMenuItemGithubPage_Click(object sender, EventArgs e)
=> Process.Start(new ProcessStartInfo("https://github.com/seto77/CSManager") { UseShellExecute = true });

private void repportBugsToolStripMenuItem_Click(object sender, EventArgs e)
=> Process.Start(new ProcessStartInfo("https://github.com/seto77/CSManager/issues") { UseShellExecute = true });

private void hintToolStripMenuItem_Click(object sender, EventArgs e)
{
initialDialog.DialogMode = Crystallography.Controls.CommonDialog.DialogModeEnum.Hint;
Expand Down Expand Up @@ -734,9 +739,5 @@ private void FormMain_ResizeEnd(object sender, EventArgs e)
// ResumeLayout();
}

private void toolStripMenuItemGithubPage_Click(object sender, EventArgs e)
=> Process.Start(new ProcessStartInfo("https://github.com/seto77/CSManager") { UseShellExecute = true });

private void repportBugsToolStripMenuItem_Click(object sender, EventArgs e)
=> Process.Start(new ProcessStartInfo("https://github.com/seto77/CSManager/issues") { UseShellExecute = true });
}
8 changes: 4 additions & 4 deletions Crystallography.Controls/Crystallography.Controls.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<OutputType>Library</OutputType>
<TargetFramework>net8.0-windows10.0.22621.0</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<AssemblyVersion>2024.1.13.0914</AssemblyVersion>
<FileVersion>2024.1.13.0914</FileVersion>
<AssemblyVersion>2024.1.13.1153</AssemblyVersion>
<FileVersion>2024.1.13.1153</FileVersion>
<ApplicationHighDpiMode>PerMonitorV2</ApplicationHighDpiMode>
<ApplicationUseCompatibleTextRendering>true</ApplicationUseCompatibleTextRendering>
<ApplicationVisualStyles>true</ApplicationVisualStyles>
Expand All @@ -21,11 +21,11 @@
</PropertyGroup>

<ItemGroup>
<None Remove="doc\CrystalInformationManual.pdf" />
<None Remove="doc\CrystalInformationManual(ja).pdf" />
</ItemGroup>

<ItemGroup>
<Content Include="doc\CrystalInformationManual.pdf">
<Content Include="doc\CrystalInformationManual%28ja%29.pdf">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions Crystallography/Crystallography.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<OutputType>Library</OutputType>
<TargetFramework>net8.0-windows10.0.22621.0</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<AssemblyVersion>2024.1.13.0914</AssemblyVersion>
<FileVersion>2024.1.13.0914</FileVersion>
<AssemblyVersion>2024.1.13.1153</AssemblyVersion>
<FileVersion>2024.1.13.1153</FileVersion>
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
</PropertyGroup>

Expand Down

0 comments on commit 79832a2

Please sign in to comment.